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/quests/kiel_hyre_quest.txt | |
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/quests/kiel_hyre_quest.txt')
-rw-r--r-- | npc/quests/kiel_hyre_quest.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/quests/kiel_hyre_quest.txt b/npc/quests/kiel_hyre_quest.txt index 3a21bbfa0..4fe113d57 100644 --- a/npc/quests/kiel_hyre_quest.txt +++ b/npc/quests/kiel_hyre_quest.txt @@ -1967,7 +1967,7 @@ kh_vila,184,20,0 script Book#kh1::BookKHQ1 HIDDEN_NPC,{ mes "wall slides opens open"; mes "to reveal a secret path.^000000"; KielHyreQuest = 28; - specialeffect EF_READYPORTAL2,AREA,"Wall#kh"; + specialeffect(EF_READYPORTAL2, AREA, getnpcid(0, "Wall#kh")); close; } else { @@ -6393,11 +6393,11 @@ kh_kiehl02,50,52,4 script Kiehl#Original 4_M_KHKIEL,{ next; mes "[Mitchell]"; mes "Nooooo!"; - specialeffect PF_FOGWALL,AREA,"Mitchell#KiehlRoom"; - specialeffect PF_FOGWALL,AREA,"Agent#KHAgent1"; - specialeffect PF_FOGWALL,AREA,"Agent#KHAgent2"; - specialeffect PF_FOGWALL,AREA,"Agent#KHAgent3"; - specialeffect PF_FOGWALL,AREA,"Agent#KHAgent4"; + specialeffect(PF_FOGWALL, AREA, getnpcid(0, "Mitchell#KiehlRoom")); + specialeffect(PF_FOGWALL, AREA, getnpcid(0, "Agent#KHAgent1")); + specialeffect(PF_FOGWALL, AREA, getnpcid(0, "Agent#KHAgent2")); + specialeffect(PF_FOGWALL, AREA, getnpcid(0, "Agent#KHAgent3")); + specialeffect(PF_FOGWALL, AREA, getnpcid(0, "Agent#KHAgent4")); next; cutin "kh_kiel03",2; mes "[Kiehl]"; |