diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-06-04 15:45:12 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2015-06-05 18:59:16 +0530 |
commit | 37e47973a81957469be3c73d49a928188160747e (patch) | |
tree | 6b450f6c8f5125d8f73e2959a91525ebd3802229 /npc/guild2/agit_start_se.txt | |
parent | 4c469ea8b9e419535dfcc4c2cbe45623b95e2fd0 (diff) | |
download | hercules-37e47973a81957469be3c73d49a928188160747e.tar.gz hercules-37e47973a81957469be3c73d49a928188160747e.tar.bz2 hercules-37e47973a81957469be3c73d49a928188160747e.tar.xz hercules-37e47973a81957469be3c73d49a928188160747e.zip |
Renamed guild and guild2 folder to woe-fe and woe-se
Diffstat (limited to 'npc/guild2/agit_start_se.txt')
-rw-r--r-- | npc/guild2/agit_start_se.txt | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/npc/guild2/agit_start_se.txt b/npc/guild2/agit_start_se.txt deleted file mode 100644 index 74f03cb28..000000000 --- a/npc/guild2/agit_start_se.txt +++ /dev/null @@ -1,49 +0,0 @@ -//===== Hercules Script ====================================== -//= War of Emperium SE - Auto-Start -//===== By: ================================================== -//= L0ne_W0lf -//===== Current Version: ===================================== -//= 1.0 -//===== 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; -} |