Warning

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 Leute,
    Ich hab hier folgende Warnungen:
    C:\Users\Kai\Desktop\Real - Kopie\gamemodes\gfl.pwn(1500) : warning 219: local variable "x2" shadows a variable at a preceding level
    C:\Users\Kai\Desktop\Real - Kopie\gamemodes\gfl.pwn(1500) : warning 219: local variable "y2" shadows a variable at a preceding level
    C:\Users\Kai\Desktop\Real - Kopie\gamemodes\gfl.pwn(1500) : warning 219: local variable "z2" shadows a variable at a preceding level
    Wenn ich aber daraus ein x3, y3, z3 mache kommt:
    C:\Users\Kai\Desktop\Real - Kopie\gamemodes\gfl.pwn(1506) : error 035: argument type mismatch (argument 2)
    C:\Users\Kai\Desktop\Real - Kopie\gamemodes\gfl.pwn(1507) : error 035: argument type mismatch (argument 1)
    C:\Users\Kai\Desktop\Real - Kopie\gamemodes\gfl.pwn(1500) : warning 203: symbol is never used: "z3"
    C:\Users\Kai\Desktop\Real - Kopie\gamemodes\gfl.pwn(1500) : warning 203: symbol is never used: "y3"
    C:\Users\Kai\Desktop\Real - Kopie\gamemodes\gfl.pwn(1500) : warning 203: symbol is never used: "x3"


    Wie bekomm ich die Warnings bzw Errors los`?

    Meine Ziele
    350 Posts [X]

    375 Posts [X]

    400 Posts []

    425 Posts []

    450 Posts []



  • Die zeilen wehren mal nit schlecht etwas davor und etwas danach bitte :thumbup:

  • public Float:GetDistanceBetweenPlayers(p1,p2)
    {
    new Float:x1,Float:y1,Float:z1,Float:x2,Float:y2,Float:z2;
    if(!IsPlayerConnected(p1) || !IsPlayerConnected(p2))
    {
    return -1.00;
    }
    GetPlayerPos(p1,x1,y1,z1);
    GetPlayerPos(p2,x2,y2,z2);
    return floatsqroot(floatpower(floatabs(floatsub(x2,x1)),2)+floatpower(floatabs(floatsub(y2,y1)),2)+floatpower(floatabs(floatsub(z2,z1)),2));
    }


    edit: Bei Zeile 3 sind die Warnings


    Hier.
    Diese Warnigs hab ich, seitdem ich streamer.inc includiert hab


    edit2: Ich hab diese Warnings auch noch inner anderen Zeile


    Edit3: Frage neu formuliert

    Meine Ziele
    350 Posts [X]

    375 Posts [X]

    400 Posts []

    425 Posts []

    450 Posts []



    2 Mal editiert, zuletzt von _Tweak_ ()