3 Warnings

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
  • Guten Tag liebe Community,


    habt ihr eine Lösung für diese 3 Warnings?


    Warning: warning 213: tag mismatch


    WantedLabel[i][playerid] = CreatePlayer3DTextLabel(playerid, string, COLOR_KNALLROT, 0.0, 0.0, 1.0, 50.0, i, INVALID_VEHICLE_ID,1);


    (3 Mal die gleichen Warnings und 3 mal die gleiche Zeile!) :huh:


    Ich hoffe auf eine Lösung!
    Danke im voraus:
    MfG Alex_Playa :love:


    Mir ist bewusst, dass ich das Gamemode mit diesen Warnings starten kann, trotzdem möchte ich diese draußen haben!

  • new Text3D:WantedLabel[MAX_PLAYERS];

    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.

    Einmal editiert, zuletzt von Logan ()

  • 17 Warnings:
    warning 213: tag mismatch


    Beispiel:
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
    WantedLabel[playerid][i] = -1;
    }


    if(WantedLabel[playerid][i] != -1){ DeletePlayer3DTextLabel(i, PlayerText3D:WantedLabel[playerid][i]); WantedLabel[playerid][i] = -1; }
    if(WantedLabel[i][playerid] != -1) { DeletePlayer3DTextLabel(playerid, PlayerText3D:WantedLabel[i][playerid]); WantedLabel[i][playerid] = -1; }

  • Habe gerade nur oberflächlich drübergeschaut.
    Was hat es für einen Sinn, dass dein Array zwei Dimensionen von je 500 hat ?
    Ich denke mal, du brauchst hier nur eine Dimension, also Deklaration und Verwendung ändern.


    LG

    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.