No categories assigned
LUA:GetQuestStep
- Last edited 12 years ago by I need to Update My Profile
LUA Functions: GetQuestStep()
Gets the step that the given player is currently on for the given quest
Syntax
var = GetQuestStep(param1, param2)
Parameters
- Required - param1 (Spawn), param2 (int32)
- param1 is the player we want to check
- param2 is the quest id to check
Usage
function hailed(NPC, Spawn)
Say(NPC, "You are currently on step " .. GetQuestStep(Spawn, 1234))
end
The NPC will respond with the step the player is on for quest 1234
Notes
Returns an int32