Seifehicle.amx load failed?
#1

Код:
SA-MP Dedicated Server
----------------------
v0.3c, ©2005-2010 SA-MP Team

[23:33:23] 
[23:33:23] Server Plugins
[23:33:23] --------------
[23:33:23]  Loaded 0 plugins.

[23:33:23] 
[23:33:23] Filter Scripts
[23:33:23] ---------------
[23:33:23]   Loading filter script 'base.amx'...
[23:33:23] 
--Base FS loaded.

[23:33:23]   Loading filter script 'gl_actions.amx'...
[23:33:23]   Loading filter script 'gl_property.amx'...
[23:33:23] 
-----------------------------------
[23:33:23] Grand Larceny Property Filterscript		
[23:33:23] -----------------------------------

[23:33:23]   Loading filter script 'gl_realtime.amx'...
[23:33:23]   Loading filter script 'gl_mapicon.amx'...
[23:33:23]   Loading filter script 'ls_elevator.amx'...
[23:33:23]   Loaded 6 filter scripts.

[23:33:23]   Filter script 'Seifehicle.amx' unload failed.
[23:33:23]   Filter script 'Seifehicle.amx' load failed'.
[23:33:23] file "New York Roleplay/Other/JoinCounter.cfg" created with JoinCounter variable (0 visitors)
Look at the last part.. Filter script 'Seifehicle.amx' load failed.
What is that? It's not in my "Server" Filterscripts.. O.o
Reply
#2

if you dont have it in your folder filterscript, it cant load cause you dont have file, lol. remove it from filterscript lin in server.cfg
Reply
#3

That's the problem.. it's not in server.cfg... But for some reason it shows up, could it be that it's in the Pawn script?
Reply
#4

BUMP.. Need this done QUICK
Reply
#5

Show your server.cfg
Reply
#6

Are you sure it isn't SeifVehicle instead of Siefehicle?
Reply
#7

Maybe you're calling it on GameModeinit with an rcon command.
Reply
#8

Код:
public OnGameModeInit()
{
    SendRconCommand("reloadfs Seifehicle");
	if(fexist("New York Roleplay/Other/JoinCounter.cfg"))
	{
	    JoinCounter = dini_Int("New York Roleplay/Other/JoinCounter.cfg", "Connections");
	    printf("file \"JoinCounter.txt\" located, variable JoinCounter loaded (%d visitors)", JoinCounter);
	}
	else
	{
	    dini_Create("New York Roleplay/Other/JoinCounter.cfg");
	    dini_IntSet("New York Roleplay/Other/JoinCounter.cfg", "Connections", 0);
	    print("file \"New York Roleplay/Other/JoinCounter.cfg\" created with JoinCounter variable (0 visitors)");
	}
	//==========================================================================
	for(new c=0;c<MAX_VEHICLES;c++)
	{
		Fuel[c] = GasMax;
		EngineStatus[c] = 0;
		VehicleLocked[c] = 0;
		CarWindowStatus[c] = 1;
	}
How should I delete this JoinCounter Seifvehicle shit? When I just delete that line.. It give me like 50 errors
Reply
#9

Код:
public OnGameModeInit()
{
	if(fexist("New York Roleplay/Other/JoinCounter.cfg"))
	{
	    JoinCounter = dini_Int("New York Roleplay/Other/JoinCounter.cfg", "Connections");
	    printf("file \"JoinCounter.txt\" located, variable JoinCounter loaded (%d visitors)", JoinCounter);
	}
	else
	{
	    dini_Create("New York Roleplay/Other/JoinCounter.cfg");
	    dini_IntSet("New York Roleplay/Other/JoinCounter.cfg", "Connections", 0);
	    print("file \"New York Roleplay/Other/JoinCounter.cfg\" created with JoinCounter variable (0 visitors)");
	}
	//==========================================================================
	for(new c=0;c<MAX_VEHICLES;c++)
	{
		Fuel[c] = GasMax;
		EngineStatus[c] = 0;
		VehicleLocked[c] = 0;
		CarWindowStatus[c] = 1;
	}
Reply
#10

Код:
echo Executing Server Config...
lanmode 0
rcon_password *****
maxplayers 50
port 7777
hostname New York Roleplay
gamemode0 NYRP 1
filterscripts base gl_actions gl_property gl_realtime gl_mapicon ls_elevator
announce 0
query 1
weburl NYRP.tk
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
stream_rate 1000
maxnpc 0
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)