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/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/cities')
-rw-r--r-- | npc/cities/jawaii.txt | 4 | ||||
-rw-r--r-- | npc/cities/morocc.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/npc/cities/jawaii.txt b/npc/cities/jawaii.txt index c77972ef7..b48b960d2 100644 --- a/npc/cities/jawaii.txt +++ b/npc/cities/jawaii.txt @@ -1271,7 +1271,7 @@ prt_in,173,13,4 script Customer#SoloHan 4_M_04,{ next; mes "[Bachewcca]"; mes "^666666*Grunt!*^000000"; - specialeffect EF_TALK_SCREAM,AREA,"Customer#Bachewcca"; + specialeffect(EF_TALK_SCREAM, AREA, getnpcid(0, "Customer#Bachewcca")); next; mes "[SoloHan]"; mes "To..."; @@ -1377,7 +1377,7 @@ prt_in,173,13,4 script Customer#SoloHan 4_M_04,{ next; mes "[Bachewcca]"; mes "^666666*Grrr...!*^000000"; - specialeffect EF_THROWITEM,AREA,"Customer#Bachewcca"; + specialeffect(EF_THROWITEM, AREA, getnpcid(0, "Customer#Bachewcca")); close; } mes "Oh man..."; diff --git a/npc/cities/morocc.txt b/npc/cities/morocc.txt index 8f1f1111d..a79148fbf 100644 --- a/npc/cities/morocc.txt +++ b/npc/cities/morocc.txt @@ -138,7 +138,7 @@ morocc,223,102,0 script Volunteer - Morroc#06::MocVolunteer 2_M_BARD_ORIENT,{ next; mes "[Ringing Voice]"; mes "Be quiet! Can't you see what's going on?!"; - specialeffect EF_HIT2,AREA,"Volunteer - Morroc#06"; + specialeffect(EF_HIT2, AREA, getnpcid(0, "Volunteer - Morroc#06")); next; mes "[Morroc Volunteer]"; mes "Heyyy, you're being too harsh, Senyorita. Your fist may be as fragile as you are, but it sure can hurt somebody."; |