09.02.2010, 19:01
Quote:
|
Originally Posted by KotZ
now this cmd can be used only in vehicle
Код:
if(!strcmp(cmdtext, "/cb", true, 3))
{
if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER || (GetPlayerState(playerid) == PLAYER_STATE_PASSENGER))
{
if(!cmdtext[3])return SendClientMessage(playerid, 0xFF9900AA, "USAGE: /cb [Text]");
new str[128];
GetPlayerName(playerid, str, sizeof(str));
format(str, sizeof(str), "*(CB Radio)%s: %s", str, cmdtext[4]);
SendClientMessageToAll(0x9ACD32AA, str);
}
return 1;
}
|
Where in that code would I make it so if someone isn't in the car it says "You must be in a Vehicle to use this command"?

