Hace 6 horas mi MySQL carga nъmeros en el update que no van
#1

Me estoy volviendo literalmente loco. Una funciуn que deberнa llevarme 30 minutos me estб llevando 6 horas.

Cree, en el DIALOG de Registro para que se genere un nъmero random(999999) para el DNI.
Todo funcionaba bien hasta que hice el INSERT, ahora por algъn motivo me carga en 3 columnas 3 nъmeros, en una 109, 101 y en otra 114 SIEMPRE. En el DNI siempre carga 105.
Probй para ver si era un error mнo, por lo cual hice algo como DNI = 300, cosa que al menos se cargue un 300 a la DB y nada.
Considerй que podнa ser un tema de size y nada. Dejo mi cуdigo, yo ya no entiendo por quй pasa eso.

Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    switch (dialogid)
    {
        case DIALOG_UNUSED: return 1; // Useful for dialogs that contain only information and we do nothing depending on whether they responded or not

        case DIALOG_LOGIN:
        {
            if (!response) return Kick(playerid);

            new hashed_pass[65];
            SHA256_PassHash(inputtext, pInfo[playerid][Salt], hashed_pass, 65);

            if (strcmp(hashed_pass, pInfo[playerid][Password]) == 0)
            {
                //correct password, spawn the player
                ShowPlayerDialog(playerid, DIALOG_UNUSED, DIALOG_STYLE_MSGBOX, "Login", "You have been successfully logged in.", "Okay", "");

                // sets the specified cache as the active cache so we can retrieve the rest player data
                cache_set_active(pInfo[playerid][Cache_ID]);

                AssignPlayerData(playerid);

                // remove the active cache from memory and unsets the active cache as well
                cache_delete(pInfo[playerid][Cache_ID]);
                pInfo[playerid][Cache_ID] = MYSQL_INVALID_CACHE;

                KillTimer(pInfo[playerid][LoginTimer]);
                pInfo[playerid][LoginTimer] = 0;
                pInfo[playerid][IsLoggedIn] = true;

				GivePlayerMoney(playerid, pInfo[playerid][pDinero]);
				SetPlayerScore(playerid, pInfo[playerid][pNivel]);
				// spawn the player to their last saved position after login
				SetSpawnInfo(playerid, NO_TEAM, 0, pInfo[playerid][X_Pos], pInfo[playerid][Y_Pos], pInfo[playerid][Z_Pos], pInfo[playerid][A_Pos], 0, 0, 0, 0, 0, 0);
                SpawnPlayer(playerid);
            }
            else
            {
                pInfo[playerid][LoginAttempts]++;

                if (pInfo[playerid][LoginAttempts] >= 3)
                {
                    ShowPlayerDialog(playerid, DIALOG_UNUSED, DIALOG_STYLE_MSGBOX, "Login", "You have mistyped your password too often (3 times).", "Okay", "");
                    DelayedKick(playerid);
                }
                else ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD, "Login", "Wrong password!\nPlease enter your password in the field below:", "Login", "Abort");
            }
        }
        case DIALOG_REGISTER:
        {
            if (!response) return Kick(playerid);

            if (strlen(inputtext) <= 5) return ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD, "{CC2538}REGISTRO:{FFFFFF}", "{FFFFFF}Tu contraseсa debe tener mбs de 5 caracteres\nPor favor, ingresб la contraseсa:", "Register", "Abort");
            GivePlayerMoney(playerid, 10000);

            // 16 random characters from 33 to 126 (in ASCII) for the salt
            for (new i = 0; i < 16; i++) pInfo[playerid][Salt][i] = random(94) + 33;
            SHA256_PassHash(inputtext, pInfo[playerid][Salt], pInfo[playerid][Password], 65);       	
        	
        	pInfo[playerid][pDNI] = random(999999);
        	

            new str[38+1];
			format(str, sizeof(str), "%s{FFFFFF}Define el sexo de tu personaje", str);
			ShowPlayerDialog(playerid, DIALOG_SEXO, DIALOG_STYLE_MSGBOX, "{CC2538}REGISTRO:{FFFFFF}SEXO", str, "Masculino", "Femenino");


        }

        case DIALOG_SEXO:
        {
            if (response == 1)
            {

				pInfo[playerid][pSexo] = 1;
				new str[90+1];
				format(str, sizeof(str), "%s{FFFFFF}Ingresa la edad de tu personaje (tenй en cuenta que el personaje cumplirб aсos IC)", str);
				ShowPlayerDialog(playerid, DIALOG_EDAD, DIALOG_STYLE_INPUT, "{CC2538}REGISTRO:{FFFFFF}EDAD", str, "Aceptar", "Cancelar");


            }

            else
			{
       			pInfo[playerid][pSexo] = 2;
				new str[90+1];
				format(str, sizeof(str), "%s{FFFFFF}Ingresa la edad de tu personaje (tenй en cuenta que el personaje cumplirб aсos IC)", str);
				ShowPlayerDialog(playerid, DIALOG_EDAD, DIALOG_STYLE_INPUT, "{CC2538}REGISTRO:{FFFFFF}EDAD", str, "Aceptar", "Cancelar");


            }
        }

        case DIALOG_EDAD:
        {
            if(strval(inputtext) < 18 || strval(inputtext) > 78) return ShowPlayerDialog(playerid, DIALOG_EDAD, DIALOG_STYLE_INPUT, "{CC2538}REGISTRO:{FFFFFF}EDAD", "{CC2538}ЎATENCIУN!\n{FFFFFF} La edad mнnima es 18 y la mбxima 78.","Aceptar","");
			if(strval(inputtext) > 18 || strval(inputtext) < 90)
			{

			    pInfo[playerid][pEdad] = strval(inputtext);
			    new string[90];
			    format(string, sizeof(string), "{FFFFFF}Norteamericano\nLatino\nEuropeo\nAfroamericano\nAsiбtico\nOriental\nБrabe");
	       	    ShowPlayerDialog(playerid, DIALOG_NACIONALIDAD, DIALOG_STYLE_LIST, "{CC2538}REGISTRO:{FFFFFF}RAZA",string, "Ok", "");
			}
        }

        case DIALOG_NACIONALIDAD:
        {
            switch(listitem)
                    {
						case 0:
                        {

                            new string[24] = "Norteamericano";
							format(pInfo[playerid][pRaza], sizeof(string), "%s", string);
		       				GameTextForPlayer(playerid, "~R~Bienvenido a la ciudad del pecado", 1500, 3);
		       				
		       				new query[500];
				            mysql_format(g_SQL, query, sizeof query, "INSERT INTO `jugadores` (`username`, `password`, `salt`, `pSexo`, `pEdad`, `pRaza`, `pDNI`) VALUES ('%e', '%s', '%e', '%i', '%i', '%s', '%i')", pInfo[playerid][Name], pInfo[playerid][Password], pInfo[playerid][Salt],
							pInfo[playerid][pSexo], pInfo[playerid][pEdad], pInfo[playerid][pRaza], pInfo[playerid][pDNI]);
				            mysql_tquery(g_SQL, query, "OnPlayerRegister", "d", playerid);


                        }
                        case 1:
                        {

                            new string[24] = "Latino";
							format(pInfo[playerid][pRaza], sizeof(string), "%s", string);
		        			GameTextForPlayer(playerid, "~R~Bienvenido a la ciudad del pecado", 1500, 3);
		        			new query[270];
				            mysql_format(g_SQL, query, sizeof query, "INSERT INTO `jugadores` (`username`, `password`, `salt`, `pSexo`, `pEdad`, `pRaza`, `pDNI`) VALUES ('%e', '%s', '%e', '%i', '%i', '%s', '%d')", pInfo[playerid][Name], pInfo[playerid][Password], pInfo[playerid][Salt],
							pInfo[playerid][pSexo], pInfo[playerid][pEdad], pInfo[playerid][pRaza], pInfo[playerid][pDNI]);
				            mysql_tquery(g_SQL, query, "OnPlayerRegister", "d", playerid);


                        }
                        case 2:
                        {

                            new string[24] = "Europeo";
							format(pInfo[playerid][pRaza], sizeof(string), "%s", string);
		        			GameTextForPlayer(playerid, "~R~Bienvenido a la ciudad del pecado", 1500, 3);
		        			new query[270];
				            mysql_format(g_SQL, query, sizeof query, "INSERT INTO `jugadores` (`username`, `password`, `salt`, `pSexo`, `pEdad`, `pRaza`, `pDNI`) VALUES ('%e', '%s', '%e', '%i', '%i', '%s', '%d')", pInfo[playerid][Name], pInfo[playerid][Password], pInfo[playerid][Salt],
							pInfo[playerid][pSexo], pInfo[playerid][pEdad], pInfo[playerid][pRaza], pInfo[playerid][pDNI]);
				            mysql_tquery(g_SQL, query, "OnPlayerRegister", "d", playerid);


                        }
                        case 3:
                        {

                            new string[24] = "Afroamericano";
							format(pInfo[playerid][pRaza], sizeof(string), "%s", string);
		        			GameTextForPlayer(playerid, "~R~Bienvenido a la ciudad del pecado", 1500, 3);
		        			new query[270];
				            mysql_format(g_SQL, query, sizeof query, "INSERT INTO `jugadores` (`username`, `password`, `salt`, `pSexo`, `pEdad`, `pRaza`, `pDNI`) VALUES ('%e', '%s', '%e', '%i', '%i', '%s', '%d')", pInfo[playerid][Name], pInfo[playerid][Password], pInfo[playerid][Salt],
							pInfo[playerid][pSexo], pInfo[playerid][pEdad], pInfo[playerid][pRaza], pInfo[playerid][pDNI]);
				            mysql_tquery(g_SQL, query, "OnPlayerRegister", "d", playerid);


                        }
                        case 4:
                        {

                            new string[24] = "Asiбtico";
							format(pInfo[playerid][pRaza], sizeof(string), "%s", string);
		       				GameTextForPlayer(playerid, "~R~Bienvenido a la ciudad del pecado", 1500, 3);
		       				new query[270];
				            mysql_format(g_SQL, query, sizeof query, "INSERT INTO `jugadores` (`username`, `password`, `salt`, `pSexo`, `pEdad`, `pRaza`, `pDNI`) VALUES ('%e', '%s', '%e', '%i', '%i', '%s', '%d')", pInfo[playerid][Name], pInfo[playerid][Password], pInfo[playerid][Salt],
							pInfo[playerid][pSexo], pInfo[playerid][pEdad], pInfo[playerid][pRaza], pInfo[playerid][pDNI]);
				            mysql_tquery(g_SQL, query, "OnPlayerRegister", "d", playerid);


                        }
                        case 5:
                        {

                            new string[24] = "Oriental";
							format(pInfo[playerid][pRaza], sizeof(string), "%s", string);
                            GameTextForPlayer(playerid, "~R~Bienvenido a la ciudad del pecado", 1500, 3);
                            new query[270];
				            mysql_format(g_SQL, query, sizeof query, "INSERT INTO `jugadores` (`username`, `password`, `salt`, `pSexo`, `pEdad`, `pRaza`, `pDNI`) VALUES ('%e', '%s', '%e', '%i', '%i', '%s', '%d')", pInfo[playerid][Name], pInfo[playerid][Password], pInfo[playerid][Salt],
							pInfo[playerid][pSexo], pInfo[playerid][pEdad], pInfo[playerid][pRaza], pInfo[playerid][pDNI]);
				            mysql_tquery(g_SQL, query, "OnPlayerRegister", "d", playerid);

                        }
                        case 6:
                        {

                            new string[24] = "Бrabe";
							format(pInfo[playerid][pRaza], sizeof(string), "%s", string);
		       				GameTextForPlayer(playerid, "~R~Bienvenido a la ciudad del pecado", 1500, 3);
		       				new query[270];
				            mysql_format(g_SQL, query, sizeof query, "INSERT INTO `jugadores` (`username`, `password`, `salt`, `pSexo`, `pEdad`, `pRaza`, `pDNI`) VALUES ('%e', '%s', '%e', '%i', '%i', '%s', '%d')", pInfo[playerid][Name], pInfo[playerid][Password], pInfo[playerid][Salt],
							pInfo[playerid][pSexo], pInfo[playerid][pEdad], pInfo[playerid][pRaza], pInfo[playerid][pDNI]);
				            mysql_tquery(g_SQL, query, "OnPlayerRegister", "d", playerid);

                        }

				   }
		}
Mi cуdigo donde estб el update:

Код:
UpdatePlayerData(playerid)
{
	GetPlayerPos(playerid, pInfo[playerid][X_Pos], pInfo[playerid][Y_Pos], pInfo[playerid][Z_Pos]);
	GetPlayerFacingAngle(playerid, pInfo[playerid][A_Pos]);
	GetPlayerHealth(playerid, pInfo[playerid][pSalud]);
	GetPlayerArmour(playerid, pInfo[playerid][pChaleco]);
	GetPlayerMoney(playerid);
	GetPlayerSkin(playerid);
	new query[1024];
	mysql_format(g_SQL, query, sizeof query, "UPDATE `jugadores` SET `PosX` = '%f', `PosY` = '%f', `PosZ` = '%f', `PosA` = '%f', `interior` = '%d', `pSalud` = '%f', `pChaleco` = '%f', `isAlive` = '%d', `pDinero` = '%d', `pSkin` = '%d', `pNivel` = '%d', `pExp` = '%d', `pPrimerLog` = '%d', `pFaccion` = '%d', `pRango` = '%d' WHERE `id` = '%d'",
	pInfo[playerid][X_Pos], pInfo[playerid][Y_Pos], pInfo[playerid][Z_Pos], pInfo[playerid][A_Pos], GetPlayerInterior(playerid),
	pInfo[playerid][pSalud], pInfo[playerid][pChaleco], pInfo[playerid][isAlive], GetPlayerMoney(playerid), GetPlayerSkin(playerid), pInfo[playerid][pNivel], pInfo[playerid][pExp], 
	pInfo[playerid][pPrimerLog], pInfo[playerid][pFaccion], pInfo[playerid][pRango], pInfo[playerid][ID]);
	mysql_tquery(g_SQL, query);
    return 1;

}
Y el log de MySQL:

Код:
[22:40:15] [INFO] Callback 'OnPlayerDataLoaded' set up for delayed execution.
[22:40:15] [DEBUG] created delayed callback with 2 parameters
[22:40:15] [DEBUG] CHandle::Execute(this=0x843f80, type=1, query=0x8321f8)
[22:40:15] [DEBUG] CConnection::Execute(query=0x8321f8, this=0x3949020, connection=0x84f158)
[22:40:15] [DEBUG] CQuery::Execute(this=0x8321f8, connection=0x84f158)
[22:40:15] [DEBUG] CHandle::Execute - return value: true
[22:40:15] [DEBUG] mysql_tquery: return value: '1'
[22:40:15] [INFO] query "SELECT * FROM `jugadores` WHERE `username` = 'Jugador_Prueba' LIMIT 1" successfully executed within 0.454 milliseconds
[22:40:15] [DEBUG] CResultSet::Create(connection=0x84f158, query_str='SELECT * FROM `jugadores` WHERE `username` = 'Jugador_Prueba' LIMIT 1')
[22:40:15] [DEBUG] created new resultset '0x844578'
[22:40:15] [DEBUG] fetched MySQL result '0x87dea8'
[22:40:15] [DEBUG] allocated 0 bytes for PAWN result
[22:40:15] [DEBUG] CCallback::Execute(amx=0x29079a0, index=13, num_params=2)
[22:40:15] [INFO] Executing callback 'OnPlayerDataLoaded' with 2 parameters...
[22:40:15] [DEBUG] processing internal specifier 'c'
[22:40:15] [DEBUG] pushed value '1' onto AMX stack
[22:40:15] [DEBUG] processing internal specifier 'c'
[22:40:15] [DEBUG] pushed value '0' onto AMX stack
[22:40:15] [DEBUG] executing AMX callback with index '13'
[22:40:15] [DEBUG] cache_get_row_count(0x037FDAD8)
[22:40:15] [DEBUG] cache_get_row_count: return value: '1'
[22:40:15] [DEBUG] AMX callback executed with error '0'
[22:40:15] [INFO] Callback successfully executed.
[22:40:23] [DEBUG] mysql_format(1, 0x037FD478, 500, "INSERT INTO `jugadores` (`username`, `password`, `salt`, `pSexo`, `pEdad`, `pRaza`, `pDNI`) VALUES ('%e', '%s', '%e', '%i', '%i', '%s', '%i')")
[22:40:23] [DEBUG] CHandle::EscapeString(this=0x843f80, src='Jugador_Prueba')
[22:40:23] [DEBUG] CConnection::EscapeString(src='Jugador_Prueba', this=0x83a698, connection=0x844960)
[22:40:23] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'Jugador_Prueba'
[22:40:23] [DEBUG] CHandle::EscapeString(this=0x843f80, src='PWORDBORRADA')
[22:40:23] [DEBUG] CConnection::EscapeString(src='PWORDBORRADA', this=0x83a698, connection=0x844960)
[22:40:23] [DEBUG] CHandle::EscapeString - return value: true, escaped string: 'X7F,AC5V,GEc?\"mr'
[22:40:23] [DEBUG] mysql_format: return value: '244'
[22:40:23] [DEBUG] mysql_tquery(1, "INSERT INTO `jugadores` (`username`, `password`, `salt`, `pSexo`, `pEdad`, `pRaza`, `pDNI`) VALUES ('Jugador_Prueba', 'B9CD3E9561996A3B1ADD6C656584E6433CB64E799295F9811603F163A05C0420', 'X7F,AC5V,GEc?\"mr', '1', '30', 'Norteamericano', '105')", "OnPlayerRegister", "d")
[22:40:23] [DEBUG] CCallback::Create(amx=0x29079a0, name='OnPlayerRegister', format='d', params=0x37fd460, param_offset=5)
[22:40:23] [DEBUG] CCallback::Create - callback index for 'OnPlayerRegister': 16
[22:40:23] [DEBUG] processing specifier 'd' with parameter index 0
[22:40:23] [DEBUG] retrieved and pushed value '0'
[22:40:23] [INFO] Callback 'OnPlayerRegister' set up for delayed execution.
[22:40:23] [DEBUG] created delayed callback with 1 parameter
[22:40:23] [DEBUG] CHandle::Execute(this=0x843f80, type=1, query=0x831f98)
[22:40:23] [DEBUG] CConnection::Execute(query=0x831f98, this=0x3949020, connection=0x84f158)
[22:40:23] [DEBUG] CQuery::Execute(this=0x831f98, connection=0x84f158)
[22:40:23] [DEBUG] CHandle::Execute - return value: true
[22:40:23] [DEBUG] mysql_tquery: return value: '1'
[22:40:23] [INFO] query "INSERT INTO `jugadores` (`username`, `password`, `salt`, `pSexo`, `pEdad`, `pRaza`, `pDNI`) VALUES ('Jugador_Prueba', 'PWORDBORRADA', 'PWORDBORRADA', '1', '30', 'Norteamericano', '105')" successfully executed within 28.938 milliseconds
[22:40:23] [DEBUG] CResultSet::Create(connection=0x84f158, query_str='INSERT INTO `jugadores` (`username`, `password`, `salt`, `pSexo`, `pEdad`, `pRaza`, `pDNI`) VALUES ('Jugador_Prueba', 'PWORDBORRADA', 'PWORDBORRADA', '1', '30', 'Norteamericano', '105')')
[22:40:23] [DEBUG] created new resultset '0x844620'
[22:40:23] [DEBUG] fetched MySQL result '0x0'
[22:40:23] [DEBUG] CCallback::Execute(amx=0x29079a0, index=16, num_params=1)
[22:40:23] [INFO] Executing callback 'OnPlayerRegister' with 1 parameter...
[22:40:23] [DEBUG] processing internal specifier 'c'
[22:40:23] [DEBUG] pushed value '0' onto AMX stack
[22:40:23] [DEBUG] executing AMX callback with index '16'
[22:40:23] [DEBUG] cache_insert_id()
[22:40:23] [DEBUG] cache_insert_id: return value: '97'
[22:40:23] [DEBUG] AMX callback executed with error '0'
[22:40:23] [INFO] Callback successfully executed.
[22:40:27] [DEBUG] mysql_query(1, "SELECT pRaza FROM `jugadores` WHERE `ID` = 97", 1)
[22:40:27] [DEBUG] CHandle::Execute(this=0x843f80, type=3, query=0x831b70)
[22:40:27] [DEBUG] CConnection::Execute(query=0x831b70, this=0x83a698, connection=0x844960)
[22:40:27] [DEBUG] CQuery::Execute(this=0x831b70, connection=0x844960)
[22:40:27] [INFO] query "SELECT pRaza FROM `jugadores` WHERE `ID` = 97" successfully executed within 0.361 milliseconds
[22:40:27] [DEBUG] CResultSet::Create(connection=0x844960, query_str='SELECT pRaza FROM `jugadores` WHERE `ID` = 97')
[22:40:27] [DEBUG] created new resultset '0x844310'
[22:40:27] [DEBUG] fetched MySQL result '0x836c18'
[22:40:27] [DEBUG] allocated 28 bytes for PAWN result
[22:40:27] [DEBUG] CHandle::Execute - return value: true
[22:40:27] [DEBUG] mysql_query: return value: '2'
[22:40:27] [DEBUG] cache_get_value_name(0, "pRaza", 0x037FD958, 24)
[22:40:27] [DEBUG] cache_get_value_name: assigned value: 'Norteamericano'
[22:40:27] [DEBUG] cache_get_value_name: return value: '1'
[22:40:29] [DEBUG] mysql_format(1, 0x037FCC68, 1024, "UPDATE `jugadores` SET `PosX` = '%f', `PosY` = '%f', `PosZ` = '%f', `PosA` = '%f', `interior` = '%d', `pSalud` = '%f', `pChaleco` = '%f', `isAlive` = '%d', `pDinero` = '%d', `pSkin` = '%d', `pNivel` = '%d', `pExp` = '%d', `pPrimerLog` = '%d', `pFaccion` = '%d', `pRango` = '%d' WHERE `id` = '%d'")
[22:40:29] [DEBUG] mysql_format: return value: '343'
[22:40:29] [DEBUG] mysql_tquery(1, "UPDATE `jugadores` SET `PosX` = '313.030487', `PosY` = '-1798.796265', `PosZ` = '4.551658', `PosA` = '266.859589', `interior` = '0', `pSalud` = '100.000000', `pChaleco` = '0.000000', `isAlive` = '109', `pDinero` = '10000', `pSkin` = '96', `pNivel` = '1', `pExp` = '0', `pPrimerLog` = '0', `pFaccion` = '101', `pRango` = '114' WHERE `id` = '97'", "", "")
[22:40:29] [DEBUG] CCallback::Create(amx=0x29079a0, name='', format='', params=0x37fcc54, param_offset=5)
[22:40:29] [DEBUG] CHandle::Execute(this=0x843f80, type=1, query=0x832458)
[22:40:29] [DEBUG] CConnection::Execute(query=0x832458, this=0x3949020, connection=0x84f158)
[22:40:29] [DEBUG] CQuery::Execute(this=0x832458, connection=0x84f158)
[22:40:29] [DEBUG] CHandle::Execute - return value: true
[22:40:29] [DEBUG] mysql_tquery: return value: '1'
[22:40:29] [DEBUG] cache_is_valid(0)
[22:40:29] [DEBUG] cache_is_valid: return value: 'false'
[22:40:29] [INFO] query "UPDATE `jugadores` SET `PosX` = '313.030487', `PosY` = '-1798.796265', `PosZ` = '4.551658', `PosA` = '266.859589', `interior` = '0', `pSalud` = '100.000000', `pChaleco` = '0.000000', `isAlive` = '109', `pDinero` = '10000', `pSkin` = '96', `pNivel` = '1', `pExp` = '0', `pPrimerLog` = '0', `pFaccion` = '101', `pRango` = '114' WHERE `id` = '97'" successfully executed within 24.380 milliseconds
[22:40:29] [DEBUG] CResultSet::Create(connection=0x84f158, query_str='UPDATE `jugadores` SET `PosX` = '313.030487', `PosY` = '-1798.796265', `PosZ` = '4.551658', `PosA` = '266.859589', `interior` = '0', `pSalud` = '100.000000', `pChaleco` = '0.000000', `isAlive` = '109', `pDinero` = '10000', `pSkin` = '96', `pNivel` = '1', `pExp` = '0', `pPrimerLog` = '0', `pFaccion` = '101', `pRango` = '114' WHERE `id` = '97'')
[22:40:29] [DEBUG] created new resultset '0x8442a0'
[22:40:29] [DEBUG] fetched MySQL result '0x0'
Eso que en OnPlayerRegister le defino los valores de 0 a pFaccion y pRango y a isAlive de 1, lo mismo como valor default en la DB.
Cuando busco en TODO mi cуdigo en ningъn momento le otorgo esos valores.

Probablemente con lo que les copie no encuentren el error, їalgъn lugar donde pueda mirar? Me quedй sin ideas.

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)