mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Consolidated server data and automatically place them in approporate directories post build
This commit is contained in:
37
data/scripts/zones/133/npcs/pplPassiveG_01@08500.lua
Normal file
37
data/scripts/zones/133/npcs/pplPassiveG_01@08500.lua
Normal file
@@ -0,0 +1,37 @@
|
||||
--[[
|
||||
|
||||
PopulacePassiveGLPublisher Script
|
||||
|
||||
Functions:
|
||||
|
||||
askOfferPack() - Show Classes
|
||||
askOfferRank() - Show Ranks
|
||||
askOfferQuest(player)
|
||||
confirmOffer(nil, questId)
|
||||
confirmMaxOffer()
|
||||
talkOfferWelcome(actor, leveAllowances)
|
||||
talkOfferDecide()
|
||||
talkOfferMaxOver()
|
||||
selectDiscardGuildleve(player)
|
||||
confirmJournal()
|
||||
askDiscardGuildleve()
|
||||
confirmDiscardGuildleve(nil, questId)
|
||||
askRetryRegionalleve(questId, leveAllowances)
|
||||
finishTalkTurn()
|
||||
|
||||
Menu Ids:
|
||||
|
||||
--]]
|
||||
|
||||
function onInstantiate(npc)
|
||||
return "/Chara/Npc/Populace/PopulacePassiveGLPublisher", false, false, false, false, false, npc.getActorClassId(), false, false, 0, 1, "TEST";
|
||||
end
|
||||
|
||||
function onEventStarted(player, npc)
|
||||
player:runEventFunction("talkOfferWelcome", player, 1);
|
||||
end
|
||||
|
||||
function onEventUpdate(player, npc, step, menuOptionSelected, lsName, lsCrest)
|
||||
--player:runEventFunction("askOfferQuest", player, 1000);
|
||||
player:endEvent();
|
||||
end
|
Reference in New Issue
Block a user