Server geht nach CMD (kommand) einfach aus!

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
  • hilfe,
    wenn ich das cmd
    if (strcmp("/ROFL", cmdtext, true) == 0)
    {
    SendClientMessageToAll(COLOR_LIGHTBLUE,"%s Lacht sich total Tot! /ROFL ");
    SendClientMessage(playerid,COLOR_YELLOW,"Erfolgreich Totgelacht!");
    return 1;
    }
    benutze, geht der server ohne was zu sagen aus, es steht nichts in der server_log!

    526C4Hj.png Mit freundlichen Grüßen,
    Noneatme

  • if (strcmp("/ROFL", cmdtext, true) == 0)
    {
    new string[256];
    GetPlayerName(playerid, name, sizeof(name));
    format(string, 256, "%s Lacht sich total Tot! /ROFL",name);
    SendClientMessageToAll(COLOR_LIGHTBLUE,string);
    SendClientMessage(playerid,COLOR_YELLOW,"Erfolgreich Totgelacht!");
    return 1;
    }

  • C:\Documents and Settings\Administrator\Desktop\samp03asvr_R4_win32\gamemodes\Stunt.pwn(1240) : warning 217: loose indentation
    C:\Documents and Settings\Administrator\Desktop\samp03asvr_R4_win32\gamemodes\Stunt.pwn(1299) : warning 217: loose indentation
    C:\Documents and Settings\Administrator\Desktop\samp03asvr_R4_win32\gamemodes\Stunt.pwn(1305) : warning 225: unreachable code
    C:\Documents and Settings\Administrator\Desktop\samp03asvr_R4_win32\gamemodes\Stunt.pwn(1305) : warning 217: loose indentation
    C:\Documents and Settings\Administrator\Desktop\samp03asvr_R4_win32\gamemodes\Stunt.pwn(1694) : warning 235: public function lacks forward declaration (symbol "OnPlayerPrivmsg")
    C:\Documents and Settings\Administrator\Desktop\samp03asvr_R4_win32\gamemodes\Stunt.pwn(2158) : error 017: undefined symbol "name"
    C:\Documents and Settings\Administrator\Desktop\samp03asvr_R4_win32\gamemodes\Stunt.pwn(2158) : error 017: undefined symbol "name"
    C:\Documents and Settings\Administrator\Desktop\samp03asvr_R4_win32\gamemodes\Stunt.pwn(2158) : error 029: invalid expression, assumed zero
    C:\Documents and Settings\Administrator\Desktop\samp03asvr_R4_win32\gamemodes\Stunt.pwn(2158) : 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 jez?

    526C4Hj.png Mit freundlichen Grüßen,
    Noneatme

  • if (strcmp("/ROFL", cmdtext, true, 5) == 0)
    {
    new name[MAX_PLAYER_NAME], str[56];
    GetPlayerName(playerid, name, sizeof(name));
    format(str, sizeof str, "%s lacht sich total Tot! /ROFL", name");
    SendClientMessageToAll(COLOR_LIGHTBLUE,str);
    SendClientMessage(playerid,COLOR_YELLOW,"Erfolgreich Totgelacht!");
    return 1;
    }

    since 2009.

  • und wie mach ich das auch 2 sätze kommen, bei
    if (strcmp("/Fuck", cmdtext, true) == 0)
    {
    new string[256];
    new name[MAX_PLAYER_NAME], str[56];
    GetPlayerName(playerid, name, sizeof(name));
    format(string, 256, "%s Hat gerade etwas verbotendes getahn,",name);
    format(string, 256, "sonst würde er nicht das CMD /Fuck benutzen!",name);
    SendClientMessageToAll(COLOR_LIGHTBLUE,string);
    SendClientMessage(playerid,COLOR_YELLOW,"Erfolgreich Totgelacht!");
    return 1;
    }


    kommt nur 1 satz, der untere

    526C4Hj.png Mit freundlichen Grüßen,
    Noneatme

  • Sorry hab die Variable vergessen


    Edit:


    if (strcmp("/Fuck", cmdtext, true) == 0)
    {
    new string[256];
    new name[MAX_PLAYER_NAME], str[56];
    GetPlayerName(playerid, name, sizeof(name));
    format(string, 256, "%s Hat gerade etwas verbotendes getahn,",name);
    SendClientMessageToAll(COLOR_LIGHTBLUE,string);
    format(string, 256, "sonst würde er nicht das CMD /Fuck benutzen!",name);
    SendClientMessageToAll(COLOR_LIGHTBLUE,string);
    SendClientMessage(playerid,COLOR_YELLOW,"Erfolgreich Totgelacht!");
    return 1;
    }