Can't put NPC into vehicle
#10

Quote:
Originally Posted by m4karow
Посмотреть сообщение
of course no, becouse the npc does not react for putplayerinvehicle. i've loaded the default SA-MP 'npctest' npc file, and all of the callbacks wont called i does not know, why. i've put the code into the default bare gamemode too and the npc was playing back the recording well but with addstatisvehicle, (i did not tried createvehicle) so the problem is in my mode. but what could cause this? it can't be removed by a timer becouse the removing was soooo fast. maybe a callback can cause this? i've deactivated all of the anticheat and nothing changed... i'm so puzzled... this is my first npc that driving a vehicle and i'm just suffer with
PutPlayerInVehicle must be used to put the NPC in a vehicle. This NPC will be in the vehicle then, but since NPCs don't sync any data except when playing back a recording, it looks like it isn't in.

When putting an NPC into a Vehicle, it will then call the callback OnNPCEnterVehicle() in the NPC Mode. Here you have to start the recording (it must be a vehicle recording).

Код:
public OnNPCEnterVehicle()
{
StartRecordingPlayback(PLAYER_RECORDING_TYPE_DRIVER, "myrecording");
}
If this does not work make sure callbacks like OnPlayerStateChange do not react for NPCs (it could potentially be removed from the vehicle again).
You can test this by adding

Код:
if(IsPlayerNPC(playerid)) return 1;
to the beginning of the callback.
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: 2 Guest(s)