summaryrefslogtreecommitdiff
path: root/doc/sample/npc_test_time.txt
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-05 11:34:32 +0300
committergumi <git@gumi.ca>2020-07-29 15:02:44 +0000
commit9d59f82368082fb1cf3aec225c483f9e32b4c075 (patch)
tree0200835722c95b4c789ed597cea40d293a650bd3 /doc/sample/npc_test_time.txt
parente8ccbb249b5dcf3aeaa4ba440b20b1c6c1feeaa0 (diff)
downloadhercules-9d59f82368082fb1cf3aec225c483f9e32b4c075.tar.gz
hercules-9d59f82368082fb1cf3aec225c483f9e32b4c075.tar.bz2
hercules-9d59f82368082fb1cf3aec225c483f9e32b4c075.tar.xz
hercules-9d59f82368082fb1cf3aec225c483f9e32b4c075.zip
Remove unused dirs
Diffstat (limited to 'doc/sample/npc_test_time.txt')
-rw-r--r--doc/sample/npc_test_time.txt25
1 files changed, 0 insertions, 25 deletions
diff --git a/doc/sample/npc_test_time.txt b/doc/sample/npc_test_time.txt
deleted file mode 100644
index c3d4eae1d..000000000
--- a/doc/sample/npc_test_time.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-//===== Hercules Script =======================================
-//= Sample: Time Test
-//===== By: ==================================================
-//= rAthena Dev Team
-//===== Current Version: =====================================
-//= 20151115
-//===== Description: =========================================
-//= Demonstrates time commands.
-//============================================================
-
-prontera,157,181,6 script Time Sample 8W_SOLDIER,{
- mes "[Time Sample]";
- mes " System Tick : " + gettimetick(0);
- mes " Time Tick : " + gettimetick(1);
- mes " GETTIME_SECOND : " + gettime(GETTIME_SECOND) + " (Sec)";
- mes " GETTIME_MINUTE : " + gettime(GETTIME_MINUTE) + " (Min)";
- mes " GETTIME_HOUR : " + gettime(GETTIME_HOUR) + " (Hour)";
- mes " GETTIME_WEEKDAY : " + gettime(GETTIME_WEEKDAY) + " (WeekDay)";
- mes "GETTIME_DAYOFMONTH : " + gettime(GETTIME_DAYOFMONTH) + " (MonthDay)";
- mes " GETTIME_MONTH : " + gettime(GETTIME_MONTH) + " (Month)";
- mes " GETTIME_YEAR : " + gettime(GETTIME_YEAR) + " (Year)";
- mes " GETTIME_DAYOFYEAR : " + gettime(GETTIME_DAYOFYEAR) + " (Day of Year)";
- mes " gettimestr : " + gettimestr("%Y-%m/%d %H:%M:%S",19);
- close;
-}