Help alittle.
#1

Problem. Well. The Animation of opening the door is going on evertime when I press 'enter' and everywhere. Doesn't matter if you are far away from the door. What I did wrong ?

Codes
Код:
    if(newkeys & KEY_SECONDARY_ATTACK)
    {
        if(IsPlayerInRangeOfPoint(playerid, 2.0, 1293.5813,-1020.5617,1085.9760))
        if(!IsACop(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You are not an SAPD Officer.");
        ApplyAnimation(playerid, "HEIST9", "Use_SwipeCard", 4.0, 0, 0, 0, 0, 0);
        {
            if(pddoor1opened == false)
            {
                MoveDynamicObject(pddoor1, 1294.01, -1021.09, 1084.99, 0.50);
                pddoor1opened = true;
                return 1;
            }
            else
            {
                MoveDynamicObject(pddoor1, 1292.85, -1021.09, 1084.99, 0.50);
                pddoor1opened = false;
        	   	return 1;
            }
        }

	}
Reply
#2

like
pawn Код:
if(IsPlayerInRangeOfPoint(playerid, 2.0, 1293.5813,-1020.5617,1085.9760))
    {
    if(newkeys & KEY_SECONDARY_ATTACK)
    {
        if(!IsACop(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You are not an SAPD Officer.");
        ApplyAnimation(playerid, "HEIST9", "Use_SwipeCard", 4.0, 0, 0, 0, 0, 0);
        {
            if(pddoor1opened == false)
            {
                MoveDynamicObject(pddoor1, 1294.01, -1021.09, 1084.99, 0.50);
                pddoor1opened = true;
                return 1;
            }
            else
            {
                MoveDynamicObject(pddoor1, 1292.85, -1021.09, 1084.99, 0.50);
                pddoor1opened = false;
                return 1;
            }
        }

    }
}
Reply
#3

Quote:
Originally Posted by mobiliz
Посмотреть сообщение
like
pawn Код:
if(IsPlayerInRangeOfPoint(playerid, 2.0, 1293.5813,-1020.5617,1085.9760))
    {
    if(newkeys & KEY_SECONDARY_ATTACK)
    {
        if(!IsACop(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You are not an SAPD Officer.");
        ApplyAnimation(playerid, "HEIST9", "Use_SwipeCard", 4.0, 0, 0, 0, 0, 0);
        {
            if(pddoor1opened == false)
            {
                MoveDynamicObject(pddoor1, 1294.01, -1021.09, 1084.99, 0.50);
                pddoor1opened = true;
                return 1;
            }
            else
            {
                MoveDynamicObject(pddoor1, 1292.85, -1021.09, 1084.99, 0.50);
                pddoor1opened = false;
                return 1;
            }
        }

    }
}
Dude! thats totally a wrong way! it wont fix a shit
Reply
#4

pawn Код:
if(newkeys & KEY_SECONDARY_ATTACK && IsPlayerInRangeOfPoint(playerid, 2.0, 1293.5813,-1020.5617,1085.9760))
    {
        if(!IsACop(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You are not an SAPD Officer.");
        {
            if(pddoor1opened == false)
            {
                MoveDynamicObject(pddoor1, 1294.01, -1021.09, 1084.99, 0.50);
                pddoor1opened = true;
                ApplyAnimation(playerid, "HEIST9", "Use_SwipeCard", 4.0, 0, 0, 0, 0, 0);
                return 1;
            }
            else
            {
                MoveDynamicObject(pddoor1, 1292.85, -1021.09, 1084.99, 0.50);
                pddoor1opened = false;
                ClearAnimations(playerid);
                return 1;
            }
        }

    }
EDIT: Sorry for double posting
Reply
#5

Quote:
Originally Posted by CROSS_Hunter
Посмотреть сообщение
Dude! thats totally a wrong way! it wont fix a shit
Sorry for being a noob then.

+ don't double post you should use the edit button.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)