/entergarage problem
#1

as i said before i made a garage system...
But /entergarage is bugged
When you are near to a garage, you must enter but it don't work, it says "You are not near to your garage entrance"
"You don't own a garage"

Codes of /entergarage:
pawn Код:
CMD:entergarage(playerid, params[])
{
    for(new h=1; h<MAX_GARAGE; h++)
    {
        new garageid;
        if(GarageInfo[playerid][gOwned] == 1 )
        {
            if(IsPlayerInRangeOfPoint(playerid,2.0,GarageInfo[garageid][gExteriorX], GarageInfo[garageid][gExteriorY], GarageInfo[garageid][gExteriorZ]) )
            {
                    SetPlayerPos(playerid,GarageInfo[garageid][gInteriorX],GarageInfo[garageid][gInteriorY],GarageInfo[garageid][gInteriorZ]);
                    GameTextForPlayer(playerid, "~w~Welcome to your garage!", 5000, 3);
            }
            if(h == MAX_GARAGE-1)
            {
                SendClientMessage(playerid, 0x33CCFFAA, "You are not near to your garage entrance! ");
            }
        }
        if(h == MAX_GARAGE-1)
        {
            SendClientMessage(playerid, 0x33CCFFAA, "You don't own a garage.");
        }
    }
    return 1;
}
Reply
#2

You cannot use
if and if again, you need to use if and then else if I belive.
Correct me if im wrong
Reply
#3

You sure this works?
Reply
#4

Zigonja is partly correct, there is no difference between using them both except that else if will only be called once the if statement above returns a false value. It works the same way as using else.
Reply
#5

Try like this
pawn Код:
CMD:entergarage(playerid, params[])
{
    for(new h = 1; h < MAX_GARAGE; h++)
    {
        if(GarageInfo[h][gOwned] == 1 )
        {
            if(IsPlayerInRangeOfPoint(playerid,2.0,GarageInfo[h][gExteriorX], GarageInfo[h][gExteriorY], GarageInfo[h][gExteriorZ]) )
            {
                    SetPlayerPos(playerid,GarageInfo[garageid][gInteriorX],GarageInfo[garageid][gInteriorY],GarageInfo[garageid][gInteriorZ]);
                    GameTextForPlayer(playerid, "~w~Welcome to your garage!", 5000, 3);
            }
            else
            {
                SendClientMessage(playerid, 0x33CCFFAA, "You are not near to your garage entrance! ");
            }
        }
        else
        {
            SendClientMessage(playerid, 0x33CCFFAA, "You don't own a garage.");
        }
    }
    return 1;
}
Reply
#6

It was like that but Not working too
Reply
#7

Tell me, what was wrong with this one, what kind of bug it was?
Reply
#8

Spam of You are not near to a garage and you don't own a garage
in 100 lines in the chat i think
Reply
#9

Im using system like this one... for my bizz system... try this one:

pawn Код:
CMD:entergarage(playerid, params[])
{
    for(new h = 0; h < (GarageInfo); h++)
    {
        if(GarageInfo[h][gOwned] == 1 )
        {
            if(IsPlayerInRangeOfPoint(playerid,2.0,GarageInfo[h][gExteriorX], GarageInfo[h][gExteriorY], GarageInfo[h][gExteriorZ]) )
            {
                    SetPlayerPos(playerid,GarageInfo[garageid][gInteriorX],GarageInfo[garageid][gInteriorY],GarageInfo[garageid][gInteriorZ]);
                    GameTextForPlayer(playerid, "~w~Welcome to your garage!", 5000, 3);
            }
            else
            {
                SendClientMessage(playerid, 0x33CCFFAA, "You are not near to your garage entrance! ");
            }
        }
        else
        {
            SendClientMessage(playerid, 0x33CCFFAA, "You don't own a garage.");
        }
    }
    return 1;
}
Problem in your code is, "GarageInfo[h][gOwned]", you got smthing like this "PlayerInfo[playerid][pGarageKey]"?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)