I Need Help With This Problem -
titanak - 07.02.2011
Mos of the problem of gamemode is this . can somone say whats the problem ??
Re: I Need Help With This Problem -
antonio112 - 07.02.2011
Have you compiled the gamemode using pawno !? If not, run pawno, open the gamemode and compile it ...
You need both .pwn and .amx to run the gamemode.
Re: I Need Help With This Problem -
Whitetiger - 07.02.2011
your not loading a plugin that the gamemode needs
Re: I Need Help With This Problem -
JamesC - 07.02.2011
Quote:
Originally Posted by antonio112
Have you compiled the gamemode using pawno !? If not, run pawno, open the gamemode and compile it ...
You need both .pwn and .amx to run the gamemode.
|
No, you don't. You only need the .amx file.
@OP: The problem could be that you're missing some scriptfiles.
Re: I Need Help With This Problem -
_Tommy - 07.02.2011
Quote:
Originally Posted by JamesC
No, you don't. You only need the .amx file.
@OP: The problem could be that you're missing some scriptfiles.
|
Missing scriptfiles will probably will just crash your server. On this case, and correct me if I'm wrong, you have a problem with your compiled (maybe not? are you sure you have compiled it correctly with no errors?) gamemode.
Re: I Need Help With This Problem -
titanak - 07.02.2011
Thanks everyone . i resolved the problem . but there are a another one something like that:
whern i run sa-mp server then it closes it automatically and the problem is still on gamemode. the console open for second , and closes automatically . i got screen about it.
Server Log:
Код:
SA-MP Dedicated Server
----------------------
v0.3c, ©2005-2010 SA-MP Team
[12:09:25] filterscripts = "" (string)
[12:09:25]
[12:09:25] Server Plugins
[12:09:25] --------------
[12:09:25] Loading plugin: streamer
[12:09:25]
*** Streamer Plugin v2.5.2 by Incognito loaded ***
[12:09:25] Loaded.
[12:09:25] Loaded 1 plugins.
[12:09:25]
[12:09:25] Filter Scripts
[12:09:25] ---------------
[12:09:25] Loaded 0 filter scripts.
Re: I Need Help With This Problem -
xRyder - 07.02.2011
Check your 'gamemode0' in server.cfg
Re: I Need Help With This Problem -
Matej_ - 07.02.2011
Put this below the
#include <a_samp>
pawn Код:
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
#else
Note: That problem happend to me too yesterday because i delete those things up there. Lol
Re: I Need Help With This Problem -
xRyder - 07.02.2011
@Matej_ - If your working on a GM you don't need functions for FS, I don't have them and it works perfectly normal.
Re: I Need Help With This Problem -
Matej_ - 07.02.2011
Quote:
Originally Posted by xRyder
@Matej_ - If your working on a GM you don't need functions for FS, I don't have them and it works perfectly normal.
|
Well, I'm working on a Gamemode right now and i deleted the functions for FS and i get the same error and this guy does.
So i pasted the functions back and it works perfectly.