FilterScript Errors
#1

Hello Everybody!

I'm creating a NPC Record but i got some erros, if someone can help me i will be great Sorry for my bad English.

Thats the FilterScript of NPC

PHP код:
#define RECORDING "Taxi" //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_TYPERECORDING);
#if RECORDING_TYPE == 1
  
public OnNPCEnterVehicle(vehicleidseatidStartRecordingPlayback(RECORDING_TYPERECORDING);
  public 
OnNPCExitVehicle() StopRecordingPlayback();
#else
  
public OnNPCSpawn() StartRecordingPlayback(RECORDING_TYPERECORDING);
#endif
public OnFilterScriptInit()
{
  print(
"my filterscript");
  
ConnectNPC("MyFirstNPC","Taxi");
  return 
1;
}
new 
MyFirstNPCVehicle//Global variable!
public OnFilterScriptInit()
{
  print(
"my filterscript");
  
ConnectNPC("MyFirstNPC","Taxi");
  
MyFirstNPCVehicle CreateVehicle(4000.00.05.00.0335000);
  return 
1;
}
public 
OnPlayerSpawn(playerid)
{
  if(
IsPlayerNPC(playerid)) //Checks if the player that just spawned is an NPC.
  
{
    new 
npcname[MAX_PLAYER_NAME];
    
GetPlayerName(playeridnpcnamesizeof(npcname)); //Getting the NPC's name.
    
if(!strcmp(npcname"MyFirstNPC"true)) //Checking if the NPC's name is MyFirstNPC
    
{
      
PutPlayerInVehicle(playeridMyFirstNPCVehicle0); //Putting the NPC into the vehicle we created for it.
    
}
    return 
1;
  }
  
//Other stuff for normal players goes here!
  
return 1;

Errors:

PHP код:
C:\Users\Bruno\Desktop\npc.pwn(15) : warning 235: public function lacks forward declaration (symbol "OnFilterScriptInit")
C:\Users\Bruno\Desktop\npc.pwn(18) : error 017undefined symbol "ConnectNPC"
C:\Users\Bruno\Desktop\npc.pwn(23) : warning 235: public function lacks forward declaration (symbol "OnFilterScriptInit")
C:\Users\Bruno\Desktop\npc.pwn(24) : error 021symbol already defined"OnFilterScriptInit"
C:\Users\Bruno\Desktop\npc.pwn(26) : error 017undefined symbol "ConnectNPC"
C:\Users\Bruno\Desktop\npc.pwn(27) : error 017undefined symbol "CreateVehicle"
C:\Users\Bruno\Desktop\npc.pwn(31) : warning 235: public function lacks forward declaration (symbol "OnPlayerSpawn")
C:\Users\Bruno\Desktop\npc.pwn(33) : error 017undefined symbol "IsPlayerNPC"
C:\Users\Bruno\Desktop\npc.pwn(39) : error 017undefined symbol "PutPlayerInVehicle"
C:\Users\Bruno\Desktop\npc.pwn(27) : warning 204symbol is assigned a value that is never used"MyFirstNPCVehicle"
Pawn compiler 3.2.3664              Copyright (c1997-2006ITB CompuPhase
6 Errors

Name of the NPC is Taxi.Rec

I did this Filterscript by this topic: https://sampforum.blast.hk/showthread.php?tid=95034
Reply
#2

bump
Reply
#3

bump
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)