SA-MP Forums Archive
Seifehicle.amx load failed? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Seifehicle.amx load failed? (/showthread.php?tid=212159)



Seifehicle.amx load failed? - Jimmeh! - 16.01.2011

Код:
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


Re: Seifehicle.amx load failed? - Anthonyx3' - 16.01.2011

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


Re: Seifehicle.amx load failed? - Jimmeh! - 16.01.2011

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?


Re: Seifehicle.amx load failed? - Jimmeh! - 16.01.2011

BUMP.. Need this done QUICK


Re: Seifehicle.amx load failed? - The_Moddler - 16.01.2011

Show your server.cfg


Re: Seifehicle.amx load failed? - DVDK - 16.01.2011

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


Re: Seifehicle.amx load failed? - PeteShag - 16.01.2011

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


Re: Seifehicle.amx load failed? - Jimmeh! - 16.01.2011

Код:
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


Re: Seifehicle.amx load failed? - Luis- - 16.01.2011

Код:
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;
	}



Re: Seifehicle.amx load failed? - Jimmeh! - 16.01.2011

Код:
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