diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-15 20:32:55 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-15 20:32:55 +0000 |
commit | 788a65d41bce37aad857e5b5202d0293e84963a2 (patch) | |
tree | 2070539f8f2ed0a635ff39a18194c21a76595848 /npc/sample/PCLoginEvent.txt | |
parent | a50476a588b2d7bc819cf0235a093dcddef9f2bf (diff) | |
download | hercules-788a65d41bce37aad857e5b5202d0293e84963a2.tar.gz hercules-788a65d41bce37aad857e5b5202d0293e84963a2.tar.bz2 hercules-788a65d41bce37aad857e5b5202d0293e84963a2.tar.xz hercules-788a65d41bce37aad857e5b5202d0293e84963a2.zip |
removed all .GAT from all the scripts and tested
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10018 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/sample/PCLoginEvent.txt')
-rw-r--r-- | npc/sample/PCLoginEvent.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/sample/PCLoginEvent.txt b/npc/sample/PCLoginEvent.txt index 23c97ebfc..22218a2bf 100644 --- a/npc/sample/PCLoginEvent.txt +++ b/npc/sample/PCLoginEvent.txt @@ -7,7 +7,7 @@ // if the script is like this: // // [code] -// prontera.gat,0,0,0 script OnPCLoginEvent -1,{ +// prontera,0,0,0 script OnPCLoginEvent -1,{ // mes "lmao"; // close; // } @@ -31,21 +31,21 @@ // // The 1st type -- with 'event_script_type' set to 0 // -prontera.gat,0,0,0 script OnPCLoginEvent -1,{ +prontera,0,0,0 script OnPCLoginEvent -1,{ end; } // // The 2nd type -- with 'event_script_type' set to 1 // -prontera.gat,155,175,0 script An NPC 46,{ +prontera,155,175,0 script An NPC 46,{ close; OnPCLoginEvent: // this part will run close; } -prontera.gat,156,176,0 script Another NPC 46,{ +prontera,156,176,0 script Another NPC 46,{ close; OnPCLoginEvent: // this part runs AS WELL |