blob: 8bd9f7f45ebdf8322cf7b307a35ec3474d36790c (
plain) (
tree)
|
|
// TMW2 script
// Author: Jesusalva <admin@tmw2.org>
//
// Magic Script: TMW2_KALMURK
//
// Spawns Maggots.
- script sk#kalmurk 32767,{
end;
/*
OnFriendlyDeath:
emote 4;
end;
*/
OnCall:
// Other requeriments
if (countitem(MaggotSlime) < 2) {
dispbottom l("You need 2x @@ to cast this skill.", getitemlink(MaggotSlime));
end;
}
// Check cooldown
/* TODO */
// This will only vanish upon logout =/
if (@kalmurk_caveat) {
dispbottom l("Skill is in cooldown.");
end;
}
// Setup
.@sk=TMW2_KALMURK;
.@mp=200;
.@amp=50;
// Check if you have mana to cast
// MagicCheck(SkillID, Mana{, MP per level})
if (!MagicCheck(.@sk, .@mp, .@amp))
end;
// Summon Magic
SummonMagic(.@sk, CaveMaggot, 2);
delitem MaggotSlime, 2;
// Get a single mana experience point (this is NOT used by Soul Menhir)
GetManaExp(TMW2_KALMURK, 1);
/*
// set cooldown
@skkalmurkor_cooldown=gettimetick(2)+20;
*/
@kalmurk_caveat=1;
end;
OnInit:
bindatcmd "sk-kalmurk", "sk#kalmurk::OnCall", 0, 100, 0;
end;
}
|