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

help!!
Reply
#2

Create a timer to check if player score is or greater than 2000 make him VIP..
Reply
#3

Quote:
Originally Posted by Shabi RoxX
Посмотреть сообщение
Create a timer to check if player score is or greater than 2000 make him VIP..
can you make it for me?
Reply
#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


Forum Jump:


Users browsing this thread: 1 Guest(s)