Beiträge von Dark Leary

    Hey ein einfaches problem nur ich weiss die lösung nicht ;)


    meine Errors: C:\Users\Dominik Binder\Desktop\Desktop\Deluxe Reallife\gamemodes\Deluxe.pwn(8168) : warning 211: possibly unintended assignment


    die for(new schleife:

    for(new i = 0; i = MAX_BIZZES; i++)
    {
    BizzInfo[i][pProds] --;
    }

    Hey das doofe MySQL -.-


    ich habe es jetzt schon 5 mal neu geschrieben aber es speichert einfach nicht ab -.-
    der Accounts etc. wird erstellt... aber es wird nichts gespeichert....
    wieso??
    bitte Hilfe!


    ich habe überall SavePlayer(playerid); also spart euch bitte solche sachen.


    stock SavePlayer(playerid)
    {
    mysql_SetInt("accounts", "Level", GetPlayerScore(playerid), "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Geld", GetPlayerMoney(playerid), "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Skin", GetPlayerSkin(playerid), "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Member", PlayerInfo[playerid][pMember], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Job", PlayerInfo[playerid][pJob], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Job Zeit", PlayerInfo[playerid][pJobTime], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Leader", PlayerInfo[playerid][pLeader], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "FrakRank", PlayerInfo[playerid][pFRank], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Member", PlayerInfo[playerid][pMember], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Adminlevel", PlayerInfo[playerid][pAdmin], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Supporter", PlayerInfo[playerid][pSupporter], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Ban", PlayerInfo[playerid][pBan], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Fuehrerschein", PlayerInfo[playerid][pDriverLic], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Personalausweis", PlayerInfo[playerid][pPerso], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Wantedlevel", GetPlayerWantedLevel(playerid), "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Krankenversicherung", PlayerInfo[playerid][pVersichert], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Verwarnungen", PlayerInfo[playerid][pWarn], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Geschlecht", PlayerInfo[playerid][pGeschlecht], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Waffenschein", PlayerInfo[playerid][pWaffenschein], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Lunch", PlayerInfo[playerid][pLunch], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Angelschein", PlayerInfo[playerid][pAngel], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "iPod", PlayerInfo[playerid][pIPod], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Fraktionsname", PlayerInfo[playerid][pFName], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Bank", PlayerInfo[playerid][Bank], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Geburtsjahr", PlayerInfo[playerid][pDate], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Jailtime", PlayerInfo[playerid][pJailtime], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Wanteds", PlayerInfo[playerid][pWanted], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Gestorben", PlayerInfo[playerid][pTot], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "PTX", PlayerInfo[playerid][pTx], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "PTY", PlayerInfo[playerid][pTy], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "PTZ", PlayerInfo[playerid][pTz], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "NextPayday", Acc[playerid][NextPayday], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "ErsterLog", PlayerInfo[playerid][FirstLog], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastX", PlayerInfo[playerid][LogX], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastY", PlayerInfo[playerid][LogY], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastZ", PlayerInfo[playerid][LogZ], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastA", PlayerInfo[playerid][LogA], "Name", PlayerInfo[playerid][pName]);
    return 1;
    }

    Hey irgentwie wird mein Account nie gespeichert.....
    ich bin der meinung, das etwas an der Tabelle nicht stimmt...
    bitte help!


    .sql:

    new string[2900] = "CREATE TABLE IF NOT EXISTS `accounts` (";
    strcat(string,"`id` int(11) NOT NULL AUTO_INCREMENT,");
    strcat(string,"`Name` varchar(24) NOT NULL,");
    strcat(string,"`Passwort` varchar(128) NOT NULL,");
    strcat(string,"`Level` int(11) NOT NULL DEFAULT '1',");
    strcat(string,"`Geld` int(11) NOT NULL DEFAULT '10000',");
    strcat(string,"`Skin` int(11) NOT NULL DEFAULT '137',");
    strcat(string,"`Member` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Job` int NOT NULL DEFAULT '0',");
    strcat(string,"`Job Zeit` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Leader` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`FrakRank` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Adminlevel` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Supporter` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Ban` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Fuehrerschein` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Personalausweis` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Wantedlevel` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Krankenversicherung` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Verwarnungen` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Geschlecht` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Waffenschein` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Lunch` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Angelschein` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`iPod` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Fraktionsname` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Bank` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Geburtsjahr` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Jailtime` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Wanteds` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`Gestorben` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`PTX` float(11) NOT NULL DEFAULT '0',");
    strcat(string,"`PTY` float(11) NOT NULL DEFAULT '0',");
    strcat(string,"`PTZ` float(11) NOT NULL DEFAULT '0',");
    strcat(string,"`NextPayday` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`ErsterLog` int(11) NOT NULL DEFAULT '0',");
    strcat(string,"`LastX` float(11) NOT NULL DEFAULT '0',");
    strcat(string,"`LastY` float(11) NOT NULL DEFAULT '0',");
    strcat(string,"`LastZ` float(11) NOT NULL DEFAULT '0',");
    strcat(string,"`LastA` float(11) NOT NULL DEFAULT '0',");
    strcat(string,"PRIMARY KEY (`id`)");
    strcat(string,") ENGINE=MyISAM AUTO_INCREMENT=220 DEFAULT CHARSET=latin1;");
    mysql_query(string);


    SavePlayer
    stock SavePlayer(playerid)
    {
    mysql_SetInt("accounts", "Level", GetPlayerScore(playerid), "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Geld", GetPlayerMoney(playerid), "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Skin", GetPlayerSkin(playerid), "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Member", PlayerInfo[playerid][pMember], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Job", PlayerInfo[playerid][pJob], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Job Zeit", PlayerInfo[playerid][pJobTime], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Leader", PlayerInfo[playerid][pLeader], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "FrakRank", PlayerInfo[playerid][pFRank], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Member", PlayerInfo[playerid][pMember], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Adminlevel", PlayerInfo[playerid][pAdmin], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Supporter", PlayerInfo[playerid][pSupporter], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Ban", PlayerInfo[playerid][pBan], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Fuehrerschein", PlayerInfo[playerid][pDriverLic], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Personalausweis", PlayerInfo[playerid][pPerso], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Wantedlevel", GetPlayerWantedLevel(playerid), "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Krankenversicherung", PlayerInfo[playerid][pVersichert], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Verwarnungen", PlayerInfo[playerid][pWarn], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Geschlecht", PlayerInfo[playerid][pGeschlecht], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Waffenschein", PlayerInfo[playerid][pWaffenschein], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Lunch", PlayerInfo[playerid][pLunch], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Angelschein", PlayerInfo[playerid][pAngel], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "iPod", PlayerInfo[playerid][pIPod], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Fraktionsname", PlayerInfo[playerid][pFName], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Bank", PlayerInfo[playerid][Bank], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Geburtsjahr", PlayerInfo[playerid][pDate], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Jailtime", PlayerInfo[playerid][pJailtime], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Wanteds", PlayerInfo[playerid][pWanted], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Gestorben", PlayerInfo[playerid][pTot], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "PTX", PlayerInfo[playerid][pTx], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "PTY", PlayerInfo[playerid][pTy], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "PTZ", PlayerInfo[playerid][pTz], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "NextPayday", Acc[playerid][NextPayday], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "ErsterLog", PlayerInfo[playerid][FirstLog], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastX", PlayerInfo[playerid][LogX], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastY", PlayerInfo[playerid][LogY], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastZ", PlayerInfo[playerid][LogZ], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastA", PlayerInfo[playerid][LogA], "Name", PlayerInfo[playerid][pName]);
    return 1;
    }

    Hey leute


    ich und Skyz haben ein kleines Lets Play gemacht
    in dem Spiel Terraria
    es hat sehr spaß gemacht und war lustig


    viel spaß beim Video :)

    Externer Inhalt www.youtube.com
    Inhalte von externen Seiten werden ohne Ihre Zustimmung nicht automatisch geladen und angezeigt.
    Durch die Aktivierung der externen Inhalte erklären Sie sich damit einverstanden, dass personenbezogene Daten an Drittplattformen übermittelt werden. Mehr Informationen dazu haben wir in unserer Datenschutzerklärung zur Verfügung gestellt.


    Empfohlen:
    Tarraria
    Abo :)

    Hey irgentwie speichert mein MySQL nichts....
    darum wird man auch nicht da gespawnt wo man ausloggt...
    meine Save Code



    stock SavePlayer(playerid)
    {
    mysql_SetInt("accounts", "Level", GetPlayerScore(playerid), "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Geld", GetPlayerMoney(playerid), "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Skin", GetPlayerSkin(playerid), "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Member", PlayerInfo[playerid][pMember], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Job", PlayerInfo[playerid][pJob], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Job Zeit", PlayerInfo[playerid][pJobTime], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Leader", PlayerInfo[playerid][pLeader], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "FrakRank", PlayerInfo[playerid][pFRank], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Member", PlayerInfo[playerid][pMember], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Adminlevel", PlayerInfo[playerid][pAdmin], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Supporter", PlayerInfo[playerid][pSupporter], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Ban", PlayerInfo[playerid][pBan], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Fuehrerschein", PlayerInfo[playerid][pDriverLic], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Personalausweis", PlayerInfo[playerid][pPerso], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Wantedlevel", GetPlayerWantedLevel(playerid), "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Krankenversicherung", PlayerInfo[playerid][pVersichert], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Verwarnungen", PlayerInfo[playerid][pWarn], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Geschlecht", PlayerInfo[playerid][pGeschlecht], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Waffenschein", PlayerInfo[playerid][pWaffenschein], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Lunch", PlayerInfo[playerid][pLunch], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Angelschein", PlayerInfo[playerid][pAngel], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "iPod", PlayerInfo[playerid][pIPod], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Fraktionsname", PlayerInfo[playerid][pFName], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Bank", PlayerInfo[playerid][Bank], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Geburtsjahr", PlayerInfo[playerid][pDate], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Jailtime", PlayerInfo[playerid][pJailtime], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Wanteds", PlayerInfo[playerid][pWanted], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "Gestorben", PlayerInfo[playerid][pTot], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "PTX", PlayerInfo[playerid][pTx], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "PTY", PlayerInfo[playerid][pTy], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "PTZ", PlayerInfo[playerid][pTz], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "NextPayday", Acc[playerid][NextPayday], "Name", PlayerInfo[playerid][pName]);
    mysql_SetInt("accounts", "ErsterLog", PlayerInfo[playerid][FirstLog], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastX", PlayerInfo[playerid][LogX], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastY", PlayerInfo[playerid][LogY], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastZ", PlayerInfo[playerid][LogZ], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastA", PlayerInfo[playerid][LogA], "Name", PlayerInfo[playerid][pName]);
    return 1;
    }

    Hey ich kämpfe heute schon den ganzen tag...
    aber ich schaffe es einfach nicht...
    eigentlich müsste es funktionieren..



    //Spieler Enum
    Float:LogX,
    Float:LogY,
    Float:LogZ,
    Float:LogA


    //OnPlayerSpawn
    new Float:X = PlayerInfo[playerid][LogX];
    new Float:Y = PlayerInfo[playerid][LogY];
    new Float:Z = PlayerInfo[playerid][LogZ];
    new Float:A = PlayerInfo[playerid][LogA];


    new ftext[20];
    if(PlayerInfo[playerid][pMember] == 0){ ftext = "Zivilist"; }
    else if(PlayerInfo[playerid][pMember] == 1){ ftext = "LSPD"; }
    else if(PlayerInfo[playerid][pMember] == 2){ ftext = "LSFD"; }
    else if(PlayerInfo[playerid][pMember] == 3){ ftext = "Medic"; }
    else if(PlayerInfo[playerid][pMember] == 4){ ftext = "Ordnungsamt"; }
    else if(PlayerInfo[playerid][pMember] == 5){ ftext = "Spedition"; }
    else if(PlayerInfo[playerid][pMember] == 6){ ftext = "Termis Bratwa"; }
    else if(PlayerInfo[playerid][pMember] == 7){ ftext = "West Coast Customs"; }
    else if(PlayerInfo[playerid][pMember] == 8){ ftext = "Dillimore Devils"; }
    else if(PlayerInfo[playerid][pMember] == 9){ ftext = "Gourillas"; }

    new string[128],string2[128],string3[128];
    SetPlayerPos(playerid,X,Y,Z);
    SetPlayerFacingAngle(playerid,A);

    format(string,sizeof(string),"Du wurdest als %d Administrator gespawnt.",PlayerInfo[playerid][pAdmin]);
    format(string2,sizeof(string2),"Du wurdest als %d Supporter gespawnt.",PlayerInfo[playerid][pSupporter]);
    format(string3,sizeof(string3),"Du wurdest mit der Fraktion %s gespawnt.",ftext);
    if(PlayerInfo[playerid][pAdmin] >= 1)
    {
    SendClientMessage(playerid,Türkis,string);
    }
    if(PlayerInfo[playerid][pSupporter] >= 1)
    {
    SendClientMessage(playerid,Türkis,string2);
    }
    if(PlayerInfo[playerid][pLeader] == 0||PlayerInfo[playerid][pMember] == 0)
    {
    SendClientMessage(playerid,Türkis,string3);
    }


    //OnPlayerDisconnect
    new Float:X,Float:Y,Float:Z,Float:A;
    GetPlayerPos(playerid,X,Y,Z);
    GetPlayerFacingAngle(playerid,A);
    PlayerInfo[playerid][LogX] = X;
    PlayerInfo[playerid][LogY] = Y;
    PlayerInfo[playerid][LogZ] = Z;
    PlayerInfo[playerid][LogA] = A;
    SavePlayer(playerid);


    //SpielerSpeichern
    mysql_SetFloat("accounts", "LastX", PlayerInfo[playerid][LogX], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastY", PlayerInfo[playerid][LogY], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastZ", PlayerInfo[playerid][LogZ], "Name", PlayerInfo[playerid][pName]);
    mysql_SetFloat("accounts", "LastA", PlayerInfo[playerid][LogA], "Name", PlayerInfo[playerid][pName]);


    //SpielerLaden
    PlayerInfo[playerid][LogX] = mysql_GetFloat("accounts", "LastX", "Name", PlayerInfo[playerid][pName]);
    PlayerInfo[playerid][LogY] = mysql_GetFloat("accounts", "LastY", "Name", PlayerInfo[playerid][pName]);
    PlayerInfo[playerid][LogZ] = mysql_GetFloat("accounts", "LastZ", "Name", PlayerInfo[playerid][pName]);
    PlayerInfo[playerid][LogA] = mysql_GetFloat("accounts", "LastA", "Name", PlayerInfo[playerid][pName]);

    new Float:X = PlayerInfo[playerid][LogX];
    new Float:Y = PlayerInfo[playerid][LogY];
    new Float:Z = PlayerInfo[playerid][LogZ];
    new Float:A = PlayerInfo[playerid][LogA];


    so klappts

    Bekomme warnings obwohl ich da nichts falsches sehe....



    new X = PlayerInfo[playerid][LogX];
    new Y = PlayerInfo[playerid][LogY];
    new Z = PlayerInfo[playerid][LogZ];
    new A = PlayerInfo[playerid][LogA];

    Mein problem ist das..
    das mysql_GetInt wird 5 stellig definiert.. aber ich weiss nicht
    wie ich es 3 stellig mache...


    mysql_SetInt(Table[], Field[], To, Where[], Where2[])
    mysql_SetFloat(Table[], Field[], Float:To, Where[], Where2[])


    mysql_SetInt("bizzs", "Name", BizzInfo[bizzid][bname]);
    mysql_SetFloat("bizzs", "X", BizzInfo[bizzid][bx]);