Beiträge von Smaden

    Damals waren die Zeiten auf LoH noch gut, aber wenn man sich LoS mal anschaut..
    Damals haben die alle Fabi schlecht da stehen gelassen, naja ist mir nun auch egal.


    LoH hatte eben ein tolles Feeling, was man von LoS nicht grade behaupten kann. :(


    Oh, tut mir Leid - habe wohl zu oft Undo gemacht..


    //Edit:


    Erstmal möchte ich dir sehr danken, ich kann wieder alles compilen. :love:


    Was genau müsste ich alles ersetzen, das die Befehle gehen ich habe das ganze nämlich noch nicht an GF angepasst.
    Also mit sup durch [pAdmin] ersetzen und was ist mit sup_user weißt du wie das bei GF war?


    Immernoch das gleiche.
    Eventuell hilft dir ja das weiter:


    stock UpdateSupportDraws()
    {
    new sups,
    str2[128],
    str[1024];
    for(new playerid; playerid < GetMaxPlayers(); playerid++)
    {
    if(GetPVarInt(playerid, "sup"))
    {
    if(!sups)
    {
    new pName[MAX_PLAYER_NAME],spName[MAX_PLAYER_NAME];
    GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
    GetPlayerName(GetPVarInt(playerid, "sup_player"),spName,MAX_PLAYER_NAME);
    format(str, sizeof str, "~w~%i - ~y~%s ~w~- ~g~%s", playerid, pName, GetPVarInt(playerid, "sup_player") != -1 ? spName : "Frei" );
    TextDrawSetString(SupportDraws[1], str);
    }
    else
    {
    format(str2, sizeof str, "%s~n~~w~%i - ~y~%s ~w~- ~g~%s", str, playerid, GetPlayerName(playerid), ((GetPVarInt(playerid, "sup_player") != -1)?(GetPlayerName(GetPVarInt(playerid, "sup_player"))):("Frei")));
    TextDrawSetString(SupportDraws[1], str);
    }
    sups++;
    }
    }
    if(sups > 0 && sups < 3)
    {
    format(str2,sizeof str2,"~y~%i ~w~Tickets",sups,str2);
    TextDrawSetString(SupportDraws[0],str2);
    }
    else if(sups < 1)
    {
    format(str2,sizeof str2,"~g~%i ~w~Tickets",sups,str2);
    TextDrawSetString(SupportDraws[0],str2);
    }
    else if(sups > 3)
    {
    format(str2,sizeof str2,"~r~%i ~w~Tickets",sups,str2);
    TextDrawSetString(SupportDraws[0],str2);

    Ich habe 4 Warnings am Ticketsystem, die meine pawn exe crashen lassen..


    Ich benutze einen godfather Script.


    Warning Code:
    Die Anzahl der Parameter ist falsch.



    format(str, sizeof str, "~w~%i - ~y~%s ~w~- ~g~%s", playerid, GetPlayerName(playerid), ((GetPVarInt(playerid, "sup_player") != -1)?(GetPlayerName(GetPVarInt(playerid, "sup_player"))):("Frei")));


    //edit Warning Code Edit