diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-15 20:51:30 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-15 20:51:30 +0000 |
commit | 3a60dd0b55de6c81a3d38d96880031f262e1070c (patch) | |
tree | b8a565eaccb656279710302eabaddb18873561f1 /doc/pccommand_list.txt | |
parent | 788a65d41bce37aad857e5b5202d0293e84963a2 (diff) | |
download | hercules-3a60dd0b55de6c81a3d38d96880031f262e1070c.tar.gz hercules-3a60dd0b55de6c81a3d38d96880031f262e1070c.tar.bz2 hercules-3a60dd0b55de6c81a3d38d96880031f262e1070c.tar.xz hercules-3a60dd0b55de6c81a3d38d96880031f262e1070c.zip |
removed all .GAT from configs, docs and examples
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10019 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc/pccommand_list.txt')
-rw-r--r-- | doc/pccommand_list.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/pccommand_list.txt b/doc/pccommand_list.txt index 25c16fed6..b15fff5af 100644 --- a/doc/pccommand_list.txt +++ b/doc/pccommand_list.txt @@ -14,7 +14,7 @@ When a player logs in, the NPC will run as if he just clicked it. Which means if the script is like this: + Sample: -prontera.gat,0,0,0 script OnPCLoginEvent -1,{ +prontera,0,0,0 script OnPCLoginEvent -1,{ mes "lmao"; close; } @@ -106,7 +106,7 @@ When a player logs in on the map, the NPC will run as if he just clicked it. Whi if the script is like this: + Sample: -prontera.gat,159,192,2 script OnPCLoadMapEvent 101,{ +prontera,159,192,2 script OnPCLoadMapEvent 101,{ mes "Holy shit"; close; } @@ -134,8 +134,8 @@ can be getmapxy, something like this: - script PCDieEvent -1,{ if (getmapxy(@mapname$,@mapx,@mapy,0) == -1) goto L_Finish; -if (@mapname$ == "valkyrie.gat") || (@mapname$ == "amatsu.gat") { -killmonster "valkyrie.gat","All"; +if (@mapname$ == "valkyrie") || (@mapname$ == "amatsu") { +killmonster "valkyrie","All"; announce "Deep Voice: You have failed.... you have another opportunity though...",bc_self,0x660033; if (killtest != 0) enablenpc "Outern Voices"; if (killedonce == 1) end; @@ -151,8 +151,8 @@ L_Finish: OnPCDieEvent: if (getmapxy(@mapname$,@mapx,@mapy,0) == -1) goto L_Finish; -if (@mapname$ == "valkyrie.gat") || (@mapname$ == "amatsu.gat") { -killmonster "valkyrie.gat","All"; +if (@mapname$ == "valkyrie") || (@mapname$ == "amatsu") { +killmonster "valkyrie","All"; announce "Deep Voice: You have failed.... you have another opportunity though...",bc_self,0x660033; if (killtest != 0) enablenpc "Outern Voices"; if (killedonce == 1) end; |