How to destroy object when touch it. [+REP]
#4

Quote:
Originally Posted by Ralfie
Посмотреть сообщение
pawn Код:
new Float:ObjectX, ObjectY, ObjectZ;
new OTimer;
forward removeObjects();

CMD:lol(playerid, paramas[])
{
    new Float:x, Float:y, Float:z, Float:a;
    GetPlayerFacingAngle(playerid, a);
    GetPlayerPos(playerid, x, y, z);
    CreateObject(3409, x, y, z - 1.3, 0.0, 0.0, a + 90);
    ObjectX = x;
    ObjectY = y;
    ObjectZ = z;
    OTimer = SetTimer("removeObjects", 1000, true);
    return 1;
}

public removeObjects()
{
    foreach (new i : Player) //use normal loop if ur not using foreach
    {
        if(IsPlayerInRangeOfPoint(i, 1, ObjectX, ObjectY, ObjectZ))
        {
            //destroy the objects, hes very close to it, send a message etc.
            KillTimer(OTimer);
        }
    }
    return 1;
}
Hmm... i get 2 warning, idk why
Код:
C:\Users\Monster\Desktop\Eesti Fun Server\gamemodes\EFS.pwn(670) : warning 213: tag mismatch
C:\Users\Monster\Desktop\Eesti Fun Server\gamemodes\EFS.pwn(671) : warning 213: tag mismatch
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Warnings.
Reply


Messages In This Thread
How to destroy object when touch it. [+REP] - by finelaq - 07.09.2014, 08:21
Re: How to destroy object when touch it. [+REP] - by MasonSFW - 07.09.2014, 08:31
Re: How to destroy object when touch it. [+REP] - by finelaq - 07.09.2014, 08:33
Re: How to destroy object when touch it. [+REP] - by finelaq - 07.09.2014, 08:39
Re: How to destroy object when touch it. [+REP] - by Evocator - 07.09.2014, 08:42
Re: How to destroy object when touch it. [+REP] - by finelaq - 07.09.2014, 08:45

Forum Jump:


Users browsing this thread: 3 Guest(s)