Brauche Hilfe bei String Fehlern !

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 ich arbeite grade an einem Selfmade für meinen Server und brauche einmal eure Hilfe ich bin am Verzweifeln ich kriege es nicht Raus :/


    Fehlercode:
    D:\Kevin\SaR 0.0.1\pawno\include\dini.inc(239) : warning 219: local variable "string" shadows a variable at a preceding level
    D:\Kevin\SaR 0.0.1\gamemodes\sar.pwn(215) : warning 219: local variable "string" shadows a variable at a preceding level
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    2 Warnings.


    Also beim ersten Fehler weiß ich nicht was ich da Schreiben soll ! ;) Da es ja was mit der Dini Include zu tuhen hat !


    2 Fehler :
    Zeile 199-230
    ocmd:restart(playerid,params[])
    {
    if(isPlayerAnAdmin(playerid,6))
    {
    SendRconCommand("gmx");
    return 1;
    }
    SendClientMessage(playerid,BLAU,"Du hast Keine ADMIN Rechte!");
    return 1;
    }


    /*Fraktions Befehle*/


    /*Stats*/
    ocmd:stats(playerid,params[])
    {
    new string[128];
    new fraktname[64];
    switch(GetPVarInt(playerid,"Fraktion"))
    {
    case 0:{fraktname="Zivilist";}
    case 1:{fraktname=fraktname1;}
    }
    format(string,sizeof(string),"[Name: %s] [Level: %i] [Adminlevel: %i] [Fraktion: %s]",SpielerName(playerid),GetPlayerScore(playerid),GetPVarInt(playerid,"Adminlevel"),fraktname);
    SendClientMessage(playerid,BLAU,string);
    return 1;
    }


    public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
    {
    return 1;
    }


    Ich hoffe ihr Könnt mir Helfen !

    Einmal editiert, zuletzt von iEaZyEr ()

  • Der Error/Warning bedeutet , dass du die verwendete Variable bereits iwo im gleichen Sichtbereich, oder global deklariert hast.


    MFG

    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.

  • Hat nichts gebracht :(
    D:\Kevin\SaR 0.0.1\pawno\include\dini.inc(239) : warning 219: local variable "string" shadows a variable at a preceding level
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    1 Warning.


    ist noch da ist die Dini.inc :(