mirror of
https://github.com/emagi/eq2emu
synced 2026-08-12 18:23:04 -04:00
465 B
465 B
Function: AddQuestPrereqTradeskillClass(quest, class_id)
Description: CanReceiveQuest requires the Player to be of the tradeskill class with class_id.
Parameters:
quest(Quest) - Quest object representingquest.class_id(uint32) - Integer valueclass_id.
Returns: None.
Example:
-- Require the Player to have a tradeskill class of 46 (Craftsman)
function Init(Quest)
AddQuestPrereqTradeskillClass(Quest, 46)
end