I have a question.
#4

Quote:
Originally Posted by ConnorW
Посмотреть сообщение
In the command you do:
PHP код:
if(yourvipvariable[playerid] == 0//if the player vip level is 0
{
    return 
SendClientMessage(playerid, -1"You are not VIP");

If the variable is a boolean, it will give a tag mismatch so better use:

PHP код:
    if(_:VIP[playerid] == 0)
        return 
SendClientMessage(playerid, -1"You are not VIP"); 
The same thing here

Quote:
Originally Posted by KinderClans
Посмотреть сообщение
No need to waste 3 lines for a simple message...

pawn Код:
if(yourvipvariable[playerid] == 0)  return SendClientMessage(playerid, -1, "You are not VIP");
Reply


Messages In This Thread
I have a question. - by murilo2929 - 28.10.2018, 16:16
Re: I have a question. - by d3Pedro - 28.10.2018, 17:47
Re: I have a question. - by KinderClans - 28.10.2018, 21:01
Re: I have a question. - by TheToretto - 28.10.2018, 21:16
Re: I have a question. - by RogueDrifter - 28.10.2018, 21:22
Re: I have a question. - by TheToretto - 28.10.2018, 21:38
Re: I have a question. - by murilo2929 - 28.10.2018, 21:41
Re: I have a question. - by RogueDrifter - 28.10.2018, 22:10
Re: I have a question. - by KinderClans - 28.10.2018, 22:30
Re: I have a question. - by d3Pedro - 29.10.2018, 03:47

Forum Jump:


Users browsing this thread: 7 Guest(s)