Difference between revisions of "LUA:GetQuestStep"
(Created page with "= LUA Functions: GetQuestStep() = Gets the step that the given player is currently on for the given quest ==== Syntax ==== var = GetQuestStep(param1, param2) ==== Parameters ...") |
(No difference)
|
Latest revision as of 17:22, 11 September 2013
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