summaryrefslogtreecommitdiff
path: root/npc/other/poring_war.txt
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2015-12-18 05:48:23 +0100
committerHaru <haru@dotalux.com>2015-12-18 05:53:48 +0100
commita782aa1540b63d5fffd55d835f6f30ee0c53d0f1 (patch)
tree4d20c27f191e91adabb029342683687bce5ca4d5 /npc/other/poring_war.txt
parentdbe5f2237cada6a261e297b60857dc305860a88d (diff)
downloadhercules-a782aa1540b63d5fffd55d835f6f30ee0c53d0f1.tar.gz
hercules-a782aa1540b63d5fffd55d835f6f30ee0c53d0f1.tar.bz2
hercules-a782aa1540b63d5fffd55d835f6f30ee0c53d0f1.tar.xz
hercules-a782aa1540b63d5fffd55d835f6f30ee0c53d0f1.zip
Replaced numeric values with UNITTYPE_ constants in getmapxy
Follow-up to dbe5f2237cada6a261e297b60857dc305860a88d Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/other/poring_war.txt')
-rw-r--r--npc/other/poring_war.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/other/poring_war.txt b/npc/other/poring_war.txt
index f3a1df913..b3b6466ad 100644
--- a/npc/other/poring_war.txt
+++ b/npc/other/poring_war.txt
@@ -318,7 +318,7 @@ poring_w01,96,97,3 script Sweet Devi#wop 4_DEVIRUCHI,{
}
OnPCLogoutEvent:
- getmapxy .@map$,.@x,.@y,0;
+ getmapxy(.@map$, .@x, .@y, UNITTYPE_PC);
if (.@map$ == "poring_w02") {
if (WoP_SaveMap$ != "") {
savepoint WoP_SaveMap$,WoP_SaveMap_X,WoP_SaveMap_Y;
@@ -332,7 +332,7 @@ OnPCLogoutEvent:
end;
OnPCDieEvent:
- getmapxy .@map$,.@x,.@y,0;
+ getmapxy(.@map$, .@x, .@y, UNITTYPE_PC);
if (.@map$ == "poring_w02" && wop_team) {
if (getsavepoint(0) != "poring_w02" && WoP_SaveMap$ == "") {
WoP_SaveMap$ = getsavepoint(0);
@@ -349,7 +349,7 @@ OnPCDieEvent:
end;
OnPCKillEvent:
- getmapxy .@map$,.@x,.@y,0;
+ getmapxy(.@map$, .@x, .@y, UNITTYPE_PC);
if (.@map$ == "poring_w02" && wop_team) {
getnameditem War_Badge,rid2name(killedrid);
}