diff options
author | EyesOfAHawk <blackoutro2006@gmail.com> | 2018-10-18 03:23:18 +1300 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2018-11-13 17:13:38 +0100 |
commit | 7b45d05bd8e3f476f1d801203f2968993b52a31f (patch) | |
tree | b1f73f007939678c46cea7123b75ff74a3017653 /npc/quests/kiel_hyre_quest.txt | |
parent | baeb7a1742b0fd7ac5d3a4cecd90f74d461895fe (diff) | |
download | hercules-7b45d05bd8e3f476f1d801203f2968993b52a31f.tar.gz hercules-7b45d05bd8e3f476f1d801203f2968993b52a31f.tar.bz2 hercules-7b45d05bd8e3f476f1d801203f2968993b52a31f.tar.xz hercules-7b45d05bd8e3f476f1d801203f2968993b52a31f.zip |
Remove type argument from buildin_getnpcid.
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 b51207737..677a81f8d 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, getnpcid(0, "Wall#kh")); + specialeffect(EF_READYPORTAL2, AREA, getnpcid("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, 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")); + specialeffect(PF_FOGWALL, AREA, getnpcid("Mitchell#KiehlRoom")); + specialeffect(PF_FOGWALL, AREA, getnpcid("Agent#KHAgent1")); + specialeffect(PF_FOGWALL, AREA, getnpcid("Agent#KHAgent2")); + specialeffect(PF_FOGWALL, AREA, getnpcid("Agent#KHAgent3")); + specialeffect(PF_FOGWALL, AREA, getnpcid("Agent#KHAgent4")); next; cutin "kh_kiel03",2; mes "[Kiehl]"; |