Hello,everyone. I’m a newbie server developer.Yesterday,I’m setting a new server,its using basic gamemode,but print “Couldn’t found release”
Can you help me?
Hello E3NAA! Welcome aboard!
Did you get this error message when trying to join your server on FiveM?
IF so, this is likely due to the way you ran the command to start the server.
To start your server, you must issue a command to tell it to start the fiveM service.
I’m on linux, so my command looks like this:
bash /home/support/Desktop/fiveM/run.sh +exec server.cfg +set sv_enforceGameBuild 2802 +set onesync_enabled 1
For you however, it may look like this:
C:\FXServer\server\FXServer.exe +exec server.cfg +exec server.cfg +set sv_enforceGameBuild 2802 +set onesync_enabled 1
Now if you’ll notice, in my command I have some additional options (arguments) setup. For example, one is:
- +exec server.cfg
or - +set onesync_enabled 1
and most importantly: - +set sv_enforceGameBuild 2802
This is where you can enforce the “gamebuild”
The gamebuild is what the average gamer would refer to as the dlc, and the modder a dlcpack. Now that you’re a scripter, you’ll have to get used to other scripters using the term “build / gamebuild”.
Anyways, this can be set to anything, however, it’s important to know, when the fivem CLIENT is trying to join the fivem SERVER (the one you started with the above command), fiveM will try to find a legit build of GTA V. The fivem client WON’T join if the build isn’t a real build.
For example, if you set your “start server” command to:
C:\FXServer\server\FXServer.exe +exec server.cfg +exec server.cfg +set sv_enforceGameBuild “zebra”
Note that the server will start, however the game will complain that GTA doesn’t have a ‘gamebuild’ of “zebra”
So how do I fix this?
Well the answer is simple:
You just need to find a version of the game that is an actual version of a dlc.
A list can be found here:
(this doesn’t include the new version 2944)
Hopefully after changing the version, you’ll be good to join!
From there, I recommend any one of the various scripting series to get started:
or
Hopefully this helps, welcome aboard, good luck, and happy scripting!