Ressourcenschonender

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • Beispiel bei einer LoadPlayer-Funktion (aus meinem Script entnommen)

    new query[100];
    format(query, sizeof(query), "SELECT * FROM `accounts` WHERE `Name`='%s'", GetName(playerid));
    mysql_query(query);
    mysql_store_result();
    if(mysql_num_rows())
    {
    New Field[64], data[64];
    mysql_fetch_row(data);

    mysql_fetch_field_row(Field, "Level");
    Spieler[playerid][pLevel] = strval(Field);

    mysql_fetch_field_row(Field, "SpawnHealth");
    Spieler[playerid][pSpawnHealth] = floatstr(Field);

    mysql_fetch_field_row(Field, "FraktionName");
    format(Spieler[playerid][pFraktionName], 32, Field);
    }


    © by me :D

  • Wenn dein Tabelle mit der Spalte "Geld " anfängt und genau in dieser Reihenfolge strukturiert ist, eigentlich schon.


    LG


    Naja, Es fängt mit id dann Name und dann Passwort an, und nach Passwort kommt dann Level und Dann Geld , .....
    Spielt ID,NAme, Passwort auch eine Rolle ? Muss ich da auch was davor schreiben ?? Logan

    MFG

    Einmal editiert, zuletzt von Nightstr3am ()

  • Ja musst du.
    Du musst genau nach der Struktur deiner Tabelle gehen.
    Also als erstes die ID dann der Name, und dann immer so weiter.


    LG

    Main: CPU: Intel Core i5-4440 @ 3,10 GHz | CPU-Cooling: Matterhorn -PURE- | RAM: 16GB Crucial Ballistix Sport DDR3-1600 DIMM CL9-9-9-24 |
    Motherboard: ASRock B85M Pro4 | GPU: Sapphire Radeon R9 390X Nitro 8GB GDDR5 |

    SSD: Samsung SSD 840 Evo 500GB | Power Supply: 550 Watt Corsair CS Series Modular 80+ Gold | Case: beQuiet! Silent Base 800


    As I walk through the valley of the shadow of death
    I take a look at my life and realize there's nothin' left.

  • Ich empfehle dir einfach mal das Tutorial anzuschauen:
    [ SCRIPTING ] sscanf 2.0
    Dort ist auch genauso ein Beispiel zu sehen.


    LG

    Main: CPU: Intel Core i5-4440 @ 3,10 GHz | CPU-Cooling: Matterhorn -PURE- | RAM: 16GB Crucial Ballistix Sport DDR3-1600 DIMM CL9-9-9-24 |
    Motherboard: ASRock B85M Pro4 | GPU: Sapphire Radeon R9 390X Nitro 8GB GDDR5 |

    SSD: Samsung SSD 840 Evo 500GB | Power Supply: 550 Watt Corsair CS Series Modular 80+ Gold | Case: beQuiet! Silent Base 800


    As I walk through the valley of the shadow of death
    I take a look at my life and realize there's nothin' left.