Southclaws / sampctl

The Swiss Army Knife of SA:MP - vital tools for any server owner or library maintainer.
GNU General Public License v3.0
240 stars 34 forks source link

stopping server throws me an error #436

Closed ghost closed 3 years ago

ghost commented 3 years ago

OS: Windows 10

When I stop the server with "exit" or ctrl+c command, throws me the following error:

failed to run package: received runtime error: failed to start server: exit status 3221226505

pawn.json


{
    "user": "robertocaribbean",
    "repo": "palotdm",
    "entry": "gamemodes/palotdm.pwn",
    "output": "gamemodes/palotdm.amx",
    "dependencies": [
        "sampctl/samp-stdlib",
        "pawn-lang/sa-mp-fixes",
        "zeex/samp-plugin-crashdetect",
        "katursis/pawn.cmd",
        "lassir/bcrypt-samp",
        "samp-incognito/samp-streamer-plugin",
        "pawn-lang/YSI-Includes@5.x",
        "TommyB123/eSelection",
        "maddinat0r/sscanf"
    ],
    "local": true,
    "runtime": {
        "version": "0.3.7",
        "mode": "server",
        "rcon_password": "123456",
        "port": 7777,
        "hostname": "SA-MP Server",
        "maxplayers": 100,
        "language": "Spanish",
        "mapname": "San Andreas",
        "weburl": "www.sa-mp.com",
        "gamemodetext": "Unknown",
        "password": "123456",
        "announce": true,
        "lanmode": false,
        "query": true,
        "rcon": false,
        "logqueries": false,
        "sleep": 5,
        "maxnpc": 0,
        "stream_rate": 1000,
        "stream_distance": 200,
        "onfoot_rate": 30,
        "incar_rate": 30,
        "weapon_rate": 30,
        "chatlogging": true,
        "timestamp": true,
        "messageholelimit": 3000,
        "messageslimit": 1000,
        "ackslimit": 3000,
        "playertimeout": 10000,
        "minconnectiontime": 0,
        "lagcompmode": 0,
        "connseedtime": 300000,
        "db_logging": false,
        "db_log_queries": false,
        "conncookies": true,
        "cookielogging": false,
        "output": true
    },
    "build": {
        "name": "",
        "args": [
            "-d3",
            "-;+",
            "-(+",
            "-Z+"
        ],
        "compiler": {
            "site": "github.com",
            "user": "pawn-lang",
            "repo": "compiler",
            "version": "3.10.10"
        }
    }
}
ghost commented 3 years ago

I found that the "eSelection" dependency was causing the error. I Just uninstall it and now the server shuts down right without any error.