summaryrefslogblamecommitdiff
path: root/npc/commands/wgm.txt
blob: 07076ba199dea798dd90dbbeacb8fdc711e33305 (plain) (tree)
1
2

                    














                               
                                     
                                                        

                                      


                                             
        
 
// Author: Jesusalva

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