Dynamic Giftbox Bug
#2

pawn Код:
if(IsPlayerInAnyVehicle(playerid))
        {
            SendClientMessageEx(playerid, COLOR_GREY, "You must be on foot to use this command.");
            return 1;
        }
You are checking if the player is in a vehicle, if yes then you send this message..
pawn Код:
if(!IsPlayerInAnyVehicle(playerid))
        {
            SendClientMessageEx(playerid, COLOR_GREY, "You must be on foot to use this command.");
            return 1;
        }
Opposite.
Reply


Messages In This Thread
Dynamic Giftbox Bug - by Yander - 15.05.2014, 16:47
Re: Dynamic Giftbox Bug - by DaniceMcHarley - 15.05.2014, 16:54
Re: Dynamic Giftbox Bug - by Yander - 15.05.2014, 16:58
Re: Dynamic Giftbox Bug - by DaniceMcHarley - 15.05.2014, 16:58
Re: Dynamic Giftbox Bug - by Yander - 15.05.2014, 17:00
Re: Dynamic Giftbox Bug - by DaniceMcHarley - 15.05.2014, 17:07
Re: Dynamic Giftbox Bug - by Yander - 15.05.2014, 17:13
Re: Dynamic Giftbox Bug - by Yander - 15.05.2014, 17:17

Forum Jump:


Users browsing this thread: 1 Guest(s)