diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-06-08 15:41:44 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-06-08 15:41:44 -0300 |
commit | 0a84d3f6dd2e90844218dc5be862137b1e089be5 (patch) | |
tree | 4a99d386aff5bc2646d42c1390d8711a0284911d | |
parent | e7047903da5997d3225f84558944fe3ed024817f (diff) | |
download | serverdata-0a84d3f6dd2e90844218dc5be862137b1e089be5.tar.gz serverdata-0a84d3f6dd2e90844218dc5be862137b1e089be5.tar.bz2 serverdata-0a84d3f6dd2e90844218dc5be862137b1e089be5.tar.xz serverdata-0a84d3f6dd2e90844218dc5be862137b1e089be5.zip |
Zarkor was so simplified over time, that it can now be declared in hub.txt
Instead of being declared in its own file
-rw-r--r-- | npc/functions/hub.txt | 7 | ||||
-rw-r--r-- | npc/magic/zarkor.txt | 11 |
2 files changed, 4 insertions, 14 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index e621246ce..2ff91352a 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -306,11 +306,12 @@ function script HUB_SkillInvoke { case TMW2_PARUM: SK_parum(); break; - // Highly complex summons + // Summons which never fail case TMW2_ZARKOR: - SK_zarkor(); + SummonMagic(@skillId, CaveMaggot, 2, @skillLv); + GetManaExp(@skillId, 1); break; - // Less complex summons + // Summons which may fail case TMW2_KALMURK: SK_summon(Maggot, 2, any(1,2)); break; diff --git a/npc/magic/zarkor.txt b/npc/magic/zarkor.txt index aefc83abe..2e0c3b116 100644 --- a/npc/magic/zarkor.txt +++ b/npc/magic/zarkor.txt @@ -6,17 +6,6 @@ // Spawns a Cave Maggot. // This is to test stuff, more than to create anything really. -function script SK_zarkor { - // Set skill - @sk=TMW2_ZARKOR; - - // Summon Magic - SummonMagic(@sk, CaveMaggot, 2, @skillLv); - - // Get a single mana experience point (this is NOT used by Mana Stone) - GetManaExp(@sk, 1); - return; -} - script sk#zarkor 32767,{ end; |