I need filterscript help
#1

Hey guys, i need to make a filterscript. Can someone make a filterscript with this code:

CreateObject(16095, 2458.39453125, -1671.6135253906, 12.119976997375, 0, 0, 0);
CreateObject(1697, 2531.6257324219, -1679.3460693359, 20.532104492188, 0, 0, 0);
CreateObject(3852, 2503.9731445313, -1668.4555664063, 14.175497055054, 0, 0, 180);
CreateObject(13641, 2480.62109375, -1708.8024902344, 12.536069869995, 0, 0, 270);
CreateObject(18451, 2443.3740234375, -1633.5631103516, 12.917479515076, 0, 0, 0);
CreateObject(16638, 2484.8862304688, -1668.2269287109, 14.784676551819, 0, 0, 270);
CreateObject(3279, 2496.984375, -1660.4378662109, 12.335947036743, 0, 0, 270);
CreateObject(16093, 2485.8862304688, -1668.2269287109, 16.62459564209, 0, 0, 270);
CreateObject(2358, 2496.0432128906, -1668.4860839844, 12.460285186768, 0, 0, 0);

If someone makes a filterscript, thank you very much. Can you post the code so i can build on it please.
Reply
#2

Just take that code and put it under OnGameMode Init:

Reply
#3

Код:
public OnGameModeInit()
{
CreateObject(16095, 2458.39453125, -1671.6135253906, 12.119976997375, 0, 0, 0);
CreateObject(1697, 2531.6257324219, -1679.3460693359, 20.532104492188, 0, 0, 0);
CreateObject(3852, 2503.9731445313, -1668.4555664063, 14.175497055054, 0, 0, 180);
CreateObject(13641, 2480.62109375, -1708.8024902344, 12.536069869995, 0, 0, 270);
CreateObject(18451, 2443.3740234375, -1633.5631103516, 12.917479515076, 0, 0, 0);
CreateObject(16638, 2484.8862304688, -1668.2269287109, 14.784676551819, 0, 0, 270);
CreateObject(3279, 2496.984375, -1660.4378662109, 12.335947036743, 0, 0, 270);
CreateObject(16093, 2485.8862304688, -1668.2269287109, 16.62459564209, 0, 0, 270);
CreateObject(2358, 2496.0432128906, -1668.4860839844, 12.460285186768, 0, 0, 0);
	return 1;
}
Cameron, Learn to script.
Reply
#4

Quote:
Originally Posted by laserhel50
Код:
public OnGameModeInit()
{
CreateObject(16095, 2458.39453125, -1671.6135253906, 12.119976997375, 0, 0, 0);
CreateObject(1697, 2531.6257324219, -1679.3460693359, 20.532104492188, 0, 0, 0);
CreateObject(3852, 2503.9731445313, -1668.4555664063, 14.175497055054, 0, 0, 180);
CreateObject(13641, 2480.62109375, -1708.8024902344, 12.536069869995, 0, 0, 270);
CreateObject(18451, 2443.3740234375, -1633.5631103516, 12.917479515076, 0, 0, 0);
CreateObject(16638, 2484.8862304688, -1668.2269287109, 14.784676551819, 0, 0, 270);
CreateObject(3279, 2496.984375, -1660.4378662109, 12.335947036743, 0, 0, 270);
CreateObject(16093, 2485.8862304688, -1668.2269287109, 16.62459564209, 0, 0, 270);
CreateObject(2358, 2496.0432128906, -1668.4860839844, 12.460285186768, 0, 0, 0);
	return 1;
}
Cameron, Learn to script.
If you are asking him to learn how to script call him to go to wiki.

Not just feed him the code.

Everyone starts as a noob.
Reply
#5

Код:
public OnFilterScriptInit()
{
	CreateObject(16095, 2458.39453125, -1671.6135253906, 12.119976997375, 0, 0, 0);
	CreateObject(1697, 2531.6257324219, -1679.3460693359, 20.532104492188, 0, 0, 0);
	CreateObject(3852, 2503.9731445313, -1668.4555664063, 14.175497055054, 0, 0, 180);
	CreateObject(13641, 2480.62109375, -1708.8024902344, 12.536069869995, 0, 0, 270);
	CreateObject(18451, 2443.3740234375, -1633.5631103516, 12.917479515076, 0, 0, 0);
	CreateObject(16638, 2484.8862304688, -1668.2269287109, 14.784676551819, 0, 0, 270);
	CreateObject(3279, 2496.984375, -1660.4378662109, 12.335947036743, 0, 0, 270);
	CreateObject(16093, 2485.8862304688, -1668.2269287109, 16.62459564209, 0, 0, 270);
	CreateObject(2358, 2496.0432128906, -1668.4860839844, 12.460285186768, 0, 0, 0);
	return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)