SA-MP Forums Archive
Zombie Bots script - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Zombie Bots script (/showthread.php?tid=535170)



Zombie Bots script - MasonSFW - 02.09.2014

Can someone send me Zombie bot script

Pleasee


Re: Zombie Bots script - Beckett - 02.09.2014

What zombie bot?


Re: Zombie Bots script - Clad - 02.09.2014

That is NPC.


Re: Zombie Bots script - IceCube! - 02.09.2014

http://lmgtfy.com/?q=Zombie+NPC+SAMP


Re: Zombie Bots script - M0HAMMAD - 02.09.2014

Here You Go ...
pawn Код:
//OnGameModeInit
ConnectNPC("Zombie","ZombieNPC");
//The NPC script name that is located in the npcmodes folder (without the .amx extension). For Zombie1
//-----
//OnPlayerSpawn
if(IsPlayerNPC(playerid))
{
    if(strcmp(PlayerName(playerid), "Zombie") ==0)
    {
        SetPlayerPos(playerid,NPCPos);
        SetPlayerFacingAngle(playerid, NPCFacingAngle);
        SetPlayerSkin(playerid,NPCSkin);
        SetPlayerColor(playerid,0xFF000000); // It's In Invisible
    }
    return 1;
}



Re: Zombie Bots script - VinPure - 02.09.2014

Here use plugin RNPC
https://sampforum.blast.hk/showthread.php?tid=535163