npc problems
#10

Erm..Same name
Replace this
pawn Код:
public OnFilterScriptInit()
{
  print("my filterscript");
  ConnectNPC("MyFirstNPC","area51tank1");
  ConnectNPC("MyFirstNPC","area51hunter1");
  MyFirstNPCVehicle = CreateVehicle(432, 0.0, 0.0, 5.0, 0.0, 3, 3, 5000);
  MySecondNPCVehicle = CreateVehicle(425, 0.0, 0.0, 5.0, 0.0, 3, 3, 5000);
  return 1;
}
To
pawn Код:
public OnFilterScriptInit()
{
  print("my filterscript");
  ConnectNPC("MyFirstNPC","area51tank1");
  ConnectNPC("MySecondNPC","area51hunter1");
  MyFirstNPCVehicle = CreateVehicle(432, 0.0, 0.0, 5.0, 0.0, 3, 3, 5000);
  MySecondNPCVehicle = CreateVehicle(425, 0.0, 0.0, 5.0, 0.0, 3, 3, 5000);
  return 1;
}
Reply


Messages In This Thread
npc problems - by manchestera - 16.10.2011, 15:27
Re: npc problems - by Kostas' - 16.10.2011, 15:34
Re: npc problems - by manchestera - 16.10.2011, 16:41
Re: npc problems - by Kostas' - 16.10.2011, 16:51
Re: npc problems - by manchestera - 16.10.2011, 17:03
Re: npc problems - by Kostas' - 16.10.2011, 17:08
Re: npc problems - by manchestera - 16.10.2011, 17:18
Re: npc problems - by Kostas' - 16.10.2011, 17:40
Re: npc problems - by manchestera - 16.10.2011, 18:22
Re: npc problems - by Kostas' - 16.10.2011, 18:33

Forum Jump:


Users browsing this thread: 1 Guest(s)