
git-svn-id: https://svn.code.sf.net/p/rathena/svn/athena@172 54d463be-8e91-2dee-dedb-b68131a5f0ec
35 lines
977 B
Plaintext
35 lines
977 B
Plaintext
//===== 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;
|
|
}
|