blob: e2f5ead7d905b5584acd3310f0eada64f4c1a2e6 (
plain) (
tree)
|
|
// The Mana World script
// Author: Gumi <gumi@themanaworld.org>
// Author: Jesusalva <jesusalva@themanaworld.org>
//
// Stomp stomp stomp (use with caution)
- script @python 32767,{
end;
OnCall:
specialeffect(65, AREA, playerattached());
addtimer 380, .name$+"::OnKill";
end;
OnKill:
percentheal -100, -100;
//dispbottom l("Oh look, it is Cupid!");
end;
OnInit:
bindatcmd "python", "@python::OnCall", 60, 60, 1;
end;
}
|