How when i get 2000 score i get "VIP user lvl 1?"
#4

first you need a VIP System (or make your own)
create a enum example

pawn Код:
enum pInfo
{
      VIP
};
new VIPInfo[MAX_PLAYERS][pInfo];
then do what ShabiRoxX says. something like this

pawn Код:
if(GetPlayerScore(playerid) == 2000) //checks if player has the score 2,000
{
      VIPInfo[playerid][VIP] = 1; //will set player VIP level to 1
}
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.

Код:
Trial VIP
Silver VIP
Gold VIP
Reply


Messages In This Thread
How when i get 2000 score i get "VIP user lvl 1?" - by michael_dark_1 - 13.03.2012, 19:41
Re: How when i get 2000 score i get "VIP user lvl 1?" - by Shabi RoxX - 13.03.2012, 19:46
Respuesta: Re: How when i get 2000 score i get "VIP user lvl 1?" - by michael_dark_1 - 14.03.2012, 02:00
Re: How when i get 2000 score i get "VIP user lvl 1?" - by Reklez - 14.03.2012, 02:41

Forum Jump:


Users browsing this thread: 2 Guest(s)