diff options
author | wushin <pasekei@gmail.com> | 2014-07-23 21:24:29 -0500 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2014-07-23 21:24:29 -0500 |
commit | 461af7da143051fbc6d1cb6949e051ab80724d2c (patch) | |
tree | fc46cc9f9ce9fb784289e077e66e754377689f91 /world/map/npc/052-2 | |
parent | 27140b4290b7b3ddbf6b847d24340cab27304b8f (diff) | |
download | serverdata-461af7da143051fbc6d1cb6949e051ab80724d2c.tar.gz serverdata-461af7da143051fbc6d1cb6949e051ab80724d2c.tar.bz2 serverdata-461af7da143051fbc6d1cb6949e051ab80724d2c.tar.xz serverdata-461af7da143051fbc6d1cb6949e051ab80724d2c.zip |
Fixed Attachrid calls
Diffstat (limited to 'world/map/npc/052-2')
-rw-r--r-- | world/map/npc/052-2/lobby.txt | 3 | ||||
-rw-r--r-- | world/map/npc/052-2/partyroom.txt | 6 |
2 files changed, 3 insertions, 6 deletions
diff --git a/world/map/npc/052-2/lobby.txt b/world/map/npc/052-2/lobby.txt index a32ab830..c707c76f 100644 --- a/world/map/npc/052-2/lobby.txt +++ b/world/map/npc/052-2/lobby.txt @@ -341,9 +341,8 @@ L_ChaseLuvia: end; S_GetHeroRect: - if (isloggedin($@ILLIA_HERO_ID) == 0) + if (!(attachrid($@ILLIA_HERO_ID))) goto L_Clear; - attachrid($@ILLIA_HERO_ID); set $@illia_lobby_x, getx(); set $@illia_lobby_y, gety(); diff --git a/world/map/npc/052-2/partyroom.txt b/world/map/npc/052-2/partyroom.txt index 663c2dec..ef04a667 100644 --- a/world/map/npc/052-2/partyroom.txt +++ b/world/map/npc/052-2/partyroom.txt @@ -123,9 +123,8 @@ OnTimer5000: if ($@illia_level_7_progress != 1) end; // Warp to the place to spawn luvia once the teleport sequence is finished - if (isloggedin($@ILLIA_HERO_ID) == 0) + if (!(attachrid($@ILLIA_HERO_ID))) end; - attachrid($@ILLIA_HERO_ID); set $@illia_luvia_x, getx(); set $@illia_luvia_y, gety(); npcwarp $@illia_luvia_x, $@illia_luvia_y, "#LuviaDaemon"; @@ -176,9 +175,8 @@ OnTimer26000: end; S_SpawnWitchGuard: - if (isloggedin($@ILLIA_HERO_ID) == 0) + if (!(attachrid($@ILLIA_HERO_ID))) end; - attachrid($@ILLIA_HERO_ID); npcwarp getx(), gety(), "#LuviaDaemon"; misceffect FX_EVIL_SUMMON; misceffect FX_GROUND_SPAWN; |