Gerne den Teil deines Gamemodes posten in welchem du die MySQL Verbindung aufbaust und einen Query absendest
Code
}
public OnGameModeInit(){
SetGameModeText(modeName);
SendRconCommand(mapName);
SendRconCommand(hostName);
LoadPlayerColumns();
SendRconCommand("weather 10");
DisableInteriorEnterExits();
LimitPlayerMarkerRadius(4000);
new serverPort = GetConsoleVarAsInt("port");
if(serverPort == 7777){
mysql_log(LOG_ERROR | LOG_WARNING);
mysql = mysql_connect(SQL_HOST, SQL_USER, SQL_DATA, SQL_PASS);
if(mysql_errno(mysql) != 1){
print("Could not connect to database!");
}else{
print("Successfully connect to database!");
}
}else{
mysql_log(LOG_ERROR | LOG_WARNING);
// mysql = mysql_connect(SQL_HOST_TEST, SQL_USER_TEST, SQL_DATA_TEST, SQL_PASS_TEST);
if(mysql_errno(mysql) != 1){
print("Could not connect to database!");
}else{
print("Successfully connect to database!");
}
}
Alles anzeigen
https://www.bilder-upload.eu/bild-ea1fad-1616181086.jpg.html
wie heißt das Script welches du benutzt ?
Und zeig die normale Log auch....
ILoveDM aber ganz überarbeitet.
Code
----------
Loaded log file: "server_log.txt".
----------
SA-MP Dedicated Server
----------------------
v0.3.7-R2, (C)2005-2015 SA-MP Team
[20:33:19] filterscripts = "" (string)
[20:33:19]
[20:33:19] Server Plugins
[20:33:19] --------------
[20:33:19] Loading plugin: crashdetect.so
[20:33:19] CrashDetect plugin 4.19.4
[20:33:19] Loaded.
[20:33:19] Loading plugin: sscanf.so
[20:33:19]
[20:33:19] ===============================
[20:33:19] sscanf plugin loaded.
[20:33:19] Version: 2.8.1
[20:33:19] (c) 2012 Alex "Y_Less" Cole
[20:33:19] ===============================
[20:33:19] Loaded.
[20:33:19] Loading plugin: mysql.so
[20:33:19] >> plugin.mysql: R39-5 successfully loaded.
[20:33:19] Loaded.
[20:33:19] Loading plugin: streamer.so
[20:33:19]
*** Streamer Plugin v2.9.4 by Incognito loaded ***
[20:33:19] Loaded.
[20:33:19] Loading plugin: Whirlpool.so
[20:33:19]
[20:33:19] ==================
[20:33:19]
[20:33:19] Whirlpool loaded
[20:33:19]
[20:33:19] ==================
[20:33:19]
[20:33:19] Loaded.
[20:33:19] Loading plugin: MapAndreas.so
[20:33:19] Loaded.
[20:33:19] Loaded 6 plugins.
[20:33:19]
[20:33:19] Ban list
[20:33:19] --------
[20:33:19] Loaded: samp.ban
[20:33:19]
[20:33:19]
[20:33:19] Filterscripts
[20:33:19] ---------------
[20:33:19] Loaded 0 filterscripts.
[20:33:19] columns len 439
[20:33:19] Could not connect to database!
[20:33:19] ----------------------------------
[20:33:19] I Love DM - Script
[20:33:19] by Knole_x3 und John_Hunter(bis 15.11.2014)
[20:33:19] Weitergabe des Scriptes ist untersagt!
[20:33:19] ----------------------------------
[20:33:19] Number of vehicle models: 10
Alles anzeigen