Advertisement
Tom_Neverwinter

Keturah FFXI

Jul 4th, 2022 (edited)
694
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.65 KB | None | 0 0
  1. -----------------------------------
  2. -- Area: Bastok Mines
  3. --  NPC: Keturah
  4. --  General Info NPC
  5. -- !pos 28.9771 0.8720 90.3160 234
  6. -----------------------------------
  7. local entity = {}
  8.  
  9. entity.onTrade = function(player, npc, trade)
  10. end
  11.  
  12. entity.onTrigger = function(player, npc)
  13.    player:startEvent(550)  
  14. -- player:startEvent(449)  -- chocobo dig game
  15. -- player:startEvent(548)  -- play the chocobo game
  16. -- player:startEvent(547)  -- rules for choc game
  17. -- player:startEvent(546)  -- cant give more greens
  18. end
  19.  
  20. entity.onEventUpdate = function(player, csid, option)
  21. end
  22.  
  23. entity.onEventFinish = function(player, csid, option)
  24. end
  25.  
  26. return entity
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement