10.09.2014, 20:15
Guys i make Gmx to my FS this but its bug
why idk i want make it when i load gamemods its restart server ![Cheesy](images/smilies/biggrin.png)
Help+Rep
![Sad](images/smilies/sad.gif)
![Cheesy](images/smilies/biggrin.png)
PHP код:
#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;
}