10.09.2014, 21:44
How To Make GMX on this ?
Quote:
#include <a_samp> #include <zcmd> #include <sscanf> CMD:changemode(playerid, params[]) { new string[32],GM[32]; if(sscanf(params, "s", GM)) { SendClientMessage(playerid,-1, "Usage: /changemode (GM)"); return 1; } format(string, sizeof (string), "changemode %s", GM); SendRconCommand(string); return 1; } |