diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-03-31 18:57:22 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-03-31 18:57:22 +0000 |
commit | 6f88f2409f1853ae205573257865462540f935fc (patch) | |
tree | 30598fa37157d159bce0f8712a8b2b38047e2eab /npc/sample/npc_time_sample.txt | |
parent | d35717644b58c55b50098b3b0a08cf8002d39cca (diff) | |
download | hercules-6f88f2409f1853ae205573257865462540f935fc.tar.gz hercules-6f88f2409f1853ae205573257865462540f935fc.tar.bz2 hercules-6f88f2409f1853ae205573257865462540f935fc.tar.xz hercules-6f88f2409f1853ae205573257865462540f935fc.zip |
Moved /npc/sample/ to /doc/sample. These are examples, not actual npcs.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14277 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/sample/npc_time_sample.txt')
-rw-r--r-- | npc/sample/npc_time_sample.txt | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/npc/sample/npc_time_sample.txt b/npc/sample/npc_time_sample.txt deleted file mode 100644 index 219e94e48..000000000 --- a/npc/sample/npc_time_sample.txt +++ /dev/null @@ -1,18 +0,0 @@ - -prontera,157,181,6 script Time Sample 105,{ - mes "[Time Sample]"; - mes "System Tick : " + gettimetick(0); - mes " Time Tick : " + gettimetick(1); - mes " GetTime(0) : " + gettime(0); - mes " GetTime(1) : " + gettime(1) + " (Sec)"; - mes " GetTime(2) : " + gettime(2) + " (Min)"; - mes " GetTime(3) : " + gettime(3) + " (Hour)"; - mes " GetTime(4) : " + gettime(4) + " (WeekDay)"; - mes " GetTime(5) : " + gettime(5) + " (MonthDay)"; - mes " GetTime(6) : " + gettime(6) + " (Month)"; - mes " GetTime(7) : " + gettime(7) + " (Year)"; - mes " GetTimeStr : " + gettimestr("%Y-%m/%d %H:%M:%S",19); - close; - end; -} - |