12345678910111213141516171819202122232425262728293031323334 |
- //===== eAthena Script =======================================
- //= War of Emperium - WoE Auto-Start
- //===== By: ==================================================
- //= kalen (1.0)
- //===== Current Version: =====================================
- //= 1.1
- //===== Compatible With: =====================================
- //= eAthena 0.1+; RO Episode 4+
- //===== Description: =========================================
- //= Auto Start for War of Emperium
- //===== Additional Comments: =================================
- //= 1.1 by Akaru and ho|yAnge|
- //============================================================
- // Auto Start Agit NPC
- prontera.gat,116,72,0 script Agit_Event -1,{
- OnInit:
- if ($AgitStarted == 1) goto AgitReboot;
- Break;
- OnClock1900:
- Announce "The War Of Emperium has begun!",8;
- AgitStart;
- set $AgitStarted,1;
- Break;
- OnClock2100:
- Announce "The War Of Emperium is over!",8;
- AgitEnd;
- set $AgitStarted,0;
- Break;
- AgitReboot:
- AgitStart;
- set $AgitStarted,1;
- Break;
- }
|