06.10.2012, 11:45
how to make when someone is a vip
and he wants yo make an /ad
to give him three text color options
if he wants to make the /ad text blue red or green
ive made this so far:
and he wants yo make an /ad
to give him three text color options
if he wants to make the /ad text blue red or green
ive made this so far:
PHP код:
CMD:vipad(playerid, params[])
{
new dcolor, string[128], sendername[MAX_PLAYER_NAME];
if(PlayerInfo[playerid][pVip] < 2) return SendClientMessage(playerid,red,"your Not VIP");
if(isnull(params)) return SendClientMessage(playerid, lb,"USAGE:/ad [advertisement]");
ShowPlayerDialog(playerid,DIALOG_VIPAD,DIALOG_STYLE_LIST,"Choose a color","Red \nGreen \nBlue","Choose","Cancel");
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "[Advertisment]: %s, Contact %s ,Phone: %d", params, sendername ,PlayerInfo[playerid][pNumber]);
SendClientMessageToAll(color,string);
}