summaryrefslogtreecommitdiff
path: root/npc/commands/kami.txt
blob: 4204ae5fe6a9aea339ca403853b2498e0ec3093c (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
// TMW2 Script
//
// @k atcommand
// Broadcast, and broadcast to #world too
//
// group lv: 0
// group char lv: 0
// log: True
//
// usage:
//    @wgm Help
//

-	script	@k	32767,{
    end;

OnCall:
    .@request$ = strcharinfo(0)+": "+.@atcmd_parameters$[0];
    channelmes("#world", .@request$);
    announce l(.@request$), bc_all|bc_npc;
    end;


OnInit:
    bindatcmd "k", "@k::OnCall", 80, 80, 1;
}