npc_test_npctimer2.txt 718 B

1234567891011121314151617181920212223
  1. //===== rAthena Script =======================================
  2. //= Sample: Attached NPC Timers
  3. //===== By: ==================================================
  4. //= rAthena Dev Team
  5. //===== Last Updated: ========================================
  6. //= 20121003
  7. //===== Description: =========================================
  8. //= Demonstrates attached NPC timer commands.
  9. //============================================================
  10. prontera,156,183,0 script NPCtimerTest::npctimerX0000 116,{
  11. mes "What would you like to know?";
  12. select("Tell me my level.");
  13. mes "I need time to think...";
  14. initnpctimer;
  15. attachnpctimer;
  16. close;
  17. OnTimer5000:
  18. mes "Ah, your level is " + readparam(11) + "!";
  19. detachnpctimer;
  20. close;
  21. }