[Plugin] RNPC - Recordfree NPCs | Control NPCs without recording | DEV
#50

Quote:

why not if(n_mapAndreas > n_Z) ?

For does not bug occur with small increases!

Quote:

Problems with this

pawn Code:
MapAndreas_FindZ_For2DCoord(p_X, p_Y, p_mapAndreas);

that is called pretty early in the movie... (should be called after the height check)

Oh Yeap, thanks !! (I had not noticed haha )

pawn Код:
enum info { Float:nX, Float:nY, Float:nZ };

new pathFind[MAX_ZUMBIS][info];
OnUpdate(playerid, npcid);
public OnUpdate(playerid, npcid) {

    static
            Float:p_X,
            Float:p_Y,
            Float:p_Z,
            Float:n_X,
            Float:n_Y,
            Float:n_Z,
            Float:n_A,
            Float:b_A,
            Float:p_mapAndreas,
            Float:n_mapAndreas;

    GetPlayerPos(playerid, p_X, p_Y, p_Z);
    GetPlayerPos(npcid,    n_X, n_Y, n_Z);

    GetPlayerFacingAngle(npcid, n_A);
    b_A = atan2(n_Y - p_Y, n_X - p_X);
   
    if(pathFind[npcid][nX] == 0.0 && pathFind[npcid][nY] == 0.0)  {

        MoveRNPC(npcid, p_X, p_Y, p_Z, 0.0065);

        n_X += (5.0 * floatsin(-n_A, degrees)),
        n_Y += (5.0 * floatcos(-n_A, degrees));

        MapAndreas_FindZ_For2DCoord(n_X, n_Y, n_mapAndreas);

        if(n_mapAndreas - n_Z > 2.5) {

            MapAndreas_FindZ_For2DCoord(p_X, p_Y, p_mapAndreas);
                   
            // possibility of have building on front off npcid
           
            if( (p_Z != n_mapAndreas) && (n_mapAndreas != p_mapAndreas ) ) {
           
                SendClientMessageToAll(-1, "I FIND BUILDING OF FRONT NPC"); //debug
                // have building in front off player ..

                static
                    Float:n_Deg, Float:b_X,  Float:b_Y,  Float:b_Z;

                n_Deg = 0;

                // round for find alternative path (right side) (made you left side :mrgreen:)

                n_X -= (5.0 * floatsin(-n_A, degrees)),
                n_Y -= (5.0 * floatcos(-n_A, degrees));

                while(n_Deg < 90.0) {

                    n_Deg  += 4.5;

                    // here right, left side.
                    // need fix (working +- haha :p)
                    if(b_A > 180.0) {
                        b_X = n_X + (10.0 * floatsin(-n_A-n_Deg, degrees)),
                        b_Y = n_Y + (10.0 * floatcos(-n_A-n_Deg, degrees));
                    }
                    else {
                        b_X = n_X + (10.0 * floatsin(-n_A+n_Deg, degrees)),
                        b_Y = n_Y + (10.0 * floatcos(-n_A+n_Deg, degrees));
                    }

                    MapAndreas_FindZ_For2DCoord(b_X, b_Y, b_Z);

                    if(p_mapAndreas != b_Z) {

                        SendClientMessageToAll(-1, "I FIND ALTERNATIVE PATH");
                        MoveRNPC(npcid, b_X, b_Y, p_mapAndreas, 0.0065);

                        pathFind[npcid][nX] = b_X;
                        pathFind[npcid][nY] = b_Y;
                        pathFind[npcid][nZ] = b_Z;
                    }
                }
            }
        }
    }
    else {
        if(IsPlayerInRangeOfPoint(npcid, 1.0, pathFind[npcid][nX], pathFind[npcid][nY], pathFind[npcid][nZ])) {

            pathFind[npcid][nX] = 0.0;
            pathFind[npcid][nY] = 0.0;
            pathFind[npcid][nZ] = 0.0;

            MoveRNPC(npcid, p_X, p_Y, p_Z, 0.0115);
        }
    }
    return true;
}


I'm thinking of something interesting. On putting +90-90 it create a triangle:
The invalid path is hypotenuse and the "adjacent" side will always be the new path (interestingly, it is this part, is the size of the construction .. )

I tested a lot, it works with buildings. The problem is that if the NPC is under one roof and the player not. The NPC BUG, or stairs for example

The algorithm is correct, but there are exceptions in San Andreas. I think one way to deal with these exceptions, is to check a given area is a building.

For checking a point is a building. I think we do four points and check MapAndreas Z POS, if the same Z POS in four points. Yes, is a building

Example:
PHP код:
static
    
Float:4points,
    
i,
    
Float:zPoint;
for(
0!= 4i++) {
    
pontoX edificioX + (5.0 floatsin(-90.0 idegrees)),
    
pontoY edificioY +(5.0 *  floatcos(-90.0 idegrees));
    
MapAndreas_FindZ_For2DCoord(pontoXpontoYzPoint);
    
4points += zPoint;
}
if(
floatround(4points) % 90 == 0) {
    
// 4 points have the same MapAndreas Z Pos
    //   x
    // x   x
    //   x
    // 5 * 4 = 20 metters
    

Reply


Messages In This Thread
RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 01.07.2012, 15:21
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by WillyP - 01.07.2012, 15:26
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by zgintasz - 01.07.2012, 15:30
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Michael@Belgium - 01.07.2012, 15:35
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kar - 01.07.2012, 16:24
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Joe Staff - 01.07.2012, 18:07
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 01.07.2012, 20:48
AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by BloodyEric - 01.07.2012, 20:50
Re: AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 01.07.2012, 20:52
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 01.07.2012, 20:59
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by CaptainMactavish - 02.07.2012, 02:15
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by miikeyy45 - 02.07.2012, 05:15
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Lorenc_ - 02.07.2012, 05:33
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Hiddos - 02.07.2012, 06:58
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by AIped - 02.07.2012, 07:15
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 02.07.2012, 08:16
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Lorenc_ - 02.07.2012, 09:01
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by int3s0 - 02.07.2012, 09:13
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by AIped - 02.07.2012, 09:37
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Babul - 02.07.2012, 10:16
AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Meta - 02.07.2012, 11:50
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by AIped - 02.07.2012, 12:37
Re: AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 02.07.2012, 14:02
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 02.07.2012, 16:31
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 02.07.2012, 17:03
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 02.07.2012, 17:14
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 02.07.2012, 18:10
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 02.07.2012, 19:53
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 02.07.2012, 21:40
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 02.07.2012, 22:27
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Joe Staff - 02.07.2012, 23:34
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 03.07.2012, 13:50
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by AIped - 03.07.2012, 13:51
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 03.07.2012, 13:55
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 03.07.2012, 14:59
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kar - 03.07.2012, 16:13
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 03.07.2012, 16:47
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 03.07.2012, 16:50
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by vyper - 03.07.2012, 17:11
AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by BloodyEric - 03.07.2012, 20:29
Re: AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 03.07.2012, 23:29
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 04.07.2012, 20:59
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kar - 04.07.2012, 21:11
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 04.07.2012, 21:19
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kar - 04.07.2012, 21:25
Re : RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by ipsBruno - 15.07.2012, 00:52
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by iKeN - 15.07.2012, 00:54
Re : RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by ipsBruno - 15.07.2012, 00:56
Re: Re : RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kar - 15.07.2012, 04:16
Re : RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by ipsBruno - 15.07.2012, 04:23
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by zgintasz - 15.07.2012, 07:45
Re : Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by ipsBruno - 15.07.2012, 08:31
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by rbN. - 15.07.2012, 14:49
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 15.07.2012, 18:23
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Patrik356b - 16.07.2012, 00:38
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kar - 16.07.2012, 02:12
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by SampLoverNo123 - 16.07.2012, 07:58
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Manowar - 16.07.2012, 10:27
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 16.07.2012, 10:59
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Marricio - 17.07.2012, 01:12
Re : RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by ipsBruno - 17.07.2012, 01:29
Re: Re : RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 17.07.2012, 09:38
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by AIped - 17.07.2012, 15:42
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Babul - 17.07.2012, 15:51
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 17.07.2012, 15:59
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by AIped - 17.07.2012, 16:15
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Marricio - 17.07.2012, 22:02
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Babul - 17.07.2012, 22:14
Re : RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by ipsBruno - 17.07.2012, 23:41
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by rbN. - 18.07.2012, 11:41
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by rbN. - 18.07.2012, 14:10
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 18.07.2012, 15:02
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by rbN. - 18.07.2012, 15:26
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 18.07.2012, 15:40
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 18.07.2012, 15:41
Re: Respuesta: Re : RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 26.07.2012, 09:38
Re: Respuesta: Re : RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 26.07.2012, 10:52
Re: Respuesta: Re : RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by ipsBruno - 26.07.2012, 14:31
AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Reloadet! - 27.07.2012, 21:21
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by paulommu - 28.07.2012, 17:42
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kar - 28.07.2012, 18:34
AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kwashiorkor - 30.07.2012, 16:57
Re: AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by rbN. - 30.07.2012, 19:03
AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kwashiorkor - 30.07.2012, 19:13
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by rbN. - 31.07.2012, 21:35
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 05.01.2013, 23:18
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 14.01.2013, 18:28
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 14.01.2013, 18:54
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 14.01.2013, 19:12
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 14.01.2013, 19:26
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by [HLF]Southclaw - 17.01.2013, 16:01
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by V1ceC1ty - 17.01.2013, 16:41
AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Arendium - 19.01.2013, 19:33
Re: AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 21.01.2013, 09:12
Re: AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Lorenc_ - 21.01.2013, 10:17
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 26.02.2013, 10:46
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by leong124 - 26.02.2013, 15:34
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 26.02.2013, 17:54
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by leong124 - 26.02.2013, 19:36
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 26.02.2013, 20:14
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by AIped - 21.03.2013, 07:39
AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Logan_Adams - 22.03.2013, 15:56
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by AIped - 22.03.2013, 17:14
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 22.03.2013, 19:12
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 22.03.2013, 23:42
Re: Respuesta: Re: Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 02.05.2013, 15:47
Respuesta: Re: Respuesta: Re: Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by xDarkuzSx - 02.05.2013, 18:02
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by justinnater - 04.05.2013, 10:36
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 04.05.2013, 12:26
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kwarde - 04.05.2013, 18:47
Respuesta: Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by xDarkuzSx - 04.05.2013, 20:33
Re: Respuesta: Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kwarde - 06.05.2013, 16:07
Respuesta: Re: Respuesta: Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by xDarkuzSx - 07.05.2013, 17:28
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 07.05.2013, 19:08
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Marricio - 22.05.2013, 20:55
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by LikeNPC - 25.05.2013, 11:19
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by xDarkuzSx - 31.05.2013, 01:57
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 31.05.2013, 12:29
Respuesta: Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by xDarkuzSx - 01.06.2013, 15:59
Re: Respuesta: Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 01.06.2013, 17:50
Re: Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 01.06.2013, 22:10
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by LikeNPC - 02.06.2013, 03:10
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Guest123 - 02.06.2013, 14:17
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Fitri - 02.06.2013, 14:27
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by OrMisicL - 02.06.2013, 14:34
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Fitri - 02.06.2013, 22:52
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 03.06.2013, 15:33
Respuesta: Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Gryphus One - 03.06.2013, 16:01
Re: Respuesta: Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 03.06.2013, 18:32
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 03.06.2013, 20:54
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by MP2 - 03.06.2013, 22:36
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 03.06.2013, 23:17
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by MP2 - 03.06.2013, 23:44
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mteck - 12.06.2013, 21:52
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 12.06.2013, 22:24
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by SnL - 15.06.2013, 22:28
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pooh7 - 15.06.2013, 22:52
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by SnL - 15.06.2013, 23:09
Re: Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pooh7 - 17.06.2013, 06:32
Re: Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 17.06.2013, 08:44
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by pamdex - 23.06.2013, 19:19
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by LikeNPC - 25.06.2013, 07:45
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by xeon_inside - 17.07.2013, 20:32
Re: Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by LikeNPC - 18.07.2013, 09:09
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 25.09.2013, 19:11
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by magnusburton - 25.09.2013, 19:39
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 25.09.2013, 19:59
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by magnusburton - 25.09.2013, 22:15
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 25.09.2013, 22:31
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Riddy - 03.10.2013, 13:00
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Swedky - 07.10.2013, 03:50
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 07.10.2013, 04:24
Respuesta: Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Swedky - 07.10.2013, 04:28
Re: Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 07.10.2013, 15:43
Respuesta: Re: Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Swedky - 07.10.2013, 15:55
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 07.10.2013, 17:11
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Swedky - 07.10.2013, 21:51
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Swedky - 10.10.2013, 04:07
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Swedky - 16.10.2013, 03:06
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 16.10.2013, 03:35
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TonyII - 16.10.2013, 22:10
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 19.10.2013, 02:38
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Swedky - 19.10.2013, 03:41
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TonyII - 19.10.2013, 19:33
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by [D]ry[D]esert - 26.05.2014, 19:53
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 26.05.2014, 22:20
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 26.05.2014, 22:44
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 27.05.2014, 00:36
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by [D]ry[D]esert - 27.05.2014, 07:54
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 27.05.2014, 14:19
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 27.05.2014, 16:20
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 27.05.2014, 19:40
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by TheArcher - 27.05.2014, 21:09
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 28.05.2014, 00:08
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by [D]ry[D]esert - 09.06.2014, 18:21
Respuesta: Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Swedky - 09.06.2014, 18:31
Re: Respuesta: Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by [D]ry[D]esert - 09.06.2014, 18:48
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 09.06.2014, 19:19
Re: Respuesta: Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 09.06.2014, 22:07
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kar - 10.06.2014, 00:05
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kar - 10.06.2014, 15:55
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by [D]ry[D]esert - 10.06.2014, 16:16
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Swedky - 13.06.2014, 02:57
Re: Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 13.06.2014, 15:13
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 26.06.2014, 18:49
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 26.06.2014, 20:08
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 26.06.2014, 20:38
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 26.06.2014, 20:59
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by EnzoMetlc - 26.06.2014, 22:44
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kitten - 26.06.2014, 23:11
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 26.06.2014, 23:41
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 27.06.2014, 08:55
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by pamdex - 27.06.2014, 09:33
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 27.06.2014, 09:49
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Pottus - 27.06.2014, 11:50
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 27.06.2014, 13:39
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Crayder - 28.06.2014, 05:53
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 28.06.2014, 18:25
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Reynolds - 06.07.2014, 15:13
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Kar - 06.07.2014, 22:34
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 07.07.2014, 09:04
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Reynolds - 12.07.2014, 23:38
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 12.07.2014, 23:44
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Reynolds - 13.07.2014, 00:25
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 13.07.2014, 14:15
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Reynolds - 14.07.2014, 22:45
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by KoZaKo - 18.07.2014, 13:58
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 19.07.2014, 10:05
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by KoZaKo - 19.07.2014, 16:52
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by DRIFT_HUNTER - 14.09.2015, 10:05
AW: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by DerShoxy - 19.09.2015, 07:32
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 21.09.2015, 22:21
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Gammix - 22.09.2015, 03:45
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by pamdex - 28.09.2015, 05:54
Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Swedky - 06.10.2015, 22:56
Re: Respuesta: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Onfroi - 06.10.2015, 23:03
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 07.10.2015, 01:22
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Unrea1 - 07.10.2015, 02:40
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Hybris - 07.10.2015, 03:48
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Xolokos - 07.05.2016, 16:07
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by PrettyDiamond - 06.12.2016, 08:46
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by WildWave - 20.03.2017, 17:56
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Ritzy2K - 02.12.2017, 08:17
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Radless - 04.08.2020, 14:44
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 08.08.2020, 00:43
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by BigSmokeBB - 19.08.2020, 21:49
Re: RNPC - Recordfree NPCs | Control NPCs without recording | DEV - by Mauzen - 23.08.2020, 20:11

Forum Jump:


Users browsing this thread: 5 Guest(s)