summaryrefslogtreecommitdiff
path: root/npc/commands/wgm.txt
blob: cbaa95b8670caef231ff95a0ef515131780a938b (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
// @wgm atcommand
// Request help
//
// group lv: 0
// group char lv: 0
// log: True
//
// usage:
//    @wgm Help
//

-	script	@wgm	32767,{
    end;

OnCall:
    .@request$ = strcharinfo(0)+": ";
	.@request$ += implode(.@atcmd_parameters$, " ");
    atcommand("@request "+.@request$);
    end;

OnInit:
    bindatcmd "wgm", "@wgm::OnCall", 0, 0, 1;
    end;
}