02.02.2015, 14:31
Hello.
How can i add a new command to my script exemple: /CreateGangVeh
And more....
Thanks.
Micklo
How can i add a new command to my script exemple: /CreateGangVeh
And more....
Thanks.
Micklo
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "test", true))
{
// Codes
return 1;
}
return 0;
}
CMD:test(playerid, params[])
{
// Codes
return 1;
}
YCMD:test(playerid, params[], help)
{
// Codes
return 1;
}