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

I use this script for testing because i want load zombies on my server. I trying a lot of days, but for me nothing works...

Code:
// ------------- NPC zombie test and example script
// RNPC 0.4 (26.6.2014) - Mauzen

// Use ConnectZombieBots(playerid, amount)
// to create <amount> zombie bots that keep following <playerid>
// They wont attack but can be killed for tests and stuff
// Either initialize MapAndreas properly, or go to line 78
// and change the last 1 in MoveRNPC to a 0
#define FILTERSCRIPT

#include <a_samp>
#include <rnpc>//Credits: Mauzen

new rnpcZombie[MAX_PLAYERS];
new rnpcZTimer[MAX_PLAYERS];

stock ConnectZombieBots(playerid, amount)
{
    new name[24];
    new id;
    // spawn the given amount of NPCs
    while(amount-- > 0)
	{
        format(name, 24, "Zombie_%d", 500-amount);
        id = ConnectRNPC(name);
        // Store their target player
        rnpcZombie[id] = playerid;
    }
}

public OnPlayerSpawn(playerid)
{
	if(IsPlayerNPC(playerid))
    {
		if (rnpcZombie[playerid] > 0)
		{
	        // Enable RNPC damage management
	        RNPC_SetShootable(playerid, 1);
	        RNPC_ToggleVehicleCollisionCheck(playerid, 1);

	        // Random skin for datz fun
	        SetPlayerSkin(playerid, random(299));

	        // Change name to avoid name collisions
	        new name[24];
	        format(name, 24, "Zombie_%d", playerid);
	        SetPlayerName(playerid, name);

	        // Spawn zombie somewhere in area around player
	        new Float:x, Float:y, Float:z;
	        GetPlayerPos(rnpcZombie[playerid], x, y, z);
	        x = x - 30.0 + random(60);
	        y = y - 30.0 + random(60);
	        // Set to position on ground
	        MapAndreas_FindZ_For2DCoord(x, y, z);
	        SetPlayerPos(playerid, x, y, z+0.7);

	        // If it was a respawn, kill the old timer
	        if (rnpcZTimer[playerid] > 0) KillTimer(rnpcZTimer[playerid]);
	        // Make him follow the player
	        rnpcZTimer[playerid] = SetTimerEx("RFollowPlayer", 5000, 1, "i", playerid);
	    }
    }
    #if defined RNPC_OnPlayerSpawn
            return RNPC_OnPlayerSpawn(playerid);
    #else
            return 1;
    #endif
}
#if defined _ALS_OnPlayerSpawn
        #undef OnPlayerSpawn
#else
        #define _ALS_OnPlayerSpawn
#endif
#define OnPlayerSpawn RNPCZ_OnPlayerSpawn
forward RNPCZ_OnPlayerSpawn(playerid);

forward RFollowPlayer(npcid);
public RFollowPlayer(npcid)
{
    if (IsPlayerConnected(rnpcZombie[npcid]))
	{
        new Float:x, Float:y, Float:z;
        GetPlayerPos(rnpcZombie[npcid], x, y, z);
        // Move RNPC to random point in area around target player
        MoveRNPC(npcid, x - 3.0 + random(600) / 100.0, y - 3.0 + random(600) / 100.0, z, RNPC_SPEED_RUN, 1);
    }
}
Anyone can help me with this please?

Plugin Loaded:
Quote:

[10:28:40] Loaded.
[10:28:40] Loading plugin: RNPC.so
[10:28:40] RNPC V0.4.1 by Mauzen (03.12.2014)

But then this:

Code:
[10:30:56] [debug] Run time error 3: "Stack/heap collision (insufficient stack size)"
[10:30:56] [debug]  Stack pointer (STK) is 0xB758, heap pointer (HEA) is 0xB71C
[10:30:56] [debug] AMX backtrace:
[10:30:56] [debug] #0 00002ccc in public RNPC_OnPlayerSpawn (0) from zombie.amx
I have 200 NPCs und 300maxplayers in server.cfg

After i searching about:
Code:
Run time error 3: "Stack/heap collision (insufficient stack size)
i remove this from script:

Code:
    #if defined RNPC_OnPlayerSpawn
            return RNPC_OnPlayerSpawn(playerid);
    #else
            return 1;
    #endif
}
#if defined _ALS_OnPlayerSpawn
        #undef OnPlayerSpawn
#else
        #define _ALS_OnPlayerSpawn
#endif

#define OnPlayerSpawn RNPCZ_OnPlayerSpawn
forward RNPCZ_OnPlayerSpawn(playerid);
and put in:
Code:
public OnPlayerSpawn(playerid)
this:

Code:
public OnPlayerSpawn(playerid)
{
	if(IsPlayerNPC(playerid))
    {
but now npcs doesnt join??
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: 1 Guest(s)