summaryrefslogtreecommitdiff
path: root/npc/commands/exp.txt
blob: a8d34923da0dd371cbe83fa19ebd75b159c2f5a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// TMW2 Script
// Author: Jesusalva

// @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;

OnHomun:
    if (!gethominfo(0)) {
        dispbottom l("No homunculus found!");
        end;
    }
    .@delta$ = .@atcmd_parameters$[0];
    .@d = atoi(.@delta$);

    gethomunexp .@d;
    end;

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