Hilfe bei Register

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
  • Hey liebe Forum User


    Seid Tagen versuche ich es erneut doch ich bekomme immerwieder die selben Errors


    Ich hoffe das ihr mir helfen könnt.


    Hier die Error Codes ;


    C:\Users\USER\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(260) : warning 215: expression has no effect
    C:\Users\USER\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(273) : error 001: expected token: "-identifier-", but found "("
    C:\Users\USER\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(277) : warning 219: local variable "name" shadows a variable at a preceding level
    C:\Users\USER\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(277) : error 010: invalid function or declaration
    C:\Users\USER\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(277) : error 010: invalid function or declaration
    C:\Users\USER\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(277 -- 280) : warning 219: local variable "Accounts" shadows a variable at a preceding level
    C:\Users\USER\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(277 -- 280) : error 010: invalid function or declaration
    C:\Users\USER\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(277 -- 280) : fatal error 107: too many error messages on one line



    mfG


    Mr.Nuke

  • Code bitte ;)

    "Imagine if the government went after corruption as hard as it goes after guys who run filesharing sites. Priorities. " - @Snowden
    "More worrying than FBI temporarily running a server that contained child porn, is hacking computers anywhere in the world with one warrant" - @josephfcox

  • stock Register(playerid,key)
    {
    new Accounts[64];
    new name [MAX_PLAYER_NAME];
    GetPlayername(playerid,name,sizeof(name));
    format (Accounts,sizeof(Accounts),"/Accounts/%s.txt",name);
    dini_Create(Accounts);
    dini_Set(Accounts,"Passwort",key);
    SendClientMessage(playerid,GRÜN,"Erfolgreich Registriert.");
    return 1;
    }

  • Danke


    Die Errors sind zwar weg


    doch jetzt habe ich diese neuen Errors



    C:\Users\Lego\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(260) : warning 215: expression has no effect
    C:\Users\Lego\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(273) : error 001: expected token: "-identifier-", but found "("
    C:\Users\Lego\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(277) : warning 219: local variable "name" shadows a variable at a preceding level
    C:\Users\Lego\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(277) : error 010: invalid function or declaration
    C:\Users\Lego\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(277) : error 010: invalid function or declaration
    C:\Users\Lego\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(277 -- 280) : warning 219: local variable "Accounts" shadows a variable at a preceding level
    C:\Users\Lego\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(277 -- 280) : error 010: invalid function or declaration
    C:\Users\Lego\Desktop\SAMP SERVER\gamemodes\grandlarc.pwn(277 -- 280) : fatal error 107: too many error messages on one line

  • stock Register(playerid,Key[])
    {
    new Spielerdatei[64];
    new name[MAX_PLAYER_NAME];
    GetPlayerName(playerid,name,sizeof(name));
    format(Spielerdatei,sizeof(Spielerdatei),"/Accounts/%s.txt",name);
    dini_Create(Spielerdatei);
    dini_Set(Spielerdatei,"Passwort",Key);
    SendClientMessage(playerid,GRÜN,"Du hast dich erfolgreich Registriert!");
    }

    Versuchs mal so... Das ist aus meinem Script rauskopiert. Einfach die Namen so ändern wie du sie brauchst.


    Dein Fehler ist. "stock Register (playerid,key[]) du hast das [ ] vergessen.