Player positions not loading properly
#1

I've got another problem. Basically on my load player, it doesn't load the players position properly. It always spawns them at the blueberry farm instead of their most recent position before leaving. Here are the codes that could be affecting this:
PHP код:
Of course on the dialog login it allows them to access the request class, and with or without the logged in statement on requestclass does not affect results
 
public OnPlayerRequestClass(playeridclassid)
{
    if(
playerInfo[playerid][LoggedIn] == true)
    {
        new 
Float:posXFloat:posYFloat:posZ;
        
cache_get_value_name_float(0"playerX"posX);
        
cache_get_value_name_float(0"playerY"posY);
        
cache_get_value_name_float(0"playerZ",posZ);
        
SetSpawnInfoplayerid00posXposYposZ000000);
        
SpawnPlayer(playerid);
    }
    return 
1;
}
 
stock LoadPlayerStats(playerid)
{
    if(
playerInfo[playerid][LoggedIn] ==  true)
    {
        new 
query[200], name[24];
        
GetPlayerName(playeridname24);
        
format(querysizeof(query), "SELECT * FROM `accounts` WHERE `playerName` = '%s'"name);
        
mysql_tquery(Databasequery);
        
playerInfo[playerid][playerAdmin] = cache_get_value_int(0"playerAdmin"playerInfo[playerid][playerAdmin]);
        
playerInfo[playerid][playerMod] = cache_get_value_int(0"playerMod"playerInfo[playerid][playerMod]);
        
playerInfo[playerid][playerHelper] = cache_get_value_int(0"playerHelper"playerInfo[playerid][playerHelper]);
        
playerInfo[playerid][playerLevel] = cache_get_value_int(0"playerLevel"playerInfo[playerid][playerLevel]);
        
playerInfo[playerid][playerCash] = cache_get_value_int(0"playerCash"playerInfo[playerid][playerCash]);
        
SetPlayerScore(playeridplayerInfo[playerid][playerLevel]);
        
GivePlayerMoney(playeridplayerInfo[playerid][playerCash]);
        
printf("player loaded.");
    }

Reply


Messages In This Thread
Player positions not loading properly - by OMonger - 25.07.2018, 18:04
Re: Player positions not loading properly - by Usmanmemon - 25.07.2018, 18:23
Re: Player positions not loading properly - by denNorske - 25.07.2018, 19:51
Re: Player positions not loading properly - by Calisthenics - 25.07.2018, 19:54
Re: Player positions not loading properly - by OMonger - 25.07.2018, 20:02
Re: Player positions not loading properly - by Calisthenics - 25.07.2018, 20:28
Re: Player positions not loading properly - by GTLS - 26.07.2018, 14:47

Forum Jump:


Users browsing this thread: 4 Guest(s)