Problem with command
#1

pawn Код:
CMD:hcspawnpos(playerid, params[]) {

    if(getPlayerBusinessID(playerid) >= 1) {

        new
            businessID = getPlayerBusinessID(playerid);

        if(businessVariables[businessID][bType] == 16) {
            if(IsPlayerInRangeOfPoint(playerid, 30.0, businessVariables[businessID][bExteriorPos][0], businessVariables[businessID][bExteriorPos][1], businessVariables[businessID][bExteriorPos][2])) {
                GetPlayerPos(playerid, businessVariables[businessID][bMiscPos][0], businessVariables[businessID][bMiscPos][1], businessVariables[businessID][bMiscPos][2]);
                SendClientMessage(playerid, COLOR_WHITE, "You have successfully altered the spawn position of your vehicle dealership business.");
            }
            else SendClientMessage(playerid, COLOR_GREY, "You must be within thirty metres of the exterior of your business.");
        }
        else SendClientMessage(playerid, COLOR_GREY, "You don't own a helicopter dealership.");
    }
    return 1;
}
Okey, I have a little problem with this command. ^^^^^
If I try to make Helicopter spawn position then it gives me this message all the time. "You must be within thirty metres of the exterior of your business."

Even if im from business like 100km away.


pawn Код:
CMD:bspawnpos(playerid, params[]) {

    if(getPlayerBusinessID(playerid) >= 1) {

        new
            businessID = getPlayerBusinessID(playerid);

        if(businessVariables[businessID][bType] == 5) {
            if(IsPlayerInRangeOfPoint(playerid, 30.0, businessVariables[businessID][bExteriorPos][0], businessVariables[businessID][bExteriorPos][1], businessVariables[businessID][bExteriorPos][2])) {
                GetPlayerPos(playerid, businessVariables[businessID][bMiscPos][0], businessVariables[businessID][bMiscPos][1], businessVariables[businessID][bMiscPos][2]);
                SendClientMessage(playerid, COLOR_WHITE, "You have successfully altered the spawn position of your vehicle dealership business.");
            }
            else SendClientMessage(playerid, COLOR_GREY, "You must be within thirty metres of the exterior of your business.");
        }
        else SendClientMessage(playerid, COLOR_GREY, "You don't own a vehicle dealership.");
    }
    return 1;
}
This is the original command.^^^^
Reply


Messages In This Thread
Problem with command - by Ld Est Ld - 20.01.2012, 14:47
Re: Problem with command - by Bogdan1992 - 20.01.2012, 14:50
Re: Problem with command - by Konstantinos - 20.01.2012, 15:13
Re: Problem with command - by Bogdan1992 - 20.01.2012, 15:35
Re: Problem with command - by Ld Est Ld - 20.01.2012, 15:44
Re: Problem with command - by Konstantinos - 20.01.2012, 15:48
Re: Problem with command - by Ld Est Ld - 20.01.2012, 15:58

Forum Jump:


Users browsing this thread: 1 Guest(s)