summaryrefslogblamecommitdiff
path: root/npc/commands/python.txt
blob: cb2b27505507e5e640dfae317852052f910e6795 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                 
                                              
                                           











                                                     
// 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(34, AREA, playerattached());
    sc_start SC_CASH_DEATHPENALTY, 1000, 1;
    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;
}