ev_agit_event.txt 977 B

12345678910111213141516171819202122232425262728293031323334
  1. //===== eAthena Script =======================================
  2. //= War of Emperium - WoE Auto-Start
  3. //===== By: ==================================================
  4. //= kalen (1.0)
  5. //===== Current Version: =====================================
  6. //= 1.1
  7. //===== Compatible With: =====================================
  8. //= eAthena 0.1+; RO Episode 4+
  9. //===== Description: =========================================
  10. //= Auto Start for War of Emperium
  11. //===== Additional Comments: =================================
  12. //= 1.1 by Akaru and ho|yAnge|
  13. //============================================================
  14. // Auto Start Agit NPC
  15. prontera.gat,116,72,0 script Agit_Event -1,{
  16. OnInit:
  17. if ($AgitStarted == 1) goto AgitReboot;
  18. Break;
  19. OnClock1900:
  20. Announce "The War Of Emperium has begun!",8;
  21. AgitStart;
  22. set $AgitStarted,1;
  23. Break;
  24. OnClock2100:
  25. Announce "The War Of Emperium is over!",8;
  26. AgitEnd;
  27. set $AgitStarted,0;
  28. Break;
  29. AgitReboot:
  30. AgitStart;
  31. set $AgitStarted,1;
  32. Break;
  33. }