diff options
author | gumi <mekolat@users.noreply.github.com> | 2017-05-27 17:00:28 -0400 |
---|---|---|
committer | gumi <mekolat@users.noreply.github.com> | 2017-06-03 12:57:33 -0400 |
commit | b0b071305f967ae836722e7518455ee06089de01 (patch) | |
tree | 4f8da981a8fff79abb1d61be1bae6c46cb33add9 /npc/re/cities | |
parent | 7a538d27ee8f9194a9fc4988197d90b51e23f32b (diff) | |
download | hercules-b0b071305f967ae836722e7518455ee06089de01.tar.gz hercules-b0b071305f967ae836722e7518455ee06089de01.tar.bz2 hercules-b0b071305f967ae836722e7518455ee06089de01.tar.xz hercules-b0b071305f967ae836722e7518455ee06089de01.zip |
convert specialeffect calls with strings to use GID
Diffstat (limited to 'npc/re/cities')
-rw-r--r-- | npc/re/cities/dewata.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/re/cities/dewata.txt b/npc/re/cities/dewata.txt index 850165b0e..064cdc461 100644 --- a/npc/re/cities/dewata.txt +++ b/npc/re/cities/dewata.txt @@ -569,10 +569,10 @@ dewata,89,191,6 script Small Shrine#dew1 CLEAR_NPC,{ L_Wish: mes "Mysterious energy comes out from the shrine."; - specialeffect EF_FLASHER,AREA,"Small Shrine#dew1"; - specialeffect EF_FLASHER,AREA,"Small Shrine#dew2"; - specialeffect EF_FLASHER,AREA,"Small Shrine#dew3"; - specialeffect EF_FLASHER,AREA,"Small Shrine#dew4"; + specialeffect(EF_FLASHER, AREA, getnpcid(0, "Small Shrine#dew1")); + specialeffect(EF_FLASHER, AREA, getnpcid(0, "Small Shrine#dew2")); + specialeffect(EF_FLASHER, AREA, getnpcid(0, "Small Shrine#dew3")); + specialeffect(EF_FLASHER, AREA, getnpcid(0, "Small Shrine#dew4")); next; mes "You have received the shrine's blessing."; specialeffect(EF_BLESSING, AREA, playerattached()); |