diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/hub.txt | 3 | ||||
-rw-r--r-- | npc/magic/ovh.txt | 13 | ||||
-rw-r--r-- | npc/scripts.conf | 1 |
3 files changed, 17 insertions, 0 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index cbbf33592..b03a47253 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -290,6 +290,9 @@ function script HUB_SkillInvoke { case TMW2_CRAFT: UserCtrlPanel(); break; + case TMW2_OVHFIRE: + SK_OVHFire(); + break; case TMW2_MPREGEN: SK_mpregen(); break; diff --git a/npc/magic/ovh.txt b/npc/magic/ovh.txt new file mode 100644 index 000000000..476be292c --- /dev/null +++ b/npc/magic/ovh.txt @@ -0,0 +1,13 @@ +// TMW2 script +// Author: Jesusalva <admin@tmw2.org> +// +// Magic Script: TMW2_OVHFIRE +// +// Burns down the user to a toast, but they'll survive, because they are awesome. + +function script SK_OVHFire { + specialeffect FX_HELLBLAZE, AREA, getcharid(3); + return; +} + + diff --git a/npc/scripts.conf b/npc/scripts.conf index 1e5a2422e..290624ea8 100644 --- a/npc/scripts.conf +++ b/npc/scripts.conf @@ -127,6 +127,7 @@ "npc/magic/forget.txt", "npc/magic/guild.txt", "npc/magic/mpregen.txt", +"npc/magic/ovh.txt", "npc/magic/parum.txt", "npc/magic/plantkingdom.txt", "npc/magic/revive.txt", |