Can't put NPC into vehicle
#5

First of all: Put your code between [code] tags, even if they are printfs. I don't have to explain why.
Second: Post your code. Without your code we can't help you, we don't know what u have already.

In order to successfully put a NPC in a vehicle, make sure the following is done in your script:
I will call the bot Mike in ths example.

PHP код:
new botvehicle;

public 
OnGameModeInit()
{
    
ConnectNPC("Mike","mode"); // since your NPC is already connected and standing on top of the vehicle you probably will not need this
    
    
botvehicle AddStaticVehicle(420000,001);

}

public 
OnPlayerSpawn(playerid)
{
    if(!
IsPlayerNPC(playerid)) return 0;

    new 
playername[64];
    
GetPlayerName(playerid,playername,64); // Getting the name of the bot

     
if(!strcmp(playername,"Mike",true)) {
           
PutPlayerInVehicle(playeridbotvehicle0);
    }
    return 
1;

If the code above does not work. Your problem is related to elsewhere in your script. Something is preventing the NPC from entering the vehicle.
Reply


Messages In This Thread
Can't put NPC into vehicle - by m4karow - 04.03.2018, 17:09
Re: Can't put NPC into vehicle - by m4karow - 04.03.2018, 21:54
Re: Can't put NPC into vehicle - by PepsiCola23 - 04.03.2018, 22:34
Re: Can't put NPC into vehicle - by m4karow - 05.03.2018, 14:35
Re: Can't put NPC into vehicle - by jasperschellekens - 05.03.2018, 14:46
Re: Can't put NPC into vehicle - by NaS - 05.03.2018, 16:14
Re: Can't put NPC into vehicle - by m4karow - 05.03.2018, 16:53
Re: Can't put NPC into vehicle - by NaS - 05.03.2018, 20:58
Re: Can't put NPC into vehicle - by m4karow - 06.03.2018, 14:32
Re: Can't put NPC into vehicle - by NaS - 06.03.2018, 14:44
Re: Can't put NPC into vehicle - by m4karow - 06.03.2018, 14:48
Re: Can't put NPC into vehicle - by NaS - 06.03.2018, 14:49
Re: Can't put NPC into vehicle - by m4karow - 06.03.2018, 14:51
Re: Can't put NPC into vehicle - by NaS - 06.03.2018, 14:53
Re: Can't put NPC into vehicle - by m4karow - 06.03.2018, 14:58
Re: Can't put NPC into vehicle - by m4karow - 06.03.2018, 15:20
Re: Can't put NPC into vehicle - by NaS - 06.03.2018, 15:39
Re: Can't put NPC into vehicle - by m4karow - 06.03.2018, 16:04
Re: Can't put NPC into vehicle - by NaS - 06.03.2018, 17:15
Re: Can't put NPC into vehicle - by m4karow - 06.03.2018, 17:22
Re: Can't put NPC into vehicle - by m4karow - 18.08.2018, 15:08
Re: Can't put NPC into vehicle - by NaS - 18.08.2018, 15:32
Re: Can't put NPC into vehicle - by m4karow - 18.08.2018, 15:55

Forum Jump:


Users browsing this thread: 5 Guest(s)