rathena/npc/re/other/Global_Functions.txt
2016-09-29 20:15:30 +02:00

28 lines
1.0 KiB
Plaintext

//============================================================
//===== rAthena Script =======================================
//= Global Functions
//===== Description: =========================================
//= General script functions.
//===== Changelogs: ==========================================
//= 1.0 WoeTETimeStart(X) function check if the woe
// will start in X seconds or less. [Capuche]
//============================================================
// WoeTETimeStart(<seconds>) : return true if the woe te will start in X seconds or less, false otherwise
function script WoeTETimeStart {
.@woe_status = agitcheck3();
.@min_today = gettime(2);
.@hour_today = gettime(3);
.@day_today = gettime(4);
if (getvariableofnpc( getd( ".day_"+ .@day_today ),"woe_TE_contoller" )) {
.@h = getvariableofnpc( getd( ".hour_start_"+ .@hour_today ),"woe_TE_contoller" );
if (.@h > .@hour_today) {
.@time = (60 - .@min_today) *60 + ( .@h - .@hour_today -1 ) *3600;
if (.@time <= getarg(0))
return true;
}
}
return false;
}