Brauchen hilfe habe 4 Errors weis nicht woher!

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
  • Script: //NPC Skin Setzung
    if(IsPlayerNPC(playerid))
    (
    new botname[MAX_PLAYER_NAME];
    GetPlayerName(playerid,botname,sizeof(botname));
    if(!strcmp(botname,"Busfahrer",true))
    (
    SetPlayerSkin(playerid,5);
    )




    Errors&Warunungen:



    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\gamemodes\WorldofSanAndreas.pwn(5293 -- 5294) : error 029: invalid expression, assumed zero
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\gamemodes\WorldofSanAndreas.pwn(5294) : warning 215: expression has no effect
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\gamemodes\WorldofSanAndreas.pwn(5294) : error 001: expected token: ";", but found "]"
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\gamemodes\WorldofSanAndreas.pwn(5294) : error 029: invalid expression, assumed zero
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\gamemodes\WorldofSanAndreas.pwn(5294) : 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.




    Hoffe auf schnelle Hilfe

  • if(IsPlayerNPC(playerid))
    {
    new botname[MAX_PLAYER_NAME];
    GetPlayerName(playerid,botname,sizeof(botname));
    if(!strcmp(botname,"Busfahrer",true))
    {
    SetPlayerSkin(playerid,5);
    }


    nichrt "(" sondern die verwenden :D "{"

  • C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(5293 -- 5294) : error 029: invalid expression, assumed zero
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(5294) : warning 215: expression has no effect
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(5294) : error 001: expected token: ";", but found "]"
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(5294) : error 029: invalid expression, assumed zero
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(5294) : 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.

  • //NPC Skin Setzung
    if(IsPlayerNPC(playerid))
    (
    new botname[MAX_PLAYER_NAME];
    GetPlayerName(playerid,botname,sizeof(botname));
    if(!strcmp(botname,"Busfahrer",true))
    {
    SetPlayerSkin(playerid,5);
    }
    )
    //NPC Bot Abfrage
    if(IsPlayerNPC(playerid)) return 1;
    StopAudioStreamForPlayer(playerid);
    M_OnPlayerSpawn(playerid);
    TextDrawShowForPlayer(playerid,Datum);
    if(PlayerInfo[playerid][pTot] == 1 && PlayerInfo[playerid][pLevel] > 1)
    {

  • Okay nachdem ich das umgeändert habe kommen diese Errors und Warnings:



    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(18200) : warning 219: local variable "Spieler" shadows a variable at a preceding level
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(53156) : warning 202: number of arguments does not match definition
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(53207) : error 017: undefined symbol "ooc"
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(53210) : warning 219: local variable "Name" shadows a variable at a preceding level
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(53211) : error 001: expected token: ",", but found ";"
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(53212) : error 037: invalid string (possibly non-terminated string)
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(53212) : error 017: undefined symbol "Benutzung"
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(53212) : warning 215: expression has no effect
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(53212) : error 001: expected token: ";", but found "]"
    C:\Users\JOACHIM\Desktop\Spiele\Samp Scripts\World of San Andreas 4.0\pawno\WorldofSanAndreas.pwn(53212) : fatal error 107: too many error messages on one line


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



    6 Errors.