14.03.2012, 02:41
first you need a VIP System (or make your own)
create a enum example
then do what ShabiRoxX says. something like this
you must create timer first!
then there create a command for your VIP levels. for me the good level is VIP level 1 to 3.
create a enum example
pawn Код:
enum pInfo
{
VIP
};
new VIPInfo[MAX_PLAYERS][pInfo];
pawn Код:
if(GetPlayerScore(playerid) == 2000) //checks if player has the score 2,000
{
VIPInfo[playerid][VIP] = 1; //will set player VIP level to 1
}
then there create a command for your VIP levels. for me the good level is VIP level 1 to 3.
Код:
Trial VIP Silver VIP Gold VIP