Help Npc
#1

Ok im new at this so dont make fun lol i made a recording and and put it in my recording file then i made a script and put that in my npcmodes file and in my fs file the added the name of it to my cfg file dont know if that what i was sposed to do but here my script it wont appear in game ?




#include <a_samp>

#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" bike npc");
print("--------------------------------------\n");
return 1;
}
#define RECORDING "bikegood" //This is the filename of your recording without the extension.
#define RECORDING_TYPE 1 //1 for in vehicle and 2 for on foot.

#include <a_npc>
main(){}
public OnRecordingPlaybackEnd() StartRecordingPlayback(RECORDING_TYPE, RECORDING);

#if RECORDING_TYPE == 1
public OnNPCEnterVehicle(vehicleid, seatid) StartRecordingPlayback(RECORDING_TYPE, RECORDING);
public OnNPCExitVehicle() StopRecordingPlayback();
#else
public OnNPCSpawn() StartRecordingPlayback(RECORDING_TYPE, RECORDING);
#endif

return 1;
public OnFilterScriptInit()
{
print("bike npc");
ConnectNPC("bikegood","bikegood");
return 1;
}
new MyFirstNPCVehicle; //Global variable!
new MyFirstNPCVehicle; //Global variable!
public OnFilterScriptInit()
{
print("my filterscript");
ConnectNPC("bikegood","bikegood");
MyFirstNPCVehicle = CreateVehicle(400, 0.0, 0.0, 5.0, 0.0, 3, 3, 5000);
return 1;
}
public OnPlayerSpawn(playerid)
{
if(IsPlayerNPC(playerid)) //Checks if the player that just spawned is an NPC.
{
new npcname[MAX_PLAYER_NAME];
GetPlayerName(playerid, npcname, sizeof(npcname)); //Getting the NPC's name.
if(!strcmp(npcname, "bikegood", true)) //Checking if the NPC's name is MyFirstNPC
{
PutPlayerInVehicle(playerid, MyFirstNPCVehicle, 0); //Putting the NPC into the vehicle we created for it.
}
return 1;
}
//Other stuff for normal players goes here!
return 1;
}

#endif
Reply
#2

?
Reply
#3

Follow the tutorial fully, then it should work.
If it still doesn't work, then you have done it wrong.
And please, post in the 0.3 Scripting section, as this is 0.3 only functions
Reply
#4

And what errors did you got?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)