Habe ein Problem mit der samp-server.exe

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 Leute,
    Ich habe ein erneutes Problem und zwar:
    Wenn ich den Server starte läuft alles bis auf das:
    Script[gamemodes/[NeR]Script.amx]: Run time error 19: "File or function is not found"
    Ich glaub es macht nichts aus, aber wenn ich auf den Server joine, schließt sich automatisch
    meine samp-server.exe.


    Liegt es daran dass ich hier Function statt public überall habe?
    Function OnPlayerConnect(playerid)
    Weil defined hab ich es ja..
    #define Function%0(%1) forward%0(%1); public%0(%1)



    Hier mal ein Ausschnitt meiner server_log:
    ----------
    Loaded log file: "server_log.txt".
    ----------


    SA-MP Dedicated Server
    ----------------------
    v0.3x, (C)2005-2013 SA-MP Team


    [15:01:58]
    [15:01:58] Server Plugins
    [15:01:58] --------------
    [15:01:58] Loaded 0 plugins.


    [15:01:58]
    [15:01:58] Filterscripts
    [15:01:58] ---------------
    [15:01:58] Loading filterscript 'autohaus.amx'...
    [15:01:58] ----------------------------------
    [15:01:58] ~*~ Mobile Cardealership 1.4 ~*~
    [15:01:58] ~*~ (c) 2009 by ping ~*~
    [15:01:58] ----------------------------------


    [15:01:58] Loading filterscript 'autohaus1.amx'...
    [15:01:58] ----------------------------------
    [15:01:58] ~*~ Mobile Cardealership 1.4 ~*~
    [15:01:58] ~*~ (c) 2009 by ping ~*~
    [15:01:58] ----------------------------------


    [15:01:58] Loading filterscript 'blink.amx'...
    [15:01:58]
    --------------------------------------
    [15:01:58] Blinker-System by m33p4r34l
    [15:01:58] --------------------------------------


    [15:01:58] Loading filterscript 'motd.amx'...
    [15:01:58]
    --------------------------------------
    [15:01:58] MOTD filterscript
    [15:01:58] --------------------------------------


    [15:01:58] Loading filterscript 'Motd-gfr.amx'...
    [15:01:58] Loading filterscript 'SP.amx'...
    [15:01:58] Loading filterscript 'Support.amx'...
    [15:01:58] Loading filterscript 'Waffen-drop.amx'...
    [15:01:58] Loaded 8 filterscripts.


    [15:01:58] Wetter ID: 7
    [15:01:58] Script[gamemodes/[NeR]Script.amx]: Run time error 19: "File or function is not found"
    [15:01:58] Number of vehicle models: 34
    [15:02:30] Incoming connection: 127.0.0.1:62341
    [15:02:31] [join] [NeR]Simon has joined the server (0:127.0.0.1)


    Ich danke euch schon mal im vorraus. :)

  • [NeR]Script.amx so darfst du deinen GM nicht haben..
    änder ihn in script.pwn/amx um :)

  • echo Executing Server Config...
    lanmode 0
    rcon_password ******
    maxplayers 50
    port 7777
    hostname [NeR]Next Evolution Reallife[0.3x]
    gamemode0 NeR
    filterscripts autohaus autohaus1 blink motd Motd-gfr SP Support Waffen-drop
    plugins streamer sscanf
    announce 0
    query 1
    chatlogging 0
    weburl Kommt noch!
    onfoot_rate 40
    incar_rate 40
    weapon_rate 40
    stream_distance 300.0
    stream_rate 1000
    maxnpc 0
    logtimeformat [%H:%M:%S]

  • Was ganz wichtig ist:


    Dein GameMode sollte NeR.amx heißen und sich im Gamemode Ordner befinden.
    Die Filterscripts autohaus.amx ; autohaus1.amx ; blink.amx ; motd.amx ; Motd-gfr.amx ; SP.amx ; Support.amx ; Waffen-drop.amx sollten sich im Filterscripts Ordner sein.


    die Dateien streamer.dll und sscanf.dll sollten sich im plugins Ordner befinden.
    Bei Linux sollten es die .so dateien sein und du müsstes auch in der .cfg .so dahinter schreiben.

  • Das sind meine ganzen Includes:
    #include <a_samp>
    #include <a_npc>
    #include <core>
    #include <float>
    #include <time>
    #include <dini>
    #include <file>
    #include <utils>
    #include <morphinc>
    #include <M_Bot>
    #include <streamer>
    #include <w_baum>
    #include <ocmd>
    #include <Desk>
    #include <bfx_objects>


    Und meine Filterscripts und alles sind ja in den Ordnern, aber dahinter .amx muss ich in der server.cfg nicht schreiben oder?

  • Du brauchst diese gar nicht alle weil viele schon in der a_samp.inc drinne sind:
    #include <core>
    #include <float>
    #include <string>
    #include <file>
    #include <time>
    #include <datagram>
    #include <a_players>
    #include <a_vehicles>
    #include <a_objects>
    #include <a_sampdb>