Gamemode : Unknown
#1

Hello, I'm currently having game-mode unkown error. I've tried everything, starting from downloading plugins/putting files in correct place. Nothing seem to do the magic.

http://pastebin.com/r9G81Apx

When I run my samp-server.exe file. It says everything works fine, however my gamemode doesn't run at all which is annoying.

echo Executing Server Config...
lanmode 1
rcon_password check
maxplayers 50
port 7777
hostname SA-MP 0.3 Server
gamemode0 fresh_one
announce 1
plugins mysql.dll Whirlpool.dll
chatlogging 0
weburl www.sa-mp.com
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
stream_rate 1000
maxnpc 0
logtimeformat [%H:%M:%S]
language English

That is my CFG file.

SA-MP Dedicated Server
----------------------
v0.3.7-R2, ©2005-2015 SA-MP Team

[17:30:07]
[17:30:07] Server Plugins
[17:30:07] --------------
[17:30:07] Loading plugin: mysql.dll
[17:30:07] >> plugin.mysql: R39-5 successfully loaded.
[17:30:07] Loaded.
[17:30:07] Loading plugin: Whirlpool.dll
[17:30:07]
[17:30:07] ==================
[17:30:07]
[17:30:07] Whirlpool loaded
[17:30:07]
[17:30:07] ==================
[17:30:07]
[17:30:07] Loaded.
[17:30:07] Loaded 2 plugins.

[17:30:07]
[17:30:07] Filterscripts
[17:30:07] ---------------
[17:30:07] Loaded 0 filterscripts.

[17:30:07] [MySQL] The connection was successful.
[17:30:07]
----------------------------------
[17:30:07] Blank Gamemode by your name here
[17:30:07] ----------------------------------

[17:30:07] Number of vehicle models: 0

As you can see everything is loaded aswell.
Reply
#2

@Iqba No. There isn't.
Also to clarify I have file called plugins which has whirlpool and mysql. So safe to say they're loaded both perfectly fine.
Reply
#3

are you sure that 'fresh_one' is the gamemode you're trying to load ?
Reply
#4

@Juvanii. I'm 100% positive. Also it appears that when I change what's inside main(). It changes. So safe to say my gamemode is actually loaded. But it keeps saying unkown for very odd reason.
Reply
#5

It seems like everything loads perfectly fine. You've just haven't defined the gamemode text.

PHP код:
public OnGameModeInit()
{
    
SetGameModeText("Gamemode Here.");
    
mysql_log(LOG_ALL);
    
mysql mysql_connect(MYSQL_HOSTMYSQL_USERMYSQL_DATABASEMYSQL_PASSWORD);
    if(
mysql_errno() != 0)
    {
        
printf("[MySQL] The connection has failed.");
    }
    else
    {
        
printf("[MySQL] The connection was successful.");
    }
    return 
true;

Reply
#6

@Tass. Thank you very much. I just got back to scripting. I wasn't aware of that.
Reply
#7

Quote:
Originally Posted by DavidLuango
Посмотреть сообщение
@Tass. Thank you very much. I just got back to scripting. I wasn't aware of that.
No problem. Glad I could help.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)