summaryrefslogtreecommitdiff
path: root/npc/guild/old/ev_agit_event.txt
blob: c68bec74a4daa2fd7a4c7c5bc7e19a531825d215 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//===== 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;
}