Ocmd.inc Error?!

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
  • Ja Hallo liebes Forum,
    ich hab ein problem und zwar bekomme ich immer diesen Error:


    C:\Users\Kevin\Desktop\Spiele\Grand Theft Auto San Andreas\Script\gamemodes\Kevin.pwn(3) : fatal error 100: cannot read from file: "ocmd"


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



    1 Error.


    Der Include ist im Ordner gespeichert also im plawno/includes.


    Kann mir da jemand helfen ?

  • Starte mal erst Pawno und damit öffnest du dan das Script.
    Versuchs mal

  • Starte mal erst Pawno und damit öffnest du dan das Script.
    Versuchs mal


    danke, das funktioniert.
    Allerdings kommen jetzt diese Errors:


    C:\Users\Kevin\Desktop\Spiele\Grand Theft Auto San Andreas\Script\gamemodes\Kevin.pwn(1557) : error 029: invalid expression, assumed zero
    C:\Users\Kevin\Desktop\Spiele\Grand Theft Auto San Andreas\Script\gamemodes\Kevin.pwn(1557) : warning 215: expression has no effect
    C:\Users\Kevin\Desktop\Spiele\Grand Theft Auto San Andreas\Script\gamemodes\Kevin.pwn(1557) : warning 215: expression has no effect
    C:\Users\Kevin\Desktop\Spiele\Grand Theft Auto San Andreas\Script\gamemodes\Kevin.pwn(1557) : warning 215: expression has no effect
    C:\Users\Kevin\Desktop\Spiele\Grand Theft Auto San Andreas\Script\gamemodes\Kevin.pwn(1557) : warning 215: expression has no effect
    C:\Users\Kevin\Desktop\Spiele\Grand Theft Auto San Andreas\Script\gamemodes\Kevin.pwn(1557) : warning 215: expression has no effect
    C:\Users\Kevin\Desktop\Spiele\Grand Theft Auto San Andreas\Script\gamemodes\Kevin.pwn(1557) : error 001: expected token: ";", but found ")"
    C:\Users\Kevin\Desktop\Spiele\Grand Theft Auto San Andreas\Script\gamemodes\Kevin.pwn(1557) : error 029: invalid expression, assumed zero
    C:\Users\Kevin\Desktop\Spiele\Grand Theft Auto San Andreas\Script\gamemodes\Kevin.pwn(1557) : 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.


    Und das ist der Befehl:


    if(strcmp(cmdtext,"/stats",true)==0)
    {


    new string[128];
    new fraktname[64];
    switch(GetPVarInt(playerid,"Fraktion"))
    {
    case 0:{fraktname="Keine";}
    case 1:{fraktname="Fraktname 1";}
    }

    //reihe 1
    format(string,sizeof(string),"[Name: %s]\n[Level: %i]\n[Adminlevel: %i]\n[Fraktion: %s]",SpielerName(playerid),GetPlayerScore(playerid),GetPVarInt(playerid,"Adminlevel"),fraktname);


    ShowPlayerDialog(playerid,DIALOG_STATS,DIALOG_STYLE_MSGBOX,"Stats",string,"Schließen",""); //das ist die Zeile 1557.
    //reihe 2
    return 1;
    }
    return 0;