summaryrefslogtreecommitdiff
path: root/npc/re/guild2/agit_start_se.txt
diff options
context:
space:
mode:
authordaegaladh <daegaladh@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-08-01 04:29:56 +0000
committerdaegaladh <daegaladh@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-08-01 04:29:56 +0000
commit8832adba3ec9df0f7f890154f69f0993b8d1d8e5 (patch)
tree0e73afe6a780abf29fe035301f1354f24762da7a /npc/re/guild2/agit_start_se.txt
parentfa533907d49c7e288be33efb55fcb094f8e48591 (diff)
downloadhercules-8832adba3ec9df0f7f890154f69f0993b8d1d8e5.tar.gz
hercules-8832adba3ec9df0f7f890154f69f0993b8d1d8e5.tar.bz2
hercules-8832adba3ec9df0f7f890154f69f0993b8d1d8e5.tar.xz
hercules-8832adba3ec9df0f7f890154f69f0993b8d1d8e5.zip
Full npc folder reorganization. (I hope I didn't break anything D:)
-Now common scripts goes to the main npc folder, and pre-re-only/re-only ones goes to their respective folders. -NPCs with practically the same script but little differences have been left in the main folder and uses the command checkre() for the differences. -For those NPCs with different coordinates but same script, the script has been left in the main folder but the NPCs splitted as duplicates. -All pre-renewal files has been reverted back to their pre-renewal behavior. TODO: -Correct pre-re quest rewards. -Check for pre-re/re differences in mapflags. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16545 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/re/guild2/agit_start_se.txt')
-rw-r--r--npc/re/guild2/agit_start_se.txt51
1 files changed, 0 insertions, 51 deletions
diff --git a/npc/re/guild2/agit_start_se.txt b/npc/re/guild2/agit_start_se.txt
deleted file mode 100644
index 81e16ac36..000000000
--- a/npc/re/guild2/agit_start_se.txt
+++ /dev/null
@@ -1,51 +0,0 @@
-//===== rAthena Script =======================================
-//= War of Emperium SE - Auto-Start
-//===== By: ==================================================
-//= L0ne_W0lf
-//===== Current Version: =====================================
-//= 1.0
-//===== Compatible With: =====================================
-//= rAthena SVN; RO Episode 11.3
-//===== Description: =========================================
-//= Auto Start for War of Emperium
-//= To know how to set up WoE times, go to doc\woe_time_explanation.txt
-//=============================================
-//= gettime(3): Gets hour (24 hour time)
-//= gettime(4): Gets day of week 1=Monday, 2=Tuesday,
-//= 3=Wednesday, 4=Thursday, etc.
-//===== Additional Comments: =================================
-//= 1.0 Copy/Paste of the original setter.
-//============================================================
-
-// WoE Start/Stop times
-//============================================================
-- script Agit2_Event -1,{
- end;
-
-OnClock1800: //start time for Tues(2), Thurs(4)
-OnClock2000: //end time for Tues(2), Thurs(4)
-OnClock2100: //start time for Sat(6)
-OnClock2300: //end time for Sat(6)
-
-OnAgitInit2:
- // starting time checks
- if((gettime(4)==2) && (gettime(3)>=18 && gettime(3)<21) ||
- (gettime(4)==4) && (gettime(3)>=18 && gettime(3)<21) ||
- (gettime(4)==6) && (gettime(3)>=22 && gettime(3)<23)) {
- if (!agitcheck2()) {
- AgitStart2;
- }
- end;
- }
-
- // end time checks
- if ((gettime(4)==2) && (gettime(3)==21) ||
- (gettime(4)==4) && (gettime(3)==21) ||
- (gettime(4)==6) && (gettime(3)==23)) {
- if (agitcheck2()) {
- AgitEnd2;
- }
- end;
- }
- end;
-}