Hab ein problem

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
  • Hallo wen ich mein server starte


    Server.log





    ----------
    Loaded log file: "server_log.txt".
    ----------


    SA-MP Dedicated Server
    ----------------------
    v0.3e, (C)2005-2012 SA-MP Team


    [02:37:59] filterscripts = "" (string)
    [02:37:59]
    [02:37:59] Server Plugins
    [02:37:59] --------------
    [02:37:59] Loading plugin: streamer
    [02:37:59]


    *** Streamer Plugin v2.5.2 by Incognito loaded ***


    [02:37:59] Loaded.
    [02:37:59] Loaded 1 plugins.


    [02:37:59]
    [02:37:59] Filterscripts
    [02:37:59] ---------------
    [02:37:59] Loaded 0 filterscripts.


    [02:37:59] German Reallife City By IceTea
    [02:37:59] Number of vehicle models: 0



    bei Numer of vehicle models: 0 stand bei mir mal 79 jetzt 0


    wenn ich auf server bin gibs


    -Keine autos
    -Keine Objecte
    -Keine Pickups
    -Er leuft nicht mehr wie CJ
    -Ich gekomm geld für stunts


    Das mit CJ und geld war bei mir nicht jetzt ist das da
    ich weiß nicht warum kann mir das vilr einer sagen ??
    Aber die befehle gehen fast alle spawn auch aber ich weiß nicht warum ???
    ?( ?( ?( ?( ?( ?( ?( ?( ?( ?( ?( ?( ?( ?( ?( ?( ?( ?(



    Die includs die ich benutze



    • #include <a_samp>
      #include <Dini>
      #include <ocmd>
      #include <streamer>
      #include <sscanf>


    Ich hoffe ihr könnt mir helfen



    MFG

  • echo Executing Server Config...
    lanmode 0
    .....
    gamemode0 Script
    filterscripts
    announce 0
    query 1
    weburl http://www.sa-mp.com
    onfoot_rate 40
    incar_rate 40
    weapon_rate 40
    stream_distance 300.0
    stream_rate 1000
    maxnpc 0
    logtimeformat [%H:%M:%S]
    plugins streamer
    mapname San Andreas



    sscanf hab ich in script drin


    hab ich und das geht immer noch nicht

  • hab ich aber mir mir kommt jetzt so was



    "The porgram can't Start Becouse MSVCP100.dll is missinf Form your Computer. Try reinstingt the porgram to fix this problem.!



    1. wo sol die MSVCP100.dll rein ?
    2. Ich hab die mal in plugins ordner rein getahn gin immer noch nicht
    3. ich hoofe ihr köönt mir helfen


    MFG

  • ja der gleiche fehler





    ----------
    Loaded log file: "server_log.txt".
    ----------


    SA-MP Dedicated Server
    ----------------------
    v0.3e, (C)2005-2012 SA-MP Team


    [03:50:35] filterscripts = "" (string)
    [03:50:35]
    [03:50:35] Server Plugins
    [03:50:35] --------------
    [03:50:35] Loading plugin: streamer
    [03:50:36] Failed.
    [03:50:36] Loading plugin: sscanf
    [03:50:37] Failed.
    [03:50:37] Loaded 0 plugins.


    [03:50:37]
    [03:50:37] Filterscripts
    [03:50:37] ---------------
    [03:50:37] Loaded 0 filterscripts.


    [03:50:37] Script[gamemodes/Script.amx]: Run time error 19: "File or function is not found"
    [03:50:37] Number of vehicle models:0


    also mein server ist Online hier ip komm drauf und du kannst shene was der fehler ist
    176.9.46.89:23039




    wär echt nett



    MFG

  • habs gemacht aber fehler kommt immer noch und so ich versuch mal Computer neu zu starten vilt dann.. bis gliech :D
    :thumbup:







    Nein geht immer noch nihct keine ahnug warum







    Ich weiß was der fehler war die sscanf.dll und Streamer.dll ich hab die mal gelöscht und dan geht das an aber jetzt fehler dir mir und woher kann ich die bekommen ??






    SA-MP Dedicated Server
    ----------------------
    v0.3e, (C)2005-2012 SA-MP Team


    [04:10:10] filterscripts = "" (string)
    [04:10:10]
    [04:10:10] Server Plugins
    [04:10:10] --------------
    [04:10:10] Loading plugin: streamer
    [04:10:11] Failed.
    [04:10:11] Loading plugin: sscanf
    [04:10:11] Failed.
    [04:10:11] Loaded 0 plugins.


    [04:10:11]
    [04:10:11] Filterscripts
    [04:10:11] ---------------
    [04:10:11] Loaded 0 filterscripts.


    [04:10:11] Script[gamemodes/Script.amx]: Run time error 19: "File or function is not found"
    [04:10:11] Number of vehicle models: 0

  • Fals du siehst versucht er die Plugins: sscanf und streamer zu laden kann es aber nicht.


    Update deine Plugins und Includes, schau nach das du sscanf und streamer in deiner server.cfg stehen hast, recompile dein Script und versuche es nocheinmal.

  • falsche sscanf version falsche stramer version...
    sscanf an besten garnicht verwenden da das plugin auf kein windows geht so wars bei mir



    stock sscanf(string[], format[], {Float,_}:...)
    {
    #if defined isnull
    if (isnull(string))
    #else
    if (string[0] == 0 || (string[0] == 1 && string[1] == 0))
    #endif
    {
    return format[0];
    }
    #pragma tabsize 4
    new
    formatPos = 0,
    stringPos = 0,
    paramPos = 2,
    paramCount = numargs(),
    delim = ' ';
    while (string[stringPos] && string[stringPos] <= ' ')
    {
    stringPos++;
    }
    while (paramPos < paramCount && string[stringPos])
    {
    switch (format[formatPos++])
    {
    case '\0':
    {
    return 0;
    }
    case 'i', 'd':
    {
    new
    neg = 1,
    num = 0,
    ch = string[stringPos];
    if (ch == '-')
    {
    neg = -1;
    ch = string[++stringPos];
    }
    do
    {
    stringPos++;
    if ('0' <= ch <= '9')
    {
    num = (num * 10) + (ch - '0');
    }
    else
    {
    return -1;
    }
    }
    while ((ch = string[stringPos]) > ' ' && ch != delim);
    setarg(paramPos, 0, num * neg);
    }
    case 'h', 'x':
    {
    new
    num = 0,
    ch = string[stringPos];
    do
    {
    stringPos++;
    switch (ch)
    {
    case 'x', 'X':
    {
    num = 0;
    continue;
    }
    case '0' .. '9':
    {
    num = (num << 4) | (ch - '0');
    }
    case 'a' .. 'f':
    {
    num = (num << 4) | (ch - ('a' - 10));
    }
    case 'A' .. 'F':
    {
    num = (num << 4) | (ch - ('A' - 10));
    }
    default:
    {
    return -1;
    }
    }
    }
    while ((ch = string[stringPos]) > ' ' && ch != delim);
    setarg(paramPos, 0, num);
    }
    case 'c':
    {
    setarg(paramPos, 0, string[stringPos++]);
    }
    case 'f':
    {


    new changestr[16], changepos = 0, strpos = stringPos;
    while(changepos < 16 && string[strpos] && string[strpos] != delim)
    {
    changestr[changepos++] = string[strpos++];
    }
    changestr[changepos] = '\0';
    setarg(paramPos,0,_:floatstr(changestr));
    }
    case 'p':
    {
    delim = format[formatPos++];
    continue;
    }
    case '\'':
    {
    new
    end = formatPos - 1,
    ch;
    while ((ch = format[++end]) && ch != '\'') {}
    if (!ch)
    {
    return -1;
    }
    format[end] = '\0';
    if ((ch = strfind(string, format[formatPos], false, stringPos)) == -1)
    {
    if (format[end + 1])
    {
    return -1;
    }
    return 0;
    }
    format[end] = '\'';
    stringPos = ch + (end - formatPos);
    formatPos = end + 1;
    }
    case 'u':
    {
    new
    end = stringPos - 1,
    id = 0,
    bool:num = true,
    ch;
    while ((ch = string[++end]) && ch != delim)
    {
    if (num)
    {
    if ('0' <= ch <= '9')
    {
    id = (id * 10) + (ch - '0');
    }
    else
    {
    num = false;
    }
    }
    }
    if (num && IsPlayerConnected(id))
    {
    setarg(paramPos, 0, id);
    }
    else
    {
    #if !defined foreach
    #define foreach(%1,%2) for (new %2 = 0; %2 < MAX_PLAYERS; %2++) if (IsPlayerConnected(%2))
    #define __SSCANF_FOREACH__
    #endif
    string[end] = '\0';
    num = false;
    new
    name[MAX_PLAYER_NAME];
    id = end - stringPos;
    foreach (Player, playerid)
    {
    GetPlayerName(playerid, name, sizeof (name));
    if (!strcmp(name, string[stringPos], true, id))
    {
    setarg(paramPos, 0, playerid);
    num = true;
    break;
    }
    }
    if (!num)
    {
    setarg(paramPos, 0, INVALID_PLAYER_ID);
    }
    string[end] = ch;
    #if defined __SSCANF_FOREACH__
    #undef foreach
    #undef __SSCANF_FOREACH__
    #endif
    }
    stringPos = end;
    }
    case 's', 'z':
    {
    new
    i = 0,
    ch;
    if (format[formatPos])
    {
    while ((ch = string[stringPos++]) && ch != delim)
    {
    setarg(paramPos, i++, ch);
    }
    if (!i)
    {
    return -1;
    }
    }
    else
    {
    while ((ch = string[stringPos++]))
    {
    setarg(paramPos, i++, ch);
    }
    }
    stringPos--;
    setarg(paramPos, i, '\0');
    }
    default:
    {
    continue;
    }
    }
    while (string[stringPos] && string[stringPos] != delim && string[stringPos] > ' ')
    {
    stringPos++;
    }
    while (string[stringPos] && (string[stringPos] == delim || string[stringPos] <= ' '))
    {
    stringPos++;
    }
    paramPos++;
    }
    do
    {
    if ((delim = format[formatPos++]) > ' ')
    {
    if (delim == '\'')
    {
    while ((delim = format[formatPos++]) && delim != '\'') {}
    }
    else if (delim != 'z')
    {
    return delim;
    }
    }
    }
    while (delim > ' ');
    return 0;
    }

  • @ PawnFox


    Das sscanf Plugin funktioniert ja auch nur mit dem sscanf2 include und nicht mit dem Sscanf include. Y_less hatte Sscanf weiterentwickelt gehabt und es mit einem Plugin ausgestattet extra.


    Solltest also sscanf2 mal mit dem Plugin sscanf nutzen und testen ^^

  • Hallo






    Zitat

    Fals du siehst versucht er die Plugins: sscanf und streamer zu laden kann es aber nicht.


    Update deine Plugins und Includes, schau nach das du sscanf und streamer in deiner server.cfg stehen hast, recompile dein Script und versuche es nocheinmal.



    wie mach ich das denn jetzt



    Zitat

    falsche sscanf version falsche stramer version...
    sscanf an besten garnicht verwenden da das plugin auf kein windows geht so wars bei mir

    Danke dir hab das rein getahn

  • Ja aber ich btacuh hilfe weil das ja nicht geht



    und jetzt kommt das



    ----------
    Loaded log file: "server_log.txt".
    ----------


    SA-MP Dedicated Server
    ----------------------
    v0.3e-R2, (C)2005-2012 SA-MP Team


    [07:37:00] filterscripts = "" (string)
    [07:37:00]
    [07:37:00] Server Plugins
    [07:37:00] --------------
    [07:37:00] Loading plugin: streamer
    [07:37:00]


    *** Streamer Plugin v2.5.2 by Incognito loaded ***


    [07:37:00] Loaded.
    [07:37:00] Loaded 1 plugins.


    [07:37:00]
    [07:37:00] Filterscripts
    [07:37:00] ---------------
    [07:37:00] Loaded 0 filterscripts.


    [07:37:00] Script[gamemodes/Script.amx]: Run time error 19: "File or function is not found"
    [07:37:00] Number of vehicle models: 0