15.11.2010, 23:32
I want to make a chat only for VIPS,
but i don't know 100% how to make it.
Help me please.
I want that only VIPS van see this chat,
but i don't know 100% how to make it.
Help me please.
I want that only VIPS van see this chat,
Код:
if(strcmp(cmd, "/vipchat", true) == 0 || strcmp(cmd, "/v", true) == 0)
{
if(PlayerInfo[playerid][pDonateRank] >= 1)
strmid(tmp,cmdtext,idx,strlen(cmdtext));
if(!strlen(tmp))
return SendClientMessage(playerid, COLOR_GRAD2, "You're not a VIP!");
format(string, sizeof(string), "[VIP] %s : %s",PlayerName(playerid),tmp);
SendClientMessage(playerid,COLOR_YELLOW,string);
for(new i = 0;i < MAX_PLAYERS;i++)
return 1;
}

