22.08.2011, 17:33
Simple BigEar Hydra NPC
Version: 1
Here's a very simple NPC record of Hydra in BigEar.
Bug: No one
Here the download file .rec
http://www.mediafire.com/?8t9qhsgdla2bghc
Here the download file.pwn
http://www.mediafire.com/?6k180dx1a15k9gq
Put file hydra.rec in npcmodes/recordings folder
Put file hydra.pwn /npcmodes and compil it
Location bot: BigEar
After Go in you gamemode and put this on top of OnGameModeInit:
Put this under OnGameModeInit
Again sorry my lousy english...
Version: 1
Here's a very simple NPC record of Hydra in BigEar.
Bug: No one
Here the download file .rec
http://www.mediafire.com/?8t9qhsgdla2bghc
Here the download file.pwn
http://www.mediafire.com/?6k180dx1a15k9gq
Put file hydra.rec in npcmodes/recordings folder
Put file hydra.pwn /npcmodes and compil it
Location bot: BigEar
After Go in you gamemode and put this on top of OnGameModeInit:
Code:
new hydradriftbot;
Code:
ConnectNPC("HydraDriftBot","hydra");
hydradriftbot=CreateVehicle(520, 0.0, 0.0, 5.0, 0.0, 3, 3, 5000);
Put this under OnPlayerSpawn
if(IsPlayerNPC(playerid))
{
new npcname[MAX_PLAYER_NAME];
GetPlayerName(playerid, npcname, sizeof(npcname));
if(!strcmp(npcname, "HydraDriftBot", true))
{
PutPlayerInVehicle(playerid, hydradriftbot, 0);
}

