Beiträge von Luis

    Guten Tag,
    Da bei Samp4You der Serverlog nur 800 Zeilen lang ist möchte ich fragen ob es irgendeine Möglichkeit gibt ihn wenn die 800 Zeilen voll sind zu kopieren sodass man immer noch die alten Logs hat?
    Mfg.
    Luis

    Hey,
    Ich suche eine WBB3 Lizenz zahlen tuh ich mit 3x10€ Paysafecards und einem 4€ Paysafecard rest.
    Gesamt: 34€
    Weitere Infos per PN
    MFG.
    Luis


    [Folgendes muss im Thema enthalten sein und darf nicht entfernt werden:]
    ______
    Unverbindlicher Hinweis: Die Sicherheit einer Transaktion kann am besten durch die Einschaltung eines Mittelsmannes gewährleistet werden. Weitere Informationen dazu gibt es hier.

    Hey Leute,
    Ich habe ein Problem bei folgendem Befehl:

    if(strcmp("/lastkill", cmd, true) == 0)
    {
    if(IsPlayerConnected(playerid))
    {
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp))
    {
    SendClientMessage(playerid, COLOR_BENUTZETEXT, "Benutze: /lastkill [SpielerName/ID]");
    return 1;
    }
    giveplayerid = ReturnUser(tmp);
    if(PlayerInfo[playerid][pAdmin] >= 1)
    {
    if(IsPlayerConnected(giveplayerid))
    {
    if(giveplayerid != INVALID_PLAYER_ID)
    {
    if(PlayerInfo[giveplayerid][pAdmin] > PlayerInfo[playerid][pAdmin])
    {
    return 1;
    }
    format(string,sizeof(string),"%s wurde zuletzt von %s gekillt.", PlayerName(giveplayerid), PlayerName(lastkillid)); //Zeile 22688
    SendClientMessage(COLOR_YELLOW, 1, string);
    GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
    }
    }
    }
    else
    {
    SendClientMessage(playerid, COLOR_KEINADMIN, "*** INFO: Dies ist ein Adminbefehl, du bist kein Admin.");
    }
    }
    return 1;
    }


    Error:

    Code
    (22688) : error 035: argument type mismatch (argument 1)


    Habe ganz oben im Script

    new lastkillid[MAX_PLAYERS];

    und unter Onplayerdeath

    lastkillid[playerid] = killerid;

    Könnt ihr mir helfen?
    MFG.
    Luis

    #pragma dynamic 8192
    #pragma tabsize 0
    #include <a_samp>
    #include <mysql>
    #include <float>
    #include <time>
    #include <file>
    #include <dutils>
    #include <Dini>
    #include <a_http>
    #include <banfix>
    #include <core>

    Hey Leute,
    Ich habe heute versucht mein Script zu compilen(Nichts geändert) und dann kam auf einmal dieser Error:

    \pawno\include\core.inc(12) : error 010: invalid function or declaration

    Weiß jemand wie man es weg macht?
    hier der Code des Includes

    /* Core functions
    *
    * (c) Copyright 1998-2005, ITB CompuPhase
    * This file is provided as is (no warranties).
    */
    #if defined _core_included
    #endinput
    #endif
    #define _core_included
    #pragma library Core


    native heapspace();


    native funcidx(const name[]);


    native numargs();
    native getarg(arg, index=0);
    native setarg(arg, index=0, value);


    native tolower(c);
    native toupper(c);
    native swapchars(c);


    native random(max);


    native min(value1, value2);
    native max(value1, value2);
    native clamp(value, min=cellmin, max=cellmax);


    native getproperty(id=0, const name[]="", value=cellmin, string[]="");
    native setproperty(id=0, const name[]="", value=cellmin, const string[]="");
    native deleteproperty(id=0, const name[]="", value=cellmin);
    native existproperty(id=0, const name[]="", value=cellmin);




    Hoffe ihr könnt mir helfen
    Mit freudlichen Grüßen,
    Luis