[Frage]dini

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
  • Hallo Community,
    bei mir stimmt was nicht ich bekomme Errors bei dieser Zeile hier:
    dini_IntSet(Spieler,"Geld",GetPlayerMoney[playerid][Geld]);
    Hier die Errors:


    C:\Users\Timo\Desktop\SAMP Server\gamemodes\Script.pwn(1683) : error 028: invalid subscript (not an array or too many subscripts): "GetPlayerMoney"
    C:\Users\Timo\Desktop\SAMP Server\gamemodes\Script.pwn(1683) : warning 215: expression has no effect
    C:\Users\Timo\Desktop\SAMP Server\gamemodes\Script.pwn(1683) : error 001: expected token: ";", but found "]"
    C:\Users\Timo\Desktop\SAMP Server\gamemodes\Script.pwn(1683) : error 029: invalid expression, assumed zero
    C:\Users\Timo\Desktop\SAMP Server\gamemodes\Script.pwn(1683) : fatal error 107: too many error messages on one line


    Ich hoffe ihr könnt mir helfen
    mfG xSonYx :thumbup:

    La Cosa Nostra ♥

  • do.de - Domain-Offensive - Domains für alle und zu super Preisen
  • stock SpielerSpeichern(playerid)
    {
    new Spieler[64];
    new Sname[MAX_PLAYER_NAME];
    GetPlayerName(playerid,Sname,sizeof(Sname));
    format(Spieler,sizeof(Spieler),"/Spieler/%s.txt",Sname);
    if(dini_Exists(Spieler))
    {
    dini_IntSet(Spieler,"Adminlevel",sSpieler[playerid][Adminlevel]);
    dini_IntSet(Spieler,"Level",sSpieler[playerid][Level]);
    dini_IntSet(Spieler,"Fraktion",sSpieler[playerid][Fraktion]);
    dini_IntSet(Spieler,"AutoLicense",sSpieler[playerid][AutoLicense]);
    dini_IntSet(Spieler,"BikeLicense",sSpieler[playerid][BikeLicense]);
    dini_IntSet(Spieler,"BootLicense",sSpieler[playerid][BootLicense]);
    dini_IntSet(Spieler,"LKWLicense",sSpieler[playerid][LKWLicense]);
    dini_IntSet(Spieler,"FlugLicense",sSpieler[playerid][FlugLicense]);
    dini_IntSet(Spieler,"WaffenLicense",sSpieler[playerid][WaffenLicense]);
    dini_IntSet(Spieler,"Job",sSpieler[playerid][Job]);
    dini_IntSet(Spieler,"Geld",GetPlayerMoney(playerid));
    dini_IntSet(Spieler,"Konto",sSpieler[playerid][Konto]);
    dini_IntSet(Spieler,"Banned",sSpieler[playerid][Banned]);
    }
    return 1;
    }

    La Cosa Nostra ♥

  • stock SpielerLaden(playerid)
    {
    new Spieler[64];
    new Sname[MAX_PLAYER_NAME];
    GetPlayerName(playerid,Sname,sizeof(Sname));
    format(Spieler,sizeof(Spieler),"/Spieler/%s.txt",Sname);
    if(dini_Exists(Spieler))
    {
    SetPlayerScore(playerid,dini_Int(Spieler,"Level"));
    sSpieler[playerid][Adminlevel] = dini_Int(Spieler,"Adminlevel");
    sSpieler[playerid][Level] = dini_Int(Spieler,"Level");
    sSpieler[playerid][Fraktion] = dini_Int(Spieler,"Fraktion");
    sSpieler[playerid][Job] = dini_Int(Spieler,"Job");
    SetPVarInt(playerid,"AutoLicense",dini_Int(Spieler,"Autolicense"));
    SetPVarInt(playerid,"BikeLicense",dini_Int(Spieler,"BikeLicense"));
    SetPVarInt(playerid,"BootLicense",dini_Int(Spieler,"BootLicense"));
    SetPVarInt(playerid,"LKWLicense",dini_Int(Spieler,"LKWLicense"));
    SetPVarInt(playerid,"FlugLicense",dini_Int(Spieler,"FlugLicense"));
    SetPVarInt(playerid,"WaffenLicense",dini_Int(Spieler,"WaffenLicense"));
    SetPVarInt(playerid,"Job",dini_Int(Spieler,"Job"));
    SetPVarInt(playerid,"Banned",dini_Int(Spieler,"Banned"));
    SetPlayerMoney(playerid,GetPVarInt(playerid,"Geld"));
    if(GetPVarInt(playerid,"Banned")==1)
    {
    SendClientMessage(playerid,Rot,"Du bist vom Server gebannt!");
    Kick(playerid);
    }
    sSpieler[playerid][sLogin] = 1;
    SetSpawnInfo(playerid,0,0,1958.33, 1343.12, 15.36,0,0,0,0,0,0,0);
    SpawnPlayer(playerid);
    }
    return 1;
    }


    warum soll es am laden liegen wenn nach dem DISCONNECTEN in der datei immernoch 0 steht bei Geld das ahat doch nix mit dem laden zu tun
    mfG

    La Cosa Nostra ♥


  • stock SpielerLaden(playerid)
    {
    new Spieler[64];
    new Sname[MAX_PLAYER_NAME];
    GetPlayerName(playerid,Sname,sizeof(Sname));
    format(Spieler,sizeof(Spieler),"/Spieler/%s.txt",Sname);
    if(dini_Exists(Spieler))
    {
    SetPlayerScore(playerid,dini_Int(Spieler,"Level"));
    sSpieler[playerid][Adminlevel] = dini_Int(Spieler,"Adminlevel");
    sSpieler[playerid][Level] = dini_Int(Spieler,"Level");
    sSpieler[playerid][Fraktion] = dini_Int(Spieler,"Fraktion");
    sSpieler[playerid][Job] = dini_Int(Spieler,"Job");
    SetPVarInt(playerid,"AutoLicense",dini_Int(Spieler,"Autolicense"));
    SetPVarInt(playerid,"BikeLicense",dini_Int(Spieler,"BikeLicense"));
    SetPVarInt(playerid,"BootLicense",dini_Int(Spieler,"BootLicense"));
    SetPVarInt(playerid,"LKWLicense",dini_Int(Spieler,"LKWLicense"));
    SetPVarInt(playerid,"FlugLicense",dini_Int(Spieler,"FlugLicense"));
    SetPVarInt(playerid,"WaffenLicense",dini_Int(Spieler,"WaffenLicense"));
    SetPVarInt(playerid,"Geld", dini_Int(Spieler,"Geld"));
    SetPVarInt(playerid,"Job",dini_Int(Spieler,"Job"));
    SetPVarInt(playerid,"Banned",dini_Int(Spieler,"Banned"));
    GivePlayerMoney(playerid,GetPVarInt(playerid,"Geld"));
    if(GetPVarInt(playerid,"Banned")==1)
    {
    SendClientMessage(playerid,Rot,"Du bist vom Server gebannt!");
    Kick(playerid);
    }
    sSpieler[playerid][sLogin] = 1;
    SetSpawnInfo(playerid,0,0,1958.33, 1343.12, 15.36,0,0,0,0,0,0,0);
    SpawnPlayer(playerid);
    }
    return 1;
    }