16.04.2013, 15:02
Hello!
I need a little help with my /vcoloroff command...So I already have a /vcoloron which enable a Vip Color..But now I need to know, how to make that when a Vip player do /vcoloroff, then he will have the same color as he had beffore he did a /vcoloron...
Code for /vcoloron:
Thanks for your help
I need a little help with my /vcoloroff command...So I already have a /vcoloron which enable a Vip Color..But now I need to know, how to make that when a Vip player do /vcoloroff, then he will have the same color as he had beffore he did a /vcoloron...
Code for /vcoloron:
PHP код:
CMD:vcoloron(playerid, params[])
{
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(gPlayerInfo[playerid][PLAYER_VIP] < 1)return SendClientMessage(playerid, COLOR_RED, "You are Not Allowed To Use This Command!");
if(gPlayerInfo[i][PLAYER_VIP] == 1)return SetPlayerColor(playerid, COLOR_BRONZE);
if(gPlayerInfo[i][PLAYER_VIP] == 2)return SetPlayerColor(playerid, COLOR_SILVER);
if(gPlayerInfo[i][PLAYER_VIP] == 3)return SetPlayerColor(playerid, COLOR_GOLD);
SendClientMessage(playerid, COLOR_LIGHTBLUE, "[VIP]: You Have Enabled a Vip Color!");
}
return 1;
}