dann fängt der an zu Spammen
Bei mir nicht...dann hast du iwas falsch eingefügt? ![]()
Wenn dich die Nachrichten stören im Chat, nutze evtl GameTexte oder ein TextDraw ![]()
mfg. ![]()
dann fängt der an zu Spammen
Bei mir nicht...dann hast du iwas falsch eingefügt? ![]()
Wenn dich die Nachrichten stören im Chat, nutze evtl GameTexte oder ein TextDraw ![]()
mfg. ![]()
Das stört mich ja nicht, wollte es nur mal gesagt haben
man hält ja nicht 5 Minuten lang ein und die selbe Taste ![]()
Ich habe gestern Abend ja die Weapon-Config von Slice eingefügt. Doch da hatte ich Probleme mit und sollte den Streamer Updaten, was ich gemacht habe.
Nur habe ich gerade gemerkt das mein Ingame Mapping Tool nicht mehr funktioniert. Wenn ich ein Objekt verschiebe und die Position speichere, kann ich das Objekt danach nicht mehr editieren weil dort steht das ich schon ein Objekt editiere..
Hier wie es eigentlich zu sein hat, bei einem Motor. Falls mal wieder jemand auf der Suche nach dem Code ist bevorzugt er wohl einen Code der funktioniert.
Unter den Includes:
#define PRESSED(%0) (((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))
#define RELEASED(%0) (((newkeys & (%0)) != (%0)) && ((oldkeys & (%0)) == (%0)))
new pressMotorStart[MAX_PLAYERS];
public OnFilterScriptInit() //bzw. OnGameModeInit
{
SetTimer("KeyCheckTimer", 500, true);
return 1;
}
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
{
if(PRESSED(KEY_FIRE))
{
pressMotorStart[playerid] = gettime();
SendClientMessage(playerid, 0xFFFFFFFF, "Motor wird gestartet...");
}
else if(RELEASED(KEY_FIRE) && pressMotorStart[playerid] != 0)
{
pressMotorStart[playerid] = 0;
SendClientMessage(playerid, 0xFFFFFFFF, "Ups! Das war zu kurz.");
}
}
return 1;
}
public OnPlayerDisconnect(playerid, reason)
{
pressMotorStart[playerid] = 0;
return 1;
}
public OnPlayerStateChange(playerid, newstate, oldstate)
{
if(pressMotorStart[playerid] != 0)
{
pressMotorStart[playerid] = 0;
SendClientMessage(playerid, 0xFFFFFFFF, "Ups! Das war zu kurz.");
}
return 1;
}
forward KeyCheckTimer();
public KeyCheckTimer()
{
new time = gettime();
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(pressMotorStart[i] != 0)
{
if(time - pressMotorStart[i] >= 3)
{
pressMotorStart[i] = 0;
if(GetPlayerState(i) == PLAYER_STATE_DRIVER)
{
SendClientMessage(i, 0xFFFFFFFF, "Motor ist an!");
//Motor hier starten lassen.
}
}
}
}
return 1;
}
__________________________________________________________
@[LnD]JustMe.77:
Erstelle bitte einen Thread und poste die entsprechenden Codes.
Wollte mir heute ein Script ansehen, aber als ich kompiliert habe ist Pawn abgestürtzt. Woran kann das liegen?
Woran kann das liegen?
An einem Klammerfehler oder invaliden Makros:
#define test# "hi"
oder
#define Job ""
oder
#define Job
oder du returnst einen String direkt in einer Funktion:
stock test() return "hallo";
oder du überschreibst einen Tag:
#define bool x
mfg. ![]()
Nach einem gangfightkill sollte man gespawnt werden aber klappt irgendwie nicht ![]()
//Gangwarsystem
if(IsPlayerConnected(killerid) && killerid != INVALID_PLAYER_ID)
{
if(IsAFightFaction(GetPlayerFaction(playerid)))
{
new TempZone = GetPlayerFightzone(playerid);
if(GangwarZones[TempZone][GW_AttackFaction] != -255 && GangwarZones[TempZone][GW_FightTime])
{
if(GangwarZones[TempZone][GW_CtfOfOwner][0] == playerid)
{
new fsName[MAX_PLAYER_NAME];
GetPlayerName(playerid,fsName,MAX_PLAYER_NAME);
new fsText[128];
format(fsText,sizeof(fsText),"Gangfight: %s hat die Flagge verloren! (Gestorben)",fsName);
for(new i;i<GetMaxPlayers();i++)
{
if(IsPlayerConnected(i))
{
if(GetPlayerFaction(i) == GangwarZones[TempZone][GW_OwnerFaction] || GetPlayerFaction(i) == GangwarZones[TempZone][GW_AttackFaction])
{
PlayerPlaySound(i,1058,0.0,0.0,0.0);
SendClientMessage(i,GW_COLOR_ORANGE,fsText);
RemovePlayerAttachedObject(i,0);
}
}
}
DestroyPickup(GangwarZones[TempZone][GW_FlagOfOwner]);
GangwarZones[TempZone][GW_FlagOfOwner] = CreatePickup(2993,23,GangwarZones[TempZone][GW_CtfOfOwnerx],GangwarZones[TempZone][GW_CtfOfOwnery],GangwarZones[TempZone][GW_CtfOfOwnerz],-1);
GangwarZones[TempZone][GW_CtfOfOwner][0] = -255;
GangwarZones[TempZone][GW_CtfOfOwner][1] = 0;
format(string,sizeof(string),"%s\nAttacker Flagge\nGebiet der Fraktion '%s'\n/startwar",GangwarZones[TempZone][GW_Zone_Name],GetFactionNameOfFaction(GangwarZones[TempZone][GW_AttackFaction]));
Update3DTextLabelText(WarLabel[TempZone][0],0x009A1EB2,string);
}
else if(GangwarZones[TempZone][GW_CtfOfAttack][0] == playerid)
{
new fsName[MAX_PLAYER_NAME];
GetPlayerName(playerid,fsName,MAX_PLAYER_NAME);
new fsText[128];
format(fsText,sizeof(fsText),"Gangfight: %s hat die Flagge verloren! (Gestorben)",fsName);
for(new i;i<GetMaxPlayers();i++)
{
if(IsPlayerConnected(i))
{
if(GetPlayerFaction(i) == GangwarZones[TempZone][GW_OwnerFaction] || GetPlayerFaction(i) == GangwarZones[TempZone][GW_AttackFaction])
{
PlayerPlaySound(i,1058,0.0,0.0,0.0);
SendClientMessage(i,GW_COLOR_ORANGE,fsText);
RemovePlayerAttachedObject(i,0);
}
}
}
DestroyPickup(GangwarZones[TempZone][GW_FlagOfAttack]);
GangwarZones[TempZone][GW_FlagOfAttack] = CreatePickup(2993,23,GangwarZones[TempZone][GW_CtfOfAttackx],GangwarZones[TempZone][GW_CtfOfAttacky],GangwarZones[TempZone][GW_CtfOfAttackz],-1);
GangwarZones[TempZone][GW_CtfOfAttack][0] = -255;
GangwarZones[TempZone][GW_CtfOfAttack][1] = 0;
format(string,sizeof(string),"%s\nDeffender Flagge\nGebiet der Fraktion '%s'\n/startwar",GangwarZones[TempZone][GW_Zone_Name],GetFactionNameOfFaction(GangwarZones[TempZone][GW_OwnerFaction]));
Update3DTextLabelText(WarLabel[TempZone][1],0x009A1EB2,string);
}
}
}
if(IsAFightFaction(GetPlayerFaction(killerid)))
{
new TempZone = GetPlayerFightzone(killerid);
if(TempZone != -255)
{
if(GangwarZones[TempZone][GW_FightTime] && GangwarZones[TempZone][GW_AttackFaction] != -255)
{
if(GangwarZones[TempZone][GW_OwnerFaction] == GetPlayerFaction(killerid) || GangwarZones[TempZone][GW_AttackFaction] == GetPlayerFaction(killerid))
{
if(IsAFightFaction(GetPlayerFaction(playerid)))
{
new fsText[64];
if(GangwarZones[TempZone][GW_AttackFaction] == GetPlayerFaction(killerid) && GangwarZones[TempZone][GW_OwnerFaction] == GetPlayerFaction(playerid))
{
PlayerPlaySound(killerid,1084,0.0,0.0,0.0);
GameTextForPlayer(killerid,"~g~GANGWARKILL",6000,5);
GameTextForPlayer(playerid,"~r~GANGWARKILL",6000,5);
GangwarZones[TempZone][GW_PointsOfAttack]++;
Spieler[killerid][pGW_TotalKills]++;
if(GangwarZones[TempZone][GW_PointsOfOwner] > GangwarZones[TempZone][GW_PointsOfAttack])
{
format(fsText,sizeof(fsText),"%s",GetFactionNameOfFaction(GangwarZones[TempZone][GW_OwnerFaction]));
TextDrawSetString(GangwarZones[TempZone][GW_WinFaction],fsText);
format(fsText,sizeof(fsText),"[%02d]",GangwarZones[TempZone][GW_PointsOfOwner]);
TextDrawSetString(GangwarZones[TempZone][GW_WinPoints],fsText);
format(fsText,sizeof(fsText),"%s",GetFactionNameOfFaction(GangwarZones[TempZone][GW_AttackFaction]));
TextDrawSetString(GangwarZones[TempZone][GW_LoseFaction],fsText);
format(fsText,sizeof(fsText),"[%02d]",GangwarZones[TempZone][GW_PointsOfAttack]);
TextDrawSetString(GangwarZones[TempZone][GW_LosePoints],fsText);
}
else if(GangwarZones[TempZone][GW_PointsOfAttack] > GangwarZones[TempZone][GW_PointsOfOwner])
{
format(fsText,sizeof(fsText),"%s",GetFactionNameOfFaction(GangwarZones[TempZone][GW_AttackFaction]));
TextDrawSetString(GangwarZones[TempZone][GW_WinFaction],fsText);
format(fsText,sizeof(fsText),"[%02d]",GangwarZones[TempZone][GW_PointsOfAttack]);
TextDrawSetString(GangwarZones[TempZone][GW_WinPoints],fsText);
format(fsText,sizeof(fsText),"%s",GetFactionNameOfFaction(GangwarZones[TempZone][GW_OwnerFaction]));
TextDrawSetString(GangwarZones[TempZone][GW_LoseFaction],fsText);
format(fsText,sizeof(fsText),"[%02d]",GangwarZones[TempZone][GW_PointsOfOwner]);
TextDrawSetString(GangwarZones[TempZone][GW_LosePoints],fsText);
}
else
{
format(fsText,sizeof(fsText),"%s",GetFactionNameOfFaction(GangwarZones[TempZone][GW_OwnerFaction]));
TextDrawSetString(GangwarZones[TempZone][GW_WinFaction],fsText);
format(fsText,sizeof(fsText),"[%02d]",GangwarZones[TempZone][GW_PointsOfOwner]);
TextDrawSetString(GangwarZones[TempZone][GW_WinPoints],fsText);
format(fsText,sizeof(fsText),"%s",GetFactionNameOfFaction(GangwarZones[TempZone][GW_AttackFaction]));
TextDrawSetString(GangwarZones[TempZone][GW_LoseFaction],fsText);
format(fsText,sizeof(fsText),"[%02d]",GangwarZones[TempZone][GW_PointsOfAttack]);
TextDrawSetString(GangwarZones[TempZone][GW_LosePoints],fsText);
}
}
else if(GangwarZones[TempZone][GW_OwnerFaction] == GetPlayerFaction(killerid) && GangwarZones[TempZone][GW_AttackFaction] == GetPlayerFaction(playerid))
{
PlayerPlaySound(killerid,1084,0.0,0.0,0.0);
GangwarZones[TempZone][GW_PointsOfOwner]++;
if(GangwarZones[TempZone][GW_PointsOfOwner] > GangwarZones[TempZone][GW_PointsOfAttack])
{
format(fsText,sizeof(fsText),"%s",GetFactionNameOfFaction(GangwarZones[TempZone][GW_OwnerFaction]));
TextDrawSetString(GangwarZones[TempZone][GW_WinFaction],fsText);
format(fsText,sizeof(fsText),"[%02d]",GangwarZones[TempZone][GW_PointsOfOwner]);
TextDrawSetString(GangwarZones[TempZone][GW_WinPoints],fsText);
format(fsText,sizeof(fsText),"%s",GetFactionNameOfFaction(GangwarZones[TempZone][GW_AttackFaction]));
TextDrawSetString(GangwarZones[TempZone][GW_LoseFaction],fsText);
format(fsText,sizeof(fsText),"[%02d]",GangwarZones[TempZone][GW_PointsOfAttack]);
TextDrawSetString(GangwarZones[TempZone][GW_LosePoints],fsText);
}
else if(GangwarZones[TempZone][GW_PointsOfAttack] > GangwarZones[TempZone][GW_PointsOfOwner])
{
format(fsText,sizeof(fsText),"%s",GetFactionNameOfFaction(GangwarZones[TempZone][GW_AttackFaction]));
TextDrawSetString(GangwarZones[TempZone][GW_WinFaction],fsText);
format(fsText,sizeof(fsText),"[%02d]",GangwarZones[TempZone][GW_PointsOfAttack]);
TextDrawSetString(GangwarZones[TempZone][GW_WinPoints],fsText);
format(fsText,sizeof(fsText),"%s",GetFactionNameOfFaction(GangwarZones[TempZone][GW_OwnerFaction]));
TextDrawSetString(GangwarZones[TempZone][GW_LoseFaction],fsText);
format(fsText,sizeof(fsText),"[%02d]",GangwarZones[TempZone][GW_PointsOfOwner]);
TextDrawSetString(GangwarZones[TempZone][GW_LosePoints],fsText);
}
else
{
format(fsText,sizeof(fsText),"%s",GetFactionNameOfFaction(GangwarZones[TempZone][GW_OwnerFaction]));
TextDrawSetString(GangwarZones[TempZone][GW_WinFaction],fsText);
format(fsText,sizeof(fsText),"[%02d]",GangwarZones[TempZone][GW_PointsOfOwner]);
TextDrawSetString(GangwarZones[TempZone][GW_WinPoints],fsText);
format(fsText,sizeof(fsText),"%s",GetFactionNameOfFaction(GangwarZones[TempZone][GW_AttackFaction]));
TextDrawSetString(GangwarZones[TempZone][GW_LoseFaction],fsText);
format(fsText,sizeof(fsText),"[%02d]",GangwarZones[TempZone][GW_PointsOfAttack]);
TextDrawSetString(GangwarZones[TempZone][GW_LosePoints],fsText);
}
}
}
}
}
}
}
SpawnPlayerEx();
}
Ich hätte da ne kleine frage...
SetTimer("JailTime", %d, false, JailTime[playerid]);
Das Akzeptiert Pawno leider nicht ![]()
hätte da wer einen anderen vorschlag ?
Ich will das nämlich so dynamisch wie möglich halten ![]()
SetTimerEx("JailTime", JailTime[playerid], false, "d", playerid);
Achso ![]()
Noch eine frage...
Ich habe ein- Ausgänge erstellt... nun komt es des öfteren vor das ich in ein gebäude "reingehe" und dann wieder "rausgehe"
Kann man die Pickups auch irgendwie eine art delay haben lassen?
Unter den Includes:
new lastPickup[MAX_PLAYERS];
Beim Betreten eines solchen Pickups:
if(lastPickup[playerid]+2 > gettime()) return 1;
lastPickup[playerid] = gettime();
Dann hast du einen kurzen Zeitraum, in dem die Pickups nichts machen.
MySQL kann bei mir keine Verbindung zur DB herstellen, obwohl alles richtig eingestellt ist.
obwohl alles richtig eingestellt ist.
Was sagt denn der Log? ![]()
[18:59:16] <-| [MYSQL] Es konnte keine Verbindung zur Datenbank hergestellt werden!
[18:59:16] <-| [MYSQL] Es wird erneut versucht eine Verbindung zur Datenbank herzustellen!
[18:59:16] <-| [MYSQL] Es konnte keine Verbindung zur Datenbank hergestellt werden!
[18:59:16] <-| [MYSQL] Der Server wird nun beendet!
Schalte bitte den MySQL Debug Modus an und poste was im MySQL Log steht, wenn du den Server an machst.
Wie du das machst steht hier: Tipps: Scripting-Probleme richtig erklären (Kapitel 1.4)
[19:18:34]
[19:18:34] ---------------------------
[19:18:34] MySQL Debugging activated (05/27/15)
[19:18:34] ---------------------------
[19:18:34]
[19:18:34] >> mysql_connect( )
[19:18:34] CMySQLHandler::CMySQLHandler() - constructor called.
[19:18:34] CMySQLHandler::CMySQLHandler() - Connecting to "5.39.74.166" | DB: "samp5290_mvd" | Username: "samp5290" ...
[19:18:34] CMySQLHandler::Connect() - Can't connect to MySQL server on '5.39.74.166' (111) (Error ID: 2003)
[19:18:34] >> mysql_ping( Connection handle: 1 )
[19:18:34] CMySQLHandler::Ping() - You cannot call this function now. (Reason: Dead Connection)
[19:18:34] >> mysql_connect( )
[19:18:34] CMySQLHandler::Connect() - Can't connect to MySQL server on '5.39.74.166' (111) (Error ID: 2003)
[19:18:34] >> mysql_ping( Connection handle: 1 )
[19:18:34] CMySQLHandler::Ping() - You cannot call this function now. (Reason: Dead Connection)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
...
(Hier wiederholt es sich ca. 1000000x, hab ich raus genommen)
...
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] >> mysql_query( Connection handle: 1 )
[19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_store_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
[19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
[19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] >> mysql_free_result( Connection handle: 1 )
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] CMySQLHandler::~CMySQLHandler() - deconstructor called.
[19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
[19:18:34] CMySQLHandler::Disconnect() - You cannot call this function now. (Reason: Connection is dead)
[19:18:34] CMySQLHandler::~CMySQLHandler() - deconstructor called.
[19:18:34] CMySQLHandler::CMySQLHandler() - Connecting to "5.39.74.166" | DB: "samp5290_mvd" | Username: "samp5290" ...
[19:18:34] CMySQLHandler::Connect() - Can't connect to MySQL server on '5.39.74.166' (111) (Error ID: 2003)
Entweder die Login-Daten sind falsch oder du hast keinen Zugriff auf die Datenbank (Server down oder keine Berechtigung).
[19:18:34] CMySQLHandler::CMySQLHandler() - Connecting to "5.39.74.166" | DB: "samp5290_mvd" | Username: "samp5290" ...
[19:18:34] CMySQLHandler::Connect() - Can't connect to MySQL server on '5.39.74.166' (111) (Error ID: 2003)
Entweder die Login-Daten sind falsch oder du hast keinen Zugriff auf die Datenbank (Server down oder keine Berechtigung).
Ist alles richtig eingegeben, und ich hab Zugriff auf die datenbank
Nein hast du nicht, sonst würde nicht die Meldung kommen.
In diesem Fall setze dich mit deinem Host in Verbindung.