13.10.2011, 20:50
Alright thanks, I need help with one more thing, my VIP chat command, it works almsot perfect except The first letter doesnt show..
PHP код:
CMD:v(playerid,params[]){
new string[128],message;
if(PlayerInfo[playerid][pVIP] < 1) return SendClientMessage(playerid,COLOR_GRAY,"You're not authorized to use this command!");
if(sscanf(params,"s",message)) return SendClientMessage(playerid,COLOR_GRAY,"Syntax: /v [message]");
else
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(PlayerInfo[i][pVIP] < 1) return 0;
format(string,sizeof(string),"[VIP]%s: %s",GetName(playerid),string);
SendClientMessage(i,COLOR_GOLD,string);
}
return 1;
}