Difference between revisions of "LUA:SetQuestRepeatable"
(Created page with "= LUA Functions: SetQuestRepeatable() = Sets the quest as repeatable ==== Syntax ==== SetQuestRepeatable(param1) ==== Parameters ==== ; Required - ''param1'' (Spawn) : ''para...") |
|||
| Line 22: | Line 22: | ||
==== Notes ==== | ==== Notes ==== | ||
| − | Best to be used in the "init" function in quest | + | Best to be used in the "init" function in quest scripts |
Latest revision as of 18:36, 12 July 2014
LUA Functions: SetQuestRepeatable()
Sets the quest as repeatable
Syntax
SetQuestRepeatable(param1)
Parameters
- Required - param1 (Spawn)
- param1 is the quest we want to be repeatable
Usage
function init(Quest)
SetQuestRepeatable(Quest)
end
This will set the quest as repeatable
Notes
Best to be used in the "init" function in quest scripts