Generator server.cfg
Wypełnij formularz i dostań czysty, skomentowany server.cfg gotowy do wrzucenia na Twój serwer FiveM, z OneSync, endpointami, tagami, locale, resource'ami i uprawnieniami ACE.
To narzędzie i jego opis są na razie po angielsku.
Server identity
Slots, network & game
Keys & branding
Security
Database
Turn on to add mysql_connection_string for oxmysql.
Voice (pma-voice)
Turn on to add pma-voice convars and make sure it is started.
Resources
Permissions (ACE)
Find identifiers in txAdmin (Players, then a player) or with GetPlayerIdentifiers(source). Paste just the value, the license: prefix is optional.
add_principal child parent makes the child inherit everything the parent has.
Set sv_licenseKey. Get a key at portal.cfx.re.
No admin identifier set. You will not have admin permissions.
# ==========================================================
# server.cfg
# Generated with fivemad.com/tools/server-cfg-generator
# Docs: https://docs.fivem.net/docs/server-manual/setting-up-a-server/
# ==========================================================
#
# txAdmin: start the server from txAdmin, not with +exec.
# txAdmin reads the port from the endpoint lines below, so keep them.
# Restarts, schedules and bans are handled in the txAdmin panel.
## Networking
endpoint_add_tcp "0.0.0.0:30120"
endpoint_add_udp "0.0.0.0:30120"
## Server identity
sv_hostname "^5My Server ^7| Serious RP | Discord: example"
sets sv_projectName "My Server"
sets sv_projectDesc "Serious roleplay with custom jobs and an active staff team"
sets locale "en-US"
sets tags "default"
## Slots and game
sv_maxclients 48
set onesync on
set sv_enforceGameBuild 3258 # Bottom Dollar Bounties
## Security
sv_scriptHookAllowed 0
sv_pureLevel 1 # blocks modified game files, allows audio and graphics mods
sv_endpointprivacy true
## Keys
set steam_webApiKey "none" # https://steamcommunity.com/dev/apikey
sv_licenseKey "changeme" # https://portal.cfx.re
## Resources (load order matters)
# Default cfx resources
ensure mapmanager
ensure chat
ensure spawnmanager
ensure sessionmanager
ensure basic-gamemode
ensure hardcap
ensure baseevents
## Permissions
add_ace group.admin command allow # all commands
add_ace group.admin command.quit deny # but not quit
# add_principal identifier.license:xxxxxxxx group.admin # add yourself here
How to use it
- Pick your framework. It fills a working
ensureorder and the matching permission lines. - Fill in the hostname, license key, slots and game build. Warnings on the right point out common mistakes.
- Add yourself as admin with your license or Discord identifier.
- Download
server.cfginto your server-data folder (next to theresourcesfolder).
Everything stays in your browser, including the license key and database password. The form is saved locally so you can come back to it.
Starting the server
With txAdmin, point the deployer or Settings, then FXServer, at this file. Without txAdmin, start FXServer from the server-data folder:
# Windows
C:\FXServer\server\FXServer.exe +exec server.cfg
# Linux
bash ~/FXServer/server/run.sh +exec server.cfgLoad order
Resources start in the order they are listed. Libraries such as oxmysql and ox_lib must come before the framework core, and the core (qb-core, qbx_core, es_extended) before any script that uses it. ensure [folder] starts everything inside a bracketed folder and you do not control the order inside it, so ensure dependencies explicitly before the folder.
OneSync and slots
set onesync onis what almost every modern resource expects. Without OneSync the cap is 32 players.- Up to 48 slots works with any key. Going higher needs an Element Club subscription on the Cfx.re account that owns the key.
sv_enforceGameBuildmust be set before players join. Changing it makes clients download the matching game build on their next connect.
ACE permissions in short
# give a group a permission
add_ace group.admin command allow
# put a player (or group) inside a group
add_principal identifier.license:abc123 group.admin
# let one group inherit another
add_principal group.admin group.modCheck a permission in Lua with IsPlayerAceAllowed(source, 'command.kick'). After editing ACE lines you can apply them live by pasting them into the server console.
Gotchas
- Do not commit
server.cfgto a public repo: it holds your license key and database password. Move secrets to a separate file andexec secrets.cfg. - Special characters in the database password must be URL-encoded in
mysql_connection_string. The generator does that for you. setrconvars are replicated to clients,setsconvars are shown publicly in the server list, plainsetstays on the server.
Więcej narzędzi: config i kod
Generator fxmanifest.lua
Postaw poprawny manifest resource'a: fx_version, skrypty, strona NUI, files, lua54 i zależności.
Edytor handlingu pojazdów
Ustaw masę, siłę napędu, przyczepność i zawieszenie w interfejsie, a potem wyeksportuj handling.meta albo Lua w runtime.
Projektant ubrań
Otwórz ubranie .ydd lub .ydr z plikami .ytd, maluj w 3D albo na układzie UV z warstwami, tekstem i obrazami, a potem wyeksportuj nowe tekstury .ytd.
