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

You can't do NPC damage detection like that in fact no NPC to date that I know of can directly triggle OnPlayerTakeDamage() FCNPC will trigger OnPlayerGiveDamage() however. Anyways to do hit detection you need to get a little more creative fortunately for you I've written a few functions to take care of this problem.

This detects when a player shoots a weapon (Doesn't work for melee weapons)
pawn Code:
#include <YSI\y_hooks>

forward OnPlayerShoot(playerid,weaponid,ammo);

new OldAmmo[MAX_PLAYERS], OldWeap[MAX_PLAYERS];
new CurrAmmo[MAX_PLAYERS], CurrWeap[MAX_PLAYERS];

hook OnPlayerUpdate(playerid)
{
    // Get the current weapon and ammo
    CurrWeap[playerid] = GetPlayerWeapon(playerid);
    CurrAmmo[playerid] = GetPlayerAmmo(playerid);

    // Player still has old weapon does this weapon now have less ammo?
    if(CurrWeap[playerid] == OldWeap[playerid] && CurrAmmo[playerid] < OldAmmo[playerid])
    {
        CallLocalFunction( "OnPlayerShoot", "iii", playerid, CurrWeap[playerid], CurrAmmo[playerid]);
    }
   
    OldWeap[playerid] = CurrWeap[playerid];
    OldAmmo[playerid] = CurrAmmo[playerid];
    return 1;
}
Now we need some functions to detect when a player shoots a NPC, basically what you do is loop through all your NPCs every time a player shoots and if one is streamed in you check if there was a bullet collision. All you really need to know here is sx, sy, sz is your NPC position which is where the collision check sphere will be created fScale will scale your shooting vector the higher the value the further the collision detection will check and radius is your sphere size 1.0 is pretty good for NPCs.


pawn Code:
// Checks if a players bullet intersects a sphere
stock BulletCollisionSphere(playerid, weapon, Float:sx, Float:sy, Float:sz, Float:fScale = 30.0, Float:radius = 1.0)
{
    new
        Float:fP[3],
        Float:fV[3],
        Float:object[3],
        Float:sphere[3];

    sphere[0] = sx, sphere[1] = sy, sphere[2] = sz;

    GetPlayerCameraPos(playerid, fP[0], fP[1], fP[2]);
    GetPlayerCameraFrontVector(playerid, fV[0], fV[1], fV[2]);

    // Compensate (This is not perfect yet any ideas anyone?)
    if(weapon != 34 && weapon != 35 && weapon != 36)
    {
        new Float:FacingA;
        GetPlayerFacingAngle(playerid, FacingA);
        FacingA -= 90.0;
        if(FacingA < 0.0) FacingA += 360.0;
        else if(FacingA > 360.0) FacingA -= 360.0;

        fP[0] = (fP[0] + 0.6 * floatsin(-FacingA,degrees));
        fP[2] += 1.2;
    }

    object[0] = fP[0] + floatmul(fV[0], fScale);
    object[1] = fP[1] + floatmul(fV[1], fScale);
    object[2] = fP[2] + floatmul(fV[2], fScale);

    // Check if line intersects sphere
    if(RaySphere(fP, object, sphere, radius)) return 1;
    return 0;
}

// This checks to see if a line intersects a sphere
stock RaySphere(Float:p1[3],Float:p2[3],Float:sc[3],Float:r)
{
    new Float:a, Float:b, Float:c;
    new Float:bb4ac;
    new Float:dp[3];

    dp[0] = p2[0] - p1[0];
    dp[1] = p2[1] - p1[1];
    dp[2] = p2[2] - p1[2];
    a = dp[0] * dp[0] + dp[1] * dp[1] + dp[2] * dp[2];
    b = 2 * (dp[0] * (p1[0] - sc[0]) + dp[1] * (p1[1] - sc[1]) + dp[2] * (p1[2] - sc[2]));
    c = sc[0] * sc[0] + sc[1] * sc[1] + sc[2] * sc[2];
    c += p1[0] * p1[0] + p1[1] * p1[1] + p1[2] * p1[2];
    c -= 2 * (sc[0] * p1[0] + sc[1] * p1[1] + sc[2] * p1[2]);
    c -= r * r;
    bb4ac = b * b - 4 * a * c;
    if(bb4ac < 0) return 0;
    return 1;
}
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: 2 Guest(s)