Hallo
Ich habe ein Problem mit meinem Bots...
Bis jetzt hatte ich immer einen Bot laufen, nun wollte ich einen zweiten Bot hinzufügen...
Die Bots connecten auch richtig, landen dann allerdings ohne alles am Spawn.
die news für die bots
new Bus_Bot;
new SF_Bot;
OnGamemodeinit
ConnectNPC("Bus_Bot(LS)","Bus_Bot");
Bus_Bot = CreateVehicle(437, 1000.0,1000.0, 1000.0, 0.0, 10, 1, -1);
ConnectNPC("Bus_Bot(SF)","SF_Bot");
SF_Bot = CreateVehicle(437, 1000.0,1000.0, 1000.0, 0.0, 10, 1, -1);
OnPlayerSpawn:
if(IsPlayerNPC(playerid))
{
new botname[MAX_PLAYER_NAME];
GetPlayerName(playerid, botname, sizeof(botname));
if(!strcmp(botname, "Bus_Bot", true)) //LS Bus
{
PutPlayerInVehicle(playerid, Bus_Bot, 0);
}
if(!strcmp(botname, "SF_Bot", true)) //SF Bus
{
PutPlayerInVehicle(playerid, SF_Bot, 0);
}
}
Hoffe, ihr könnt mir sagen was ich falsch gemacht hab?
LG
Phyber