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/thana_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/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 81acffa8b..4363a6a27 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,"#tteffect05"; - specialeffect EF_BEGINSPELL3,AREA,"#tteffect04"; - specialeffect EF_BEGINSPELL2,AREA,"#tteffect03"; - specialeffect EF_BEGINSPELL4,AREA,"#tteffect02"; - specialeffect EF_BEGINSPELL5,AREA,"#tteffect01"; + 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")); 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,"#sommon_thanatos"; - specialeffect EF_SEISMICWEAPON,AREA,"#sommon_thanatos"; + specialeffect(EF_MAPPILLAR2, AREA, getnpcid(0, "#sommon_thanatos")); + specialeffect(EF_SEISMICWEAPON, AREA, getnpcid(0, "#sommon_thanatos")); monster "thana_boss",141,218,"Thanatos Phantom",1708,1,"#sommon_thanatos::OnMyMobDead"; end; OnMyMobDead: |