Create command / Command generator
Command manager to help you create command pawn code for your SA:MP server.
|
|
|
|
|
Enter the command!
//OnPlayerCommandText
if(strcmp(cmdtext, "/specplayer", true) == 0)
{
// code...
return 1;
}
CMD:specplayer(playerid, params[])
{
// code...
return 1;
}