summaryrefslogblamecommitdiff
path: root/npc/commands/exp.txt
blob: a8ffe739344a5828286b46eed6597ba2b031e63d (plain) (tree)



















                                                    
// @getexp atcommand
// Gets experience
//
// group lv: 5
// group char lv: 99
// log: True

-	script	@getexp	32767,{
    end;

OnCall:
    .@delta$ = .@atcmd_parameters$[0];
    .@d = atoi(.@delta$);

    getexp .@d, 0;
    end;

OnInit:
    bindatcmd "getexp", "@getexp::OnCall", 5, 99, 1;
}