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/thana_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/thana_quest.txt')
-rw-r--r-- | npc/quests/thana_quest.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/quests/thana_quest.txt b/npc/quests/thana_quest.txt index 4363a6a27..ea01a926d 100644 --- a/npc/quests/thana_quest.txt +++ b/npc/quests/thana_quest.txt @@ -2088,11 +2088,11 @@ OnTimer1000: OnTimer5000: .@pillar = 1; OnTimer3000: - specialeffect(EF_BEGINSPELL7, AREA, getnpcid(0, "#tteffect05")); - specialeffect(EF_BEGINSPELL3, AREA, getnpcid(0, "#tteffect04")); - specialeffect(EF_BEGINSPELL2, AREA, getnpcid(0, "#tteffect03")); - specialeffect(EF_BEGINSPELL4, AREA, getnpcid(0, "#tteffect02")); - specialeffect(EF_BEGINSPELL5, AREA, getnpcid(0, "#tteffect01")); + specialeffect(EF_BEGINSPELL7, AREA, getnpcid("#tteffect05")); + specialeffect(EF_BEGINSPELL3, AREA, getnpcid("#tteffect04")); + specialeffect(EF_BEGINSPELL2, AREA, getnpcid("#tteffect03")); + specialeffect(EF_BEGINSPELL4, AREA, getnpcid("#tteffect02")); + specialeffect(EF_BEGINSPELL5, AREA, getnpcid("#tteffect01")); if (.@pillar) specialeffect EF_MAPPILLAR2; end; } @@ -2235,8 +2235,8 @@ OnDisable: thana_boss,141,218,0 script #sommon_thanatos FAKE_NPC,{ OnEnable: - specialeffect(EF_MAPPILLAR2, AREA, getnpcid(0, "#sommon_thanatos")); - specialeffect(EF_SEISMICWEAPON, AREA, getnpcid(0, "#sommon_thanatos")); + specialeffect(EF_MAPPILLAR2, AREA, getnpcid("#sommon_thanatos")); + specialeffect(EF_SEISMICWEAPON, AREA, getnpcid("#sommon_thanatos")); monster "thana_boss",141,218,"Thanatos Phantom",1708,1,"#sommon_thanatos::OnMyMobDead"; end; OnMyMobDead: |