summaryrefslogtreecommitdiff
path: root/npc/other/turbotrack/Normal_Solo.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/other/turbotrack/Normal_Solo.txt')
-rw-r--r--npc/other/turbotrack/Normal_Solo.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/other/turbotrack/Normal_Solo.txt b/npc/other/turbotrack/Normal_Solo.txt
index b6016c0f0..1594c400e 100644
--- a/npc/other/turbotrack/Normal_Solo.txt
+++ b/npc/other/turbotrack/Normal_Solo.txt
@@ -1,11 +1,11 @@
-//===== eAthena Script =======================================
+//===== rAthena Script =======================================
//= Turbo Track - Solo Mode
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
//= 1.4
//===== Compatible With: =====================================
-//= eAthena SVN
+//= rAthena SVN
//===== Description: =========================================
//= [Aegis Conversion]
//= Turbo Track Course: Solo Mode/Time Attack
@@ -678,7 +678,7 @@ OnEnable:
end;
}
-// ÇåÆÃÄÚ½º
+// �����ڽ�
turbo_n_1,90,46,0 script hunting#n1 111,{
Onreset:
killmonsterall "turbo_n_1";
@@ -892,19 +892,19 @@ turbo_n_1,384,167,1 script Guide#TBT_n_1 47,{
set .@min_start,(($@start_time % 10000) / 100);
set .@sec_start,$@start_time % 100;
- //----- Á¾·á ¼­¹ö ½Ã°£À» ½ÃºÐÃÊ ºÎºÐÀ¸·Î ³ª´® -------
+ //----- ���� ���� �ð��� �ú��� �κ����� ���� -------
set .@hour_end,$@end_time / 10000;
set .@min_end,(($@end_time % 10000) / 100);
set .@sec_end,$@end_time % 100;
- //----- 24½Ã -> 0½Ã·Î ³Ñ¾î°¡´Â °Í üũ
+ //----- 24�� -> 0�÷� �Ѿ�� �� üũ
if (hour_start == 23 && hour_end == 0)
set .@hour_end,24;
- //----- ½ÃÀÛ,Á¾·á ½Ã°£À» ÃÊ´ÜÀ§·Î ¹Ù²ãÁÜ -------------
+ //----- ����,���� �ð��� �ʴ����� �ٲ��� -------------
set .@st_to_sec,((.@hour_start * 3600) + (.@min_start * 60) + (.@sec_start));
set .@et_to_sec,((.@hour_end * 3600) + (.@min_end * 60) + (.@sec_end));
- //----- ½ÃÀÛÇؼ­ Á¾·áÇϴµ¥ °É¸° ½Ã°£ -----------
+ //----- �����ؼ� �����ϴµ� �ɸ� �ð� -----------
set .@record_time,(.@et_to_sec - .@st_to_sec);
set .@record_hour,.@record_time / 3600;