16.10.2011, 18:33
Erm..Same name
Replace this
To
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;
}
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;
}