Pls Help ....

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 ich habe folgende Fehler


    C:\Users\Marcel\Desktop\pawno\include\morphinc.inc(3) : warning 219: local variable "x2" shadows a variable at a preceding level
    C:\Users\Marcel\Desktop\pawno\include\morphinc.inc(3) : warning 219: local variable "y2" shadows a variable at a preceding level
    C:\Users\Marcel\Desktop\pawno\include\morphinc.inc(3) : warning 219: local variable "z2" shadows a variable at a preceding level
    C:\Users\Marcel\Desktop\V3.6\V3.6final_by_grcflip.pwn(1179) : warning 219: local variable "x2" shadows a variable at a preceding level
    C:\Users\Marcel\Desktop\V3.6\V3.6final_by_grcflip.pwn(1179) : warning 219: local variable "y2" shadows a variable at a preceding level
    C:\Users\Marcel\Desktop\V3.6\V3.6final_by_grcflip.pwn(1179) : warning 219: local variable "z2" shadows a variable at a preceding level
    C:\Users\Marcel\Desktop\V3.6\V3.6final_by_grcflip.pwn(10217) : error 021: symbol already defined: "strtok"
    C:\Users\Marcel\Desktop\V3.6\V3.6final_by_grcflip.pwn(10232) : error 047: array sizes do not match, or destination array is too small
    C:\Users\Marcel\Desktop\V3.6\V3.6final_by_grcflip.pwn(12964) : warning 219: local variable "mod" shadows a variable at a preceding level
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    2 Errors.


    Script: V3.6final_by_grcflip


    pls um help ...

  • sry leute für doppelpost aber ich brauche es echt drigend ...


    Edit by Sebihunter: Sorry Leute für Doppelpost aber ich brauche die Verwarnung echt dringend...

    2 Mal editiert, zuletzt von Sebihunter ()

  • 2 Stunden sind kein Grund doppelzuposten -.-"


    Schau mal in die Zeile 1179. Es werden dort Variablen erstellt, die schon in der Morphinc sind. Einfach bei dir im Script oder in der Morphinc die Variablen x2,y2 und z2 umbenennen.


    Bei Zeile 12964 ist wahrscheinlich bei /buygun-Befehl, bei dem die Variable mod benutzt wird, die aber auch in dini o.ä. von DracoBlue ist. Auch hier einfach in einem von beidem die Variable umbenennen.


    Der Rest sind wahrscheinlich Folgefehler, wenn nicht, einfach mal die Zeilen Posten.


    Ich scripte NICHT mehr, ich möchte mit NIEMANDEM einen Server aufmachen habe auch NICHTS mehr mit LoH zu tun, also lasst es mit den PNs!

  • Hallo so hier ist sind die zeilen


    1169 - 1187



    new SavePlayerPos[MAX_PLAYERS][SavePlayerPosEnum];
    new SpeedMode = 1;
    new UpdateSeconds = 1;


    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));
    }

    10214 - 10233

    strtok(const string[], &index)
    {
    new length = strlen(string);
    while ((index < length) && (string[index] <= ' '))
    {
    index++;
    }


    new offset = index;
    new result[20];
    while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
    {
    result[index - offset] = string[index];
    index++;
    }
    result[index - offset] = EOS;
    return result;
    }

    12937 - 12967
    if (strcmp(cmd, "/buygun", true) == 0)
    {
    if(IsPlayerConnected(playerid))
    {
    if(GetPlayerMoney(playerid) < 1)
    {
    SendClientMessage(playerid, COLOR_GREY, " Du hast nicht soviel Geld bei dir !");
    return 1;
    }
    new gun;
    new gunid[16];
    new gunstring1[256];
    new gunstring2[256];
    new gunstring3[256];
    new gunstring4[256];
    new gunstring5[256];
    new infostring[256];
    new guncharge;
    new ammocharge;
    new location = PlayerInfo[playerid][pLocal];
    if(location == 99 || location == 100 || location == 102)
    {
    if(BizzInfo[location-99][bProducts] <= 0)
    {
    GameTextForPlayer(playerid, "~r~Die Firma hat leider keine Ressourcen mehr dazu", 5000, 1);
    return 1;
    }
    new mod = 100;
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp))
    {

    lg xuuNNyy