4Errors

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 Community,
    ich hab mal wieder "4" Errors!

    pawno\include\M_Bot.inc(172) : error 012: invalid function call, not a valid address
    pawno\include\M_Bot.inc(172) : warning 215: expression has no effect
    pawno\include\M_Bot.inc(172) : error 001: expected token: ";", but found ")"
    pawno\include\M_Bot.inc(172) : error 029: invalid expression, assumed zero
    pawno\include\M_Bot.inc(172) : fatal error 107: too many error messages on one line


    Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase


    4 Errors.


    M_Bot.inc Zeile:
    stock SendClientMessageToAdmins(color,message[])
    {
    for(new i = 0; i < GetMaxPlayers(); i++)
    {
    if(IsPlayerConnected(i) && IsAnAdmin(i)) //<-- Zeile 172
    {
    SendClientMessage(i,color,message);
    }
    }
    }

  • stock SendClientMessageToAdmins(color,message[])
    {
    for(new i = 0; i < GetMaxPlayers()[color=#ff0000];[/color] i++) // Sicher, dass das da hin muss? :D
    {
    if(IsPlayerConnected(i) && IsAnAdmin(i)) //<-- Zeile 172
    {
    SendClientMessage(i,color,message);
    }
    }
    }

  • \pawno\include\M_Bot.inc(170) : error 017: undefined symbol "New"
    \pawno\include\M_Bot.inc(170) : warning 215: expression has no effect
    \pawno\include\M_Bot.inc(170) : error 001: expected token: ")", but found ";"
    \pawno\include\M_Bot.inc(170) : error 036: empty statement
    \pawno\include\M_Bot.inc(170) : fatal error 107: too many error messages on one line


    Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase


    4 Errors.


    stock SendClientMessageToAdmins(color,message[])
    {

    for(New i = 0; i < MAX_PLAYERS; i++)
    {
    if(IsPlayerConnected(i) && IsAnAdmin(i)) //<-- Zeile 172
    {
    SendClientMessage(i,color,message);
    }
    }
    }

    geht nicht

  • Kann mir bitte ein Pro helfen?

    2 Mal editiert, zuletzt von Elextrix_- ()