Difference between revisions of "LUA:SetQuestFeatherColor"

(Created page with "= LUA Functions: SetQuestFeatherColor() = Sets the color of the quest feather ==== Syntax ==== SetQuestFeatherColor(param1, param2) ==== Parameters ==== ; Required - ''param1...")
 
 
Line 27: Line 27:
 
1 = purlple, 2 = green, 3 = blue
 
1 = purlple, 2 = green, 3 = blue
  
Forum post: [http://www.eq2emulator.net/phpBB3/viewtopic.php?f=30&t=3413]
+
Forum post: [http://www.eq2emulator.net/phpBB3/viewtopic.php?f=30&t=3413 http://www.eq2emulator.net/phpBB3/viewtopic.php?f=30&t=3413]

Latest revision as of 18:32, 12 July 2014

LUA Functions: SetQuestFeatherColor()

Sets the color of the quest feather


Syntax

SetQuestFeatherColor(param1, param2)


Parameters

Required - param1 (Quest), param2 (int8)
param1 is the quest whos feather we wish to change
param2 is the color to change it to


Usage

function init(Quest)
    SetQuestFeatherColor(Quest, 3)
end

This will make the quest feather blue

Notes

This must be used in the "init" function of a quest to work properly

1 = purlple, 2 = green, 3 = blue

Forum post: http://www.eq2emulator.net/phpBB3/viewtopic.php?f=30&t=3413