Hey Leute,
ich wollte mir ein Carbot in meinen Script mit reinscripten, doch beim Compilieren steht da:
E:\Spiele\Rockstar Games\GTA San Andreas\samp03asvr_R4_win32\CARBOT.pwn(1) : fatal error 100: cannot read from file: "a_npc"
ich habe es bis jetzt noch nicht hinbekommen den Error zu beheben
Mein Script sieht so aus:
#include <a_npc>
new CARBOTCAR;
new botname[MAX_PLAYER_NAME];
#define RECORDING "CARBOT"
LosSantos
#define RECORDING_TYPE 1
type1main(){}
public OnRecordingPlaybackEnd()StartRecordingPlayback(RECORDING_TYPE, RECORDING);
public OnNPCEnterVehicle(vehicleid, seatid)StartRecordingPlayback(RECORDING_TYPE, RECORDING);
public OnNPCExitVehicle()StopRecordingPlayback();
public OnFilterScriptInit(GameModeInit)ConnectNPC("LS:PD-BSN-Airpot","CARBOT"); CARBOTCAR = CreateVehicle(420, 2000.0, 2000.0, 2000.0, 7.0, 0, 0, -1);
public OnPlayerSpawn(playerid){ if(IsPlayerNPC(playerid)) { GetPlayerName(playerid, botname, sizeof(botname)); if(!strcmp(botname, "LS:PD-BSN-Airpot", true)) { PutPlayerInVehicle(playerid, CARBOTCAR, 0); } } return 1; }
wäre cool wenn man mir weiterhelfen könnte