Deozaan

Funtrox.lua

Oct 13th, 2016
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.15 KB | None | 0 0
  1. -----------------------------------
  2. --  Area: Windurst Woods
  3. --   NPC: Funtrox
  4. --  Type: Gobbie Mystery Box Vendor
  5. -- @zone 241
  6. -- @pos -33 -3 61
  7. --
  8. -- See: http://ffxiclopedia.wikia.com/wiki/Funtrox
  9. -----------------------------------
  10. package.loaded["scripts/zones/Windurst_Woods/TextIDs"] = nil;
  11. -----------------------------------
  12.  
  13. -----------------------------------
  14. -- onTrade Action
  15. -----------------------------------
  16.  
  17. function onTrade(player,npc,trade)
  18. end;
  19.  
  20. -----------------------------------
  21. -- onTrigger Action
  22. -----------------------------------
  23.  
  24. function onTrigger(player,npc)
  25.     player:PrintToPlayer("Funtrox : Bugger off! I'm busy.");
  26.     player.PrintToPlayer("Funtrox : And stay away from my treasure!");
  27. end;
  28.  
  29. -----------------------------------
  30. -- onEventUpdate
  31. -----------------------------------
  32.  
  33. function onEventUpdate(player,csid,option)
  34.     -- printf("CSID: %u",csid);
  35.     -- printf("RESULT: %u",option);
  36. end;
  37.  
  38. -----------------------------------
  39. -- onEventFinish
  40. -----------------------------------
  41.  
  42. function onEventFinish(player,csid,option)
  43.     -- printf("CSID: %u",csid);
  44.     -- printf("RESULT: %u",option);
  45. end;
Advertisement
Add Comment
Please, Sign In to add comment