#unofficial-setup-help
1 messages · Page 113 of 1
yes i am
I hope you can get it sorted out. I dont have enough knowledge of nitrado system. I dont like how nitrado handles everything so I stay away from them
if i could afford a pc to host, i would... this is so tough
hey i recently downloaded steam ark and im unable to join servers througgh the ip address any tips?
Question about hosting a server!, if you are hosting and playing on your pc, does it need to stay on 24/7? What happens if the power goes out? Can you just roll back to a save file?
your PC will need to stay on for as long as you want the server to be on.
if the power goes out you start it back when its up.
you can backup the saves so you can rollback. I believe ASA servers automatically makes a backup of the world when it starts.
there may be settings to make it better, not sure
I just backup manually.
I shared my power shell script a while back to automate backups.
I just call it from the windows scheduler.
Can the pc be in sleep mode or does it have to be on on
On on if you want to play.
While the server is running, the world keeps doing stuff.
you don't need a monitor tho, just make sure the PC doesn't go to sleep.
mine goes through my capture card since I have 3 spots. xbox, switch, Server PC 
Do the backup saves last forever? Like if you go on vacation or something
if the server is off, nothing will happen.
the only thing I'd worry about is the cloud but you can just disable the timer on them.
they should pause if everything is off.
Does it pause indefinitely?
So it doesn’t erase anything if they shut off like Xbox does eventually?
servers don't have autosave issues like xbox if thats what you mean 
It keeps a crazy number of saves. Although I can’t quite figure out the logic of when it does save.
Probably around 20 unless you back them up somewhere else.
When yall get off to sleep or work do you let it on or turn your pc off and then back on when you get back on
thats entirely up to you.
Mine is on 24x7 because I have global players on mine.
I have done both depending on how I felt and how my PC felt 
there will be 0 issues if you turn it off while you sleep and turn it back on when you wake up.
just use quit to close the server and it'll save and close.
Ok that is reassuring from the concerns I had, thank yall very much! I’m sure I’ll have more questions when I get my pc and how to set it all up lmao
you are on ASA right?
#Setup env variables for whole script
#Base directory where the server is installed, e.g. D:\ArkSurvivalAscended\ or C:\ASA
$BaseServerInstallDir = 'D:\ArkSurvivalAscended\';
#Destination Directory used for backups. Where you want to put your backup files.
#Can be any folder accessible in windows, so NAS drives can be used.
#Make a folder for each map in the backupdir and name it for whatever is set in $BaseFilename
#e.g. you'll end up with something like
#D:\ASABackups\The-Island\
#D:\ASABackups\Scorched-Earth\
#D:\ASABackups\The-Center\
#D:\ASABackups\Aberration\
$BackupDir = 'D:\ASABackups\';
#Get current date and time and convert to text
$date = get-date;
$DateToText = $date.ToString("yyyy-MM-dd_HH-mm");
#Backup The Island
#Directory for each map's specific install files. Specify the folders used for each map install
$MapInstallDir = 'TheIsland\ShooterGame\Saved\SavedArks\TheIsland_WP\'
$sourceDir = $BaseServerInstallDir+$MapInstallDir;
$BaseFilename = 'The-Island';
$exclude = 'TheIsland_WP_*_*.ark','*.profilebak','*.tribebak'
$targetFile = $BackupDir+$BaseFilename+'\'+$BaseFilename+'_'+$DateToText+'.zip';
$items = Get-ChildItem -Path $sourceDir -exclude $exclude
Add-Type -A 'System.IO.Compression.FileSystem';
Foreach ($s in $items)
{
Compress-Archive -Path $s.fullname -DestinationPath $targetfile -Update
}
#Backup Scorched Earth
#Directory for each map's specific install files. Specify the folders used for each map install
$MapInstallDir = 'ScorchedEarth\ShooterGame\Saved\SavedArks\ScorchedEarth_WP\'
$sourceDir = $BaseServerInstallDir+$MapInstallDir;
$BaseFilename = 'Scorched-Earth';
$exclude = 'ScorchedEarth_WP_*_*.ark','*.profilebak','*.tribebak'
$targetFile = $BackupDir+$BaseFilename+'\'+$BaseFilename+'_'+$DateToText+'.zip';
$items = Get-ChildItem -Path $sourceDir -exclude $exclude
Add-Type -A 'System.IO.Compression.FileSystem';
Foreach ($s in $items)
{
Compress-Archive -Path $s.fullname -DestinationPath $targetfile -Update
}
#Backup The Center
#Directory for each map's specific install files. Specify the folders used for each map install
$MapInstallDir = 'TheCenter\ShooterGame\Saved\SavedArks\TheCenter_WP\'
$sourceDir = $BaseServerInstallDir+$MapInstallDir;
$BaseFilename = 'The-Center';
$exclude = 'TheCenter_WP_*_*.ark','*.profilebak','*.tribebak'
$targetFile = $BackupDir+$BaseFilename+'\'+$BaseFilename+'_'+$DateToText+'.zip';
$items = Get-ChildItem -Path $sourceDir -exclude $exclude
Add-Type -A 'System.IO.Compression.FileSystem';
Foreach ($s in $items)
{
Compress-Archive -Path $s.fullname -DestinationPath $targetfile -Update
}
#Backup Aberration
#Directory for each map's specific install files. Specify the folders used for each map install
$MapInstallDir = 'Aberration\ShooterGame\Saved\SavedArks\Aberraton_WP\'
$sourceDir = $BaseServerInstallDir+$MapInstallDir;
$BaseFilename = 'Aberration';
$exclude = 'Aberration_WP_*_*.ark','*.profilebak','*.tribebak'
$targetFile = $BackupDir+$BaseFilename+'\'+$BaseFilename+'_'+$DateToText+'.zip';
$items = Get-ChildItem -Path $sourceDir -exclude $exclude
Add-Type -A 'System.IO.Compression.FileSystem';
Foreach ($s in $items)
{
Compress-Archive -Path $s.fullname -DestinationPath $targetfile -Update
}```
there you go, the Powershell script I use to backup my 3 maps With some changing of paths it should be usable
If I've broken any rules sharing that, I'm sorry Mods, please remove my comment
you should of used code block for that lmao and not inline code tags
you used 1 on each end thats inline code 3 on each end is a code block
better?
yup now it gives a copy option for people to copy it all if they want to use it
it works for me, up to other people if they want to give it a try. I'm not a coder, so this was something I had to figure out from Powershell documentation and anything else I could find online
probably much better and more efficient ways of doing it
what ever way , that shud be pinned, super useful for those like me that are a bit dumb with puters
im having issues joining steam servers via ip any tips?
i tried to add through steam and it says no servers found then i try to use a command when opening the game and says make sure all mods are up do date or something along those lines.
ASA?
evolved
are you using the query port?
im not sure im fairly new to it all
when entering the ip into the steam server browser as a favorite, you'll need to format it like
123.123.123.123:27015, where the first part is the ip, the second part is the query port of the server you wan to add
well ive been putting this into favorites and getting no server found
172.96.140.66:7058
that's probably not the query port
i looked the server ip online and thats what I got
typically that's in the 27xxx range
that's probably the game port, and since you're getting the mods message when you try to connect, you just need to make sure your mods or the mods on the server are up to date, or at least running the same version
How would I do that?
theres a series of mods in the server I just dont know which ones I am trying to join the NA 25x 6m cluster if that helps
4 mod(s)
Ultra Stacks
Structures Plus (S+)
Awesome Teleporters!
Dino Storage v2
that's what comes up on battlemetrics
if you search for NA 25x on there you'll find them and they provide connect buttons that will fire up the game and try to connect
just select ark survival evolved as the game and then you can search by name
query port for the fjordur server is 20064
each of the server pages on battlemetrics gives all the details you need
@modest onyx
i hit connect and got "unable to connect to server, app id specified by server is invalid"
well it's possible your connection to it is not a good one....may not be a good one to play on
you can add their island server to steam server browser by entering 172.96.140.66:20062 as a favorite
that will allow you to see your ping to it
woah it actually popped up thank you
yeah, helps to use the query port 🙂
still the latest mod thing tho
I posted the list of mods they use...just go to steam workshop and get those mods, though normally it should autodownload them for you
i subbed to them
do a verify on your ASE install maybe?
uuuuhhhhhhh
right click ASE in your library, Properties, installed files, "verify integrity of game files"
all files valitaded
it verifies all the files you've downloaded have been downloaded correctly and will redownload it needed
possible the server doesn't have updated mod files....though I doubt that
I'd try to find a discord for the server or something so you can inquire why you can't connect. May be possible they have an issue with their mods
im not sure i tried to join again and now i see the mods downloading in the bottom right
although nothing has happened
just let the mods finish in the bottom right
after you sub to mods they will show up as installing in the lower right when you start up the game. they will not be recognized as isntalled until that happens
ok so wait for them to install and dissapear?
yeah, just let them install on the main menu. once they finish, try to connect
ok thank you so much
Yes, I haven’t played much cause I wanted to wait to host my own server cause I was tired of losing my progress when clusters shut down
Do you need a pc to get a unofficial server
in ASA, you need a PC or server hardware to self-host. you can't self-host on consoles anymore as its been removed from the client.
any platform can rent from nitrado tho. it does all of them together since ASA is crossplay.
I knew nitrado but what's self hosting
hosting on your own hardware.
different to non-dedi which is just SP
own or rented hardware....you can rent a machine and setup the software yourself
same difference.
where you get your hardware doesn't matter.
well, some people don't realize that option exists, that's why I mention it...and to them it's either buy hardware (if they don't have some) or rent from nitrado
someone knows where i should put """ConfigAddNPCSpawnEntriesContainer=(""" i mean in which file and under which banner, to modify dino spawns ?
game.ini
[/script/shootergame.shootergamemode]
Still no 51.9 for dedi servers eh...
Nope.
It's like they don't want anyone to play anymore lol
So far I've reverted back to ASE currently
It’s not the first time this has happened.
wont be the last either no doubt haha, tbh it cud be things that only effect official but who knows, most stuff is vague
Anyone know how i can increase the wyvern in the trench on scorched... i have tried dino wipes increasing the dino weight etc to no success. ?
Hey my Artficats are spawning like 10 at a time how do i stop this from happening
anyone know if summer bash has been added to main game yet so that we can remove the mod?
You can remove the Summer Bash mod
@minor valley
This channel is for discussions about unofficial (or single player) server setups including mods and other relevant topics. You can find recruitment and server advertising channels under the #bulletin-board-rules channel.
Is there a way to make enemy build distance bigger? It's way to small and makes areas laggy when people build on top of each other.
Info Post: On our server cluster, we have no issues with our servers, However recently with our Primal Chaos server, the problem arose that a single player could die at fighting a dino and crash our server. We found that players with a lot of cosmetic skin mods/or players from other servers may have some that are not up to date, and you will get an error when they try to respawn and the item is not found. In our case I had all the players uninstall all the mods, not just skin mods and now we have no issues, I am a big fan of the skin mods and truthfully we don't know what one, was the cause of the problem. But uninstalling all and re-entering the server to let them update worked. No more crashes. PS All of their deco skinned items still appear just fine. Just fyi for you too pretty @olive talon in case you see this often.
@mossy dagger
This channel is for discussions about unofficial (or single player) server setups including mods and other relevant topics. You can find recruitment and server advertising channels under the #bulletin-board-rules channel.
For those that may face this same issue, i found a workaround.
Isn't ideal but using the beacon premium, i replaced some of the existing dino spawns in the trench with additional wyverns. For example replaced dung beetle for poison wyvern, replaced mantis with fire wyverns and so on.
Some improvement to the amount that spawn now and doesnt seem too overwhelming.
Have a great day all.
If you have a death inventory mod this can cause this issue.
Most ppl have swapped to the AP death mod to avoid problems.
Otherwise, no idea. Ban skin mods I guess.
they have no issue after uninstalled and reinstalling but I will look into the other death recover mod because yes that is the one i have, it helps new players a ton with Primal Chaos.
Note that Im saying the AP one is the GOOD one. Other death mods seem to cause issues.
you did say it correct, alls good and thank you for the insight, as always appreciated.
I was reading the comments on the AP one and there are a lot of comments about it not recovering, Are you aware if that has been fixed?
I dont use it. I only know that its the one that doesnt bomb servers, whereas the other ones do.
Join the discord and ask the modder.
Don't know if anyone saw, but Public and NitradoPC got an updated 3 hours ago
I hope you add the Arabic language to Ark 2 because now all Arabs will carry it
I did so, but still no response, Ty 🙂 I will keep waiting patiently. I am in class for Unity C# atm so alls good:)
Mine keeps saying latency error everytime i try to connect
just started a Nitrado server with my friends
Stealth update? Or did I miss an announcement.
Suspect it's 51.9 that they released for official on Friday
Anyone tryna help split the cost to run more maps?😋 I got 2 atm but would love to grow it into a bigger cluster
Yo
My mate and I have noticed that whenever the joining player joins the other persons game, they are not able to see the dinosaur list, any dino's on the map nor the host player's icon. Is this a known bug or do we not have the settings correct?
Hey guys, I saw that this command "DisableCryopodFridgeRequirement=True" is used for getting dino out of a cryopode without a cryofridge next to it.
I'm on a nitrado serv, i'm not sure where to put this command in the file gameusersetting.ini. Does anyone know ? Also, does it work for Ark Evolved ?
Thanks !
its specific to ascended, doesnt apply to evolved as evolve did not have that restriction of cryopods.
You add it to gameusersettings.ini under serversettings section on its own line
[ServerSettings]
DisableCryopodFridgeRequirement=True
Haaaaaaa, thanks !
I'm a new player, I didn't know there wasn't restriction for Evolved !
Thanks for the info
HELP! The server I play is shutting down as the owners can't run it anymore. It's a great server. Is there anyway you can transfer the ownership to someone else ?.
If so, anyone interested in running an already established server ? 😂
i have cluster server and when im trying to travel my character or items it only shows on the server im trying to trasnfer from. when i transfer and go to download the character do not appear only when im in the original server i can download it back and still be on the first server.-. any ideas? download and uploads are turned on both servers
Are the connected or just have same name?@solar ice
they have same cluster id but the server name is different from each other completley
Is the cluster folder for both the servers the same? (They should be pointing to the same destination to share the data)
nah. but i'll take the players on my own lol. TPG in game search.
data synced across folders on the devices also works....so long as the sync is done in real time
hi all, not sure if this is the right spot to ask this. i have a dedi server on linode. server works fine. but we're having issues with either syntax or placement of some game variables. all of the "PerLevelStatsMultiplier_Player<attribute>" etc stuff doesn't seem to be sticking, regardless of where i put it in game.ini. according to the wiki this is correct and doesnt seem to 'stick' no matter where i put it. all other components seem to work
for example PerLevelStatsMultiplier_Player[0]=5 should be health (0=health) and change multiplier to 5. this isn't being honored. am i missing something
Are these placed under [/script/shootergame.shootergamemode] and not under a different section?
I think so. other variables are being honored. i tried this in game and server settings.
The only place it shud go is game.ini under the header snow gave above.
stop server , look at the game.ini make sure that line isnt already there, if it is there change it to the number you want, if not add the line in. save it , restart server
Anyone know of a loadout mannequin mod? 🧍♀️
Not yet. I suspect the mechanism for it isnt in the game (till Gen2) so modders havent recreated that functionality as of yet. Ive been looking for one but no luck.
Unless someone knows of one I missed, its not available yet.
is anyone elses center constantly going into restart loops on nitrado? everyday for the last week ive had restart loops
If its ASE, the Nitrado discord is where all the ASE owners are circling rn.
no its ASA
Thank you so much
all the ASE owners are hanging around nitrado discord? im not even apart of nitrado lol...
Snow means the nitrado users that are having issues with their servers. Not literally "all" ase server owners.
Anyone running Ark on Intel Arc card?
Well, in any case, does anyone recall seeing the XeSS console commands? I'm sure they were there, but they were removed at some point.
my server is on linode 😄 although clearly nitrado makes it easier to do management
@tardy grove
The ARK Switch official Discord can be found here: https://discord.gg/playarkswitch
ARK Switch players will always be welcome in this discord too!
Thank you
Hi, I don't know if this is the right spot or not... but I need help
Is there a way to create a private server and play with friends on different platforms? Me (PS5) my bf(Xbox one) have been playing on public PVP, because all the PVE are extremely built on, but we keep getting to a good spot and then someone comes and destroys everything, even if we move. I tried making my own server but it won't show up for him when he searches for it...
Rent a server from Nitrado, rent some hardware, or host a dedicated with a pc. Nondedicated is not crossplay.
If you have a spare pc and some basic knowledge of windows and how to port forward in your router, then making your own server is by far the cheapest option.
Obviously not cheap if you don’t have a spare PC. But it doesn’t need to be crazy powerful. No fancy graphics card needed, just a minimum of 16GB RAM and an SSD.
you get some sick little mini-pc's these days on amazon, slightly bigger than a phone. I got one running my 3 maps, like a charm
how to controll the minions health or damage?
i tryed this but it fails to work. it works correctly for the boss class
TamedDinoClassResistanceMultipliers=(ClassName="SpiderS_Character_BP_Aggressive_C",Multiplier=0)
TamedDinoClassDamageMultipliers=(ClassName="SpiderS_Character_BP_Aggressive_C",Multiplier=0)
TamedDinoClassResistanceMultipliers=(ClassName="SpiderS_Character_BP_Aggressive_Med_C",Multiplier=0)
TamedDinoClassDamageMultipliers=(ClassName="SpiderS_Character_BP_Aggressive_Med_C",Multiplier=0)
TamedDinoClassResistanceMultipliers=(ClassName="SpiderS_Character_BP_Aggressive_Hard_C",Multiplier=0)
TamedDinoClassDamageMultipliers=(ClassName="SpiderS_Character_BP_Aggressive_Hard_C",Multiplier=0)
takes 20 saddles megatheriums to a fight on gamma all with saddles and they all ended up dead
litterly had to change the boss with this: to make it winable(normal) but the spiders do to much damage, hate to see the dimorphadons 1tap me like the arthropruras
i also tryed just a normal areano class but it didnt effect the arena spiders
DinoClassDamageMultipliers=(ClassName="SpiderL_Character_BP_Easy_C",Multiplier=0.02)
TamedDinoClassDamageMultipliers=(ClassName="SpiderL_Character_BP_Easy_C",Multiplier=0.1)
DinoClassResistanceMultipliers=(ClassName="SpiderL_Character_BP_Easy_C",Multiplier=0.125)
TamedDinoClassResistanceMultipliers=(ClassName="SpiderL_Character_BP_Easy_C",Multiplier=0.2)
DinoClassResistanceMultipliers=(ClassName="SpiderS_Character_BP_Aggressive_Hard_C",Multiplier=0.1)
DinoClassResistanceMultipliers=(ClassName="SpiderS_Character_BP_Aggressive_Med_C",Multiplier=0.1)```
in your example, you try to use a 0, this wont work will just default back to 1 ,
You also have them as tamedDino, they are wild creatures
Hey, I've set up a dedicated server on my Xbox, but it doesn't show up on the server list at all. (server version is the same as the game version, NAT type is open) Any fixes?
You can’t run a dedicated server on an Xbox.
player dedicated
only way for someone to join it is if they're on xbox too and I invite them from my friends list. but that is impractical
You can on ase, I assumed that's what it was
Wish people would say ASE then!
@brave summit a 5 min quick code to update it? (ase xbox player dedi ark not showing on server list)
Pretty sure theres not really a magic way you make a non dedi show up, other than naming it something that puts it at the beginning of an alphabet search and leaving the session running 24/7. Might help but not guaranteed.
you mean dedi not non dedi? I named it "Aaaaaaaaaaaaaaaaaa" in an attempt to do the same thing but xbox can't filter severs alphabetically. The problem isn't that it's buried in the server list (only 50), the problem is that it just isn't there. but anyway thanks for the help, I'll see if leaving it running get's it on there
@low haven I saw you patched stuff, could this be added to the list?
Apologies I appear to have forgotten to read 🤦🏽♀️
Is this self hosted?
If its Nitrado; then if the map was showing before, were any changes made?
If its a new map, did you verify it appeared on the server list prior to making server changes?
I made it today and yeah it's self hosted on a second xbox. It hasn't showed up at all on the list
Wait, wut. Hosted on an xbox? You mean its a non dedi?
ASE, a dedicated on console
nah on survival evolved you can host a player dedi
Ok that explains alot.
Make sure you specify in the future, as you cannot on ASA and it'll lead to this confusion^
Your best bet is to invite ppl to the map. I remember trying to run these and they never showed up on any lists. Apologies but I have no advice on this.
To add to that, i believe they were primarily meant to be a home network solution, where a family can play on a map together without tether.
hopefully I won't need to lol
as in, the issue gets resolved
It's always best to regardless, ASE and ASA have some pretty different changes
no worries, at least you tried.
Thanks
👍
renting a nitrado server and I have 3 maps/servers running and one of the servers are Club ARK. For whatever reason I cannot upload items to transfer back to the main server. I dont have any of the prevent upload/downloads ticked and cant seem to find an issue in settings that would prevent from transferring items.
do all your cluster settings match up? Same cluster name on all 3?
Are you trying to move items from Club Ark specifically? It automatically goes into the obelisk on your main server for retrieval.
yes but nothing shows up and when i try and put it in the bank it gives a warning that transfers are disabled.
yes all 3 servers are basically copy paste for settings.
Hmm I've not used the bank at all. I won a chibi off the wheel. Exited Club Ark and went back to my clustered Center server; chibi was in the obelisk waiting for me.
Hello, I see that many owners or players have problems with duplication on private servers. Does anyone know where this comes from or even how to fix it......
Only during cluster transfers
On the map page the server ejects the player after having chosen to spawn on the chosen point and returns to the menu and on its return the duplication takes place
That issue comes with the way the game saves work look into storeconfig saving it should solve the issue as well as place characters in download if disconnect happens during transfer
Love how they put a server update out but it's not out for nitrado or dedicated yet
its a minor unofficals might never get it
I’d quite like patches that fix server crashes personally.
thankyou wish the rest of google was this straite forward goodjob
can some1 help me run ark server manager on pc, i did everything but i still get lan only
for ark survival evolved
Are you forwarding ports on your router?
Hey, I'd like to host a server from an old pc. Play on it from my xbox.
I understand nothing.
Do I need to own the steam version?
Would 8gb ram run a server.
Does anyone know of a simple guide for dummies.
Thanks kindly
Yes i did all
8GB will be a bit tight, 16GB would be better. You don’t need to own the steam version, the server is free.
Thankyou that's good to know 😊, I'd definitely give it a try if i don't need to buy the game again
hi guys i have a problem joining any non dedicated server. It just says connection timeout. My friend also has trouble joining my server, but we can both host it. Any tips?
anyone that could help me out quick? I started up a fresh server and Battlemetrics sees the server but in-game it's not showing up when searching. I can connect through console open IP:port
I have all the correct search boxes ticket in game (show player servers etc)
Hi, just a warning to people who would like to rent a special Club ARK server at a reduced rate : Nitrado has disabled access to ini files (and to file browser too) in the web interface of these servers. That means we can't modify the BaseHexagonRewardMultiplier value in order to scale token rewards. I'm incredibly disappointed. Last month I had a "normal" server for the Club ARK in my cluster, this month I chose the special Club Ark server, just to discover that we can't modify its Hexagon setting.
Is anyone still having problems with “lost players?” We run into an issue with some players that travel regularly where they either crash during transfer or after logging out from the destination server their profile file is deleted.
Have you checked your firewall ports on both the pc and the router? That tends to be the typical culprit.
yes, ports are forwarded and firewall rules added
help please if you can
I had this issue yesterday ! On the morning, I traveled from one server of my cluster to another one, then a few minutes after, I layed in a bed and I quit the game. Then, a few hours later, I launched the game. I was surprised to see that game asked me to choose a spawn point (instead of respawning me automatically in my bed). My character was fine, but all of his inventory (including hotbar items and cosmetics) had disappeared. Besides, its' like the actions I had made during the few minutes I spent on the destination server before disconnecting, i.e closing doors and uncryo a dino, were not registered. That means the dino I uncryopodded on the morning had vanished too.
Ive accidently clicked giveallstructure on my private server, is there a way to undo this?
I know of only two ways
- one by one, join the tribe of the origional structure, do the take over that structureset and then leave the tribe, move on to the next poor soul. it's a PITA.
- roll the server back. you'll loose some progress, but unless you have a small server with only a few tribes, this might be the most time efficient method.
Unfortunately there is no ctrl+Z in ark.
thank you bud, im now doing a server roll back, too many bases and players on my map to do that, luckily not too many people have been on since the last bk up 20 hours ago
slightly different. our players get their ###.arkprofile file deleted off the server and have to creat a new toon. fortunately i take nightly backups and can restore the file. but if i could find a cause, that would be kewl
yeah, it sucks, but I think most ark admins have made a similar mistake. I had an admin do it on mine within 10 hours after a launch where we had a bunch of people building bases. She had to go door to door.
the alternate server file method does away with the ark profile files. In my experience it seems more reliable and I think it's what Official uses.
There's a couple of steps and server restarts to set it up but afterwards everything is contained in the file itself and arkprofile only exists in the cluster directories when transfering.
Link to the method is here:
#unofficial-setup-help message
My ark is trying to tell me to create a new character on my server when my character is still laid on the bed is there any way to fix this? 3rd time this has happened had to restart from scratch every time
Interesting. I had not seen that. I'll definetly try that
Keep a backup before you start just in case.
Run the server once, adding -converttostore and -usestore options to your existing ones
save the server.
Stop the server.
Remove the -converttostore option from the server startup options and start the server up again.
i.e. the only difference from when you ran the server before all this is now the -usestore option has been added to the server options.
it should make things more reliable when transferring because now the servers will create player profiles in the cluster folder instead of talking to each other over the network
The caveat is without the player arkprofile files, if there is an issue, you can't restore them from a backup. But I dont think there will be any issues, I've been using this method since about April
FOR NITRADO/HOSTED USERS
Beacon General Settings
Enable: Use Dynamic Config
Custom Dynamic Config URL: "backetyoururlwithquotes" (see dynamicconfig.ini below)
OR
gameusersettings.ini
UseDynamicConfig=True
CustomDynamicConfigUrl="backetyoururlwithquotes"```
**__dynamicconfig.ini__**
*use github/pastebin to host the file, but make sure you click "raw" and copy that url, not the direct url to the file*
Format the file as follows:
```TamingSpeedMultiplier=2.5
HarvestAmountMultiplier=6.0
XPMultiplier=2.0
Other Settings=
More Multipliers=```
**__Note__**
While you can force the server to immediately read the dynamicconfig file, what the server reads will depend on how quickly the file is updated by the host on save. In my testing this ranged from immediate to 5 minutes, so check the raw output. Otherwise, the server will read the file on worldsave (every 15 minutes).
Can you share that dynamic config among multiple servers? Things like multipliers etc I have as standard across all of mine but it means managing separate ini files.
yes u can just set them all to read the same dynamic config file
its how they do the officials
Any documentation (yeah, I know) that covers what you can or can't put in the dynamic files?
pretty sure i rem reading it in the wiki, but it was a while ago , have a look there first
Will do. Some things presumably not like server names 🙂
what
there go 🙂
i was working at same time an some reason didnt copy lol so pasted my clipboiard
my PC does that all the time 
its 10.30pm on a saturday, busy ass day ;/
a lot of question marks under that ASA column
id assume if they work on ase and in there game on asa, youre fine tbh
seems fair. OK if you're setting up a new server I guess, I'm wary about doing it for my existing ones in case I screw things for my players
dont think you can, if it dont work its just gonna default to base setting or ignore it if it dosnt work at all
then there's the whole gameusersettings.ini and game.ini to contend with
you know the simple stuff works, any rates they change weekly in #server-rates , is done via dynamic
true
Yeah, they have the page locked so I can't update it
Nothing to worry about. In effect, whatever you put in the dynamicconfig file overrides the listed setting/rate. It has no other impact. So, if you just wanted to increase harvesting, you'd just use that line. It touches nothing else in your server's configuration
It's more that I'd want to put everything in dynamic config except the things that are specific to each server
ok question i am making a ase server from one of my asa servers that i dont use so im converting it back to ase here is the problem i cant find the xbox version for ase all i see is ase ps4 switch mobile and pc but no xbox im not sure what to switch to so xbox can play
Are you hosting your own, or using Nitrado?
only nitrado can host xbox ase servers , they have that locked down
You have to download the Nitrado app from the Microsoft store and rent the server from there. You can't convert an ASA server to a Microsoft ASE server afaik, simply because of how they have it set up for renting on ASE
cheers for your reply bud the server back up didnt fix the issue, im so confused as it defiantly rolled it back, but yeah just finished work so i guess its time for me to go door to door, 10 hours aint bad.... 6 weeks my server has been public and this is the second time ive messed something up for my small playerbase. live and learn i guess.
i have a problem joining any non dedicated server. It just says connection timeout. My friend also has trouble joining my server, but we can both host it. Any tips?
Im wondering if where i clicked give allstructures is what i done, everyones buildings say "demolish allowed", maybe something else caused this, can anyone tell me how to reset everyones building timers?
I’m having a problem with the cs vivarium an the cs item aggregator them work together right? The aggregator isn’t collecting anything is there something I need add in the ini?
Likely a networking issue—Likely NAT or port
Do they own the structures?
sorry i just fixed the issue, turned out it was using the app Beacon, i was editing Supply Crates the other night and it had a setting that was set where all structures had no decay timer as default i guess.... as i never altered that part of the app.....
Ah, gotcha.
I rerolled my server for nothing 😦 lol
It happens to all of us
Yeah i take comfort in seeing everyone elses issues, just to show im not alone , cheers anyway bud
Hello anyone use survive the night mod? Because i want to know what your using to make it better for players
@molten axle This channel is for server setup help. Smaller trades can be made in the #pve-discussion or #pvp-discussion channels, be sure that any trades are ingame as RMT (Real Money Transactions/Trading) is not allowed in this server and is against Ark's Code of Conduct. Remember that you are trading at your own risk, as the moderation team here are volunteers only and cannot ensure trades are legit ingame. We also recommend finding a reputable trading group, as we don't keep track of trades here.
okay
Anybody know how to limit/edit dino spawns? Including mod creatures.
on ark, is there a way to give admins a permanent access to admin? without having to use admin password? would also be helpful when admin retires, we can just revoke the access. I know on ASE there's a way to see all players on the nitrado dashboard and add to admin list or ban list but doesn't seem to make a difference back then it only shows them on the dashboard as admin
Hello guys! I have a friend i want to play with, but when i host my fps drops to 30. So here is my question, can i use my laptop as a server and play ARK:SE on it with my friend from the same steam account?
If there is an easier way to fix fps issue i'll be happy to hear it
I also have an EG account with ARK, but i've heard that you can't play with steam players threw it
You can use your epic account to play with steam, just can't use any mods.
As far as I know, you'd need to use a different account to play the dedicated anyway, or at least it seems like it'd be easier to do and not worry about messing anything up.
Damn... I guess i'll just try to tolerate low FPS then
@distant hearth -- So; you asked for an update when I converted things. I've been so nervous about doing it that I put it off until today. I have discovered something, for other nervous server-operators though: -ConvertToStore -UseStore -BackupTransferPlayerDatas is cross-compatible with a cluster server that isn't using those options. So it does look like you have the option to dry-run the conversion on, say, a more idle server that people don't mind having rolled back if something were to go wrong.
thanks for letting me know , thats some really handy info 🙂
I'm gonna continue slowly rolling it out over the cluster for the next 2 days, because my cluster has been active a lot this week for whatever reason. Everyone kind of spread out among the maps - so I think I'm a good guinea pig. I'll let you know if there are any hitches with the changeover. I'm beginning to suspect that the issue is a race-condition with server saves and character saves.
hi is there a way to make max level dinos more likely to spawn? i have a lvl150 cap and im mostly getting max 95 (ase)(dedicated server)
@distant hearth how do you restore a lost character on a server that's using the new save store? :[
Because now I don't have arkprofile files to back up and copy over/restore.
Did anyone else's obelisks disappear yesterday?
Is there a way to autounlock engrams on playstation in singleplayer?
ASE or ASA?
ASE
i havent done it not needed to, id assume with backup player transfer data, you cud just put there backup transfer data back into the cluster save data folder
Overwrite the spawns or use a mod if you're on steam.
Did your admin red gun them?
Question for the people who own a nitrado when I do a wild dino wipe does it do it on the entire map or just in the area you initiated the command? Never done em myself before when I use to admin servers
It’s for the full map
Alright appreciate the help 👍
Is there a different drop used for lava island on center ? Got a red drop near swamp it was correct, had what I'd coded it to have but when I got a red drop today from lava island none of what I'd coded it to have was in it.
me and my buddy are new too ark ascended looking for some one to play with learn the ropes and have fun
i have converted my other servers back its just this one for some reason i made a nitrado ticket ty tho
For running ASA on a VPS, is cpu speed or ram more important (I'd probs go for 8gb ram, small private server)
more ram is better
for a private server, 16GB would be good with a few people on it. the more you build the more ram you'll use
About 6 mo ago we tried an OVH vps with a 3 ghz cpu and 10-12 gb ram and it was super laggy with 3 people and 5 small mods (not large, small QOL ones).
On The Island, shortly before Scorched came out.
I run my servers off dual xeons that start at 2.7ghz and boost to 3.5ghz, proxmox does not register if it ever uses the boost though. my island server is up to like 13GB of ram with a few people having built on it but only me really playing now (actually in a bit of a break atm, so the servers are shutdown for now)
We'd probably have no more than 5-6 on at a time (would be a private sub/patreon server). So would 16 be enough for that? One map, one server. Can't afford multiple at the moment.
to start with 16GB should do it, just keep an eye on the ram usage and increase it, if necessary
If it ends up being the same as last time, 2-3 people would share the same base so there will be barely any bases on the map.
that should definitely help the ram usage. on my server we were all making our own bases, up to 4 people at one time
Since our last server was 6-7 or so months ago, I guess the game's a fair bit better optimized at the moment right? Tho we don't know how Aberration will be on its launch.
Would a 3 ghz cpu be plenty for a small private server, or would you recommend closer to 4?
3ghz is fine to run the island
iirc, we had like 3 ark additions dinos, and reusable tools/lights, and that was about it.
PVE, not PVP.
it's more optimized than it was, but the big optimization is expected when the UE 5.4 and FSR 3.1 updates hit....the former may launch with Aberration (but won't hold Aberration back if it's not ready), the latter should be launching with Aberration
my island server is at 21 mods. Couple dino mods, some building mods, and QoL type mods. Definitely pve
this is my setup: https://ark.wiki.gg/wiki/User:ThunderGod97/cluster/
We'll probably switch to aberration when it drops, it's such a beautiful map.
and we'll have to host through commercial VPS company, since my internet maxes out at 100 down, 10 up haha
the advantage to running on a VPS is you can control what maps you run, and could run multiple servers by themselves (1 at a time), just fire up a different command line depending on which map you want to run
are OVH vps decent enough? Since our last experience running a 3 ghz, 12gb ram 50gb space allocated, was pretty poor.
Hey im just joining im on xbox and i have a sever and i dont know how to do the rates is there anyone that can help lol
I can't comment on OVH as I've never used them. I would say your issue was the ram limit
ssd vs nvme, does it matter that much on the server side? I run the game locally on an nvme
mine are on SSDs
alright. So in short, a:
- 3 ghz CPU
- 16GB ram
- 50 GB SSD
Should be able to handle 5 or so players average with say, no more than 10 small QOL mods?
I don't think you gain a lot of performance with nvmes on the server side
I think that should be good
Thanks, I'll take that to my friend who has more server setup experience, he thought 12 would be enough haha.
since dayz doesn't need 16 (which is what he had)
I'd say if you have issues with lag again, do the same setup but with nvme. it might help with it being a remote host and that many people
alrighty. we're working on a startup project (he's the coder) and once we approach an investor, we may set aside some space for a single game server for each of us
the only time I ever had lag on my current setup on ASE was when I was running Gen 2...that was a beast to run and imo needed higher single core clock speed to run effectively without lag. I have not experienced lag on ASA yet
unfortunately ASE doesn't like to play nice with OBS Studio on my end for some reason. ASA works tho. 🤷♂️
Is anyone part of the discovery world discord when I click on the link it doesn't bring me to the page
that 16GB should be fine, i would suggest to add 64GB Swap memory which the OS will use as a fallback.
So instead of the OS kernel just killing your server when you run out of memory, it will use Disk
In my experience SWAP works really well with ark, given you have fask Disk and good CPU, i see no contention issues.
I used to run 3 maps on 8GB physical RAM with 65GB swap. I pushed it for a long time until i got my own better hardware
No. A mod took 'em out.
Hello everyone. I just crashed on Scorched. Modded server. Hosting a dedicated through steam. Had the SCS mod on and my inv was full of dinos. After the crash, I reloaded and all the SCS stuff is gone off the server. I have closed everything down as to not lose anything. Has anyone encountered this before? I’m coming from Xbox only without ever running mods before so I’m still new to the ins and outs of mods.
what's the proper way to enable custom cosmetics on a hosted server like nitrado? currently any custom cosmetics have to be installed by every player on the server in order for said cosmetic to be seen by anyone else. This applies to unofficial mods and official mods (like the power rangers mod).
Server crashed or your game crashed? Which Xbox model? The S seems to have issues with SCS, probably due to lack of RAM.
Hello, Does anyone know a good egg to use on the pterodactyl panel, I am wanting to setup my own ARK server "The newest one"?
As I have tried some and they just don't work, As they tell me to update steam & Anything I try fails, I can't even get it to work on windows with the steam server installer from steam it's self.
Any help is greatly apricated :)
are custom cosmetics enabled by default? I can use the micky and minny ones, but not the Krazy cosmetics. or the new spino inflatable
I can use the Krazy structure ones, but not the hats
figured it out. it cant apply to tek armor for some reason
hey guys how do i make it that turrets have infinite ammo in orp instead of not shooting at all on asa?
most skins can't
i was surprised because all the ones I tried could. summer skins
wonder if they have changed in ASA
I don't use tek much tho so I haven't tried in years lol.
I assume the mod creators can choose which the skins can go on. I know structure cosmetics can.
After a little digging it looks like the modders have to do an extra step to make the skin work with tek. many probably dont know how
Update for my previous situation: so my buddy that lost his character apparently had never checked the OB for the inventory and the dinos he lost. all of it was there and we were able to download it. no broken lvl 1 dinos so that was good. it even kept his imprint somehow. (i think his new character had the same profile as the old character some how. idk its all weird)
If this is ASA, imprints are tied to the account now
oh!?! i did not know that. i thought it was still profiles like ASE. that is a great change
It's definitely one of the best changes they've made
any idea how to make the game look less fussy/blurry on xbox?
pretty sure you can turn off motion blur, that will help
Hello Good evening, I have players on the server that when they transfer and crash it duplicates all the items in their inventory. Does anyone have an idea on how to fix it?
there is a setting that goes in gameusersetting.ini, it might help
useitemdupecheck=true
Don't use that with JVH Blueprint though, it will break the mod
idk if anyone can help me with this but i made my but now i cant place down any of the modded structures
Is there any way to get a boat that is perma stuck on a beach, unstuck with commands?? Or anything like that? I reset the server, nothing. Traveled around and came back still nothing. This boat isnt wiggling free. Just checking before I build a new one.
My friend tries to join my server and it says Waiting to Join where the normal Join button is anyone know why
Does anybody know if you can remove tether distance or increase it to the point where it doesn’t exist and it doesn’t bother you or your friends in the game? (I am on PC) and I just want to play ARK without my friends in the lobby getting knocked back again.
Try that
R.streaming.poolsize 0
Yes. Make a dedicated server.
Is it possible to change the engrams in boss fights and replace the element with something else?
An any1 help me with a problem im having. When inviting my friend to a non-dedicated server it does not work and when it actually accepts the inv he can’t connect? I have no mods on
Hello, Does anyone know a good egg to use on the pterodactyl panel, I am wanting to setup my own ARK server "The newest one"?
As I have tried some and they just don't work, As they tell me to update steam & Anything I try fails, I can't even get it to work on windows with the steam server installer from steam it's self.
Any help is greatly apricated :)
Have they added the summer bash into the game yet?
People are saying yes. But I’ve not seen an official post in announcements or patch notes.
hi, are you aware of an overspawn of the dinos in the ice cave and swamp cave on asa the island? we've probably been here for a few days, we haven't changed anything at the dino spawn...
does ark base game have giant hatchframes
Yes
Is this the place that i can ask if my creation of server with SteamCMD had problem ?
Yes
Hello!
Anyone got any idea on fixxing the 50/50 point on center. We got a shitload of dino there wild and
Tamed. Tried in moving in with ghost and the setplayerpos code and it crashes the server
Only happens on our center map every other map 50/50 is clean
So it is safe to remove the mod for summer bash now?
Is it just my cluster where the tek saddles dont work? rex and tap
You can enable this event in your own game with the commandline: -OlympicColors
Can someone explain this to me?
does anyone know if there is a way to keep the pvp on my server but disable the raiding bit?
Made the dinos bright colours
Did you get your -OlympicColors working?
Not yet
Sent you a pm. 🙂
Yeah, still got my items from the event and the mod is not on my server
Hello!
Anyone else having there center maps decay timers resetting to every restart? We use same settings across all our maps and only the center is doing this. Other maps the timers work fine.
how to fix cave overspawn on the island without using mod?
Somebody has a recommend plugin for cross-chat, which works also if you have multiple physical servers (connected through net-drive for clustering)?
We had major overspawn of sharks with the custom lvls mod . Once removed that was fixxed
Overspawns even without the custom dino levels mod. Most of the caves in ASA overspawn even on official.
Anybody had any issues with the Draconis Glaucus mod? I'd like to add it to my server, but always wary about crashes etc w a new mod.
Had it for a bit now on 18 maps. Zero issues.
I am experiencing an issue where characters that transfer are being renamed “player”. I am unable to renameplayer as it just makes the name blank. Upon transfer, it goes back to “player”. Ideas?
Did you try using implant to respawn after?
Usually a relog or like goat said killing the character should work to fix there name back. If they cant use implant eat a bit of poly or drowning themselves fixxes it
Add the 5050 cleanup tool mod, it's amazing
Use cheat renameplayerid SPECID NewName
Ok ty !
Thanks everyone. I will try these methods
anyway to change tether on xbox?
No
Yeah, still didnt work. The name is always blank
This also did not work. Tried a few different ways and transferring to repeat.
If we remove the Summer Bash mod, do all items go away or did they add to the game with a patch?
They added it, but without putting it in patch notes
Thank you. I'll do a backup before I remove just in case. 🙂
Always wise
Appreciate it. 👍
I haven't removed it, but I've seen many who have without issues
Is there a way to make the astrocetus visble on other maps i added it to the spaw and its just invisble according to wiki its invis when on other maps
Is there a file in ASA where I can put a list of EOS IDs to whitelist admins like I could in ASE's AllowedCheaterSteamIDs.txt file?
anyone know the map code for sotf?
Is there a setting or something I can enable to find my server easier? After typing it in I have to hit refresh for it to populate, would be nice to have the option to just rejoin
playing on PC game pass and having a lot of problems with getting servers to list as well as joining listed servers and also hosting/joining private games with someone else at home (technically still online but we happen to be in the same house).
Is this a common problem with a common solution?
Hilarious! Officaial website doesn't even acknowledge the existence of PC Game Pass. I guess that might tell me everything I need to know right!
"Do you play on: Playstation? XBox Series X/S? Steam? or Epic Store?"
PC Game pass is non-existant
PC gamepass shouldn't have any more issues then the other platforms except it being blocked on official PvP due to not having an anti-cheat.
yeah there is seemingly no rhyme or reason to the server tracker. it randomly works or says "no sessions found"
but then even when it lists them I can't join - "JOINING FAILED: Could not Retrieve Address"
also all servers show N/A for ping
googled this and their proposed solutions are insane - Reinstall Windows etc. Like, Really???
also a small side note but am I missing something or does the game have no QUIT option and to quit I have to alt tab and just close the application from the taskbar
Hello I play solo with the maturation of babies X5
How to set my impressions please
If its singleplayer, BabyCuddle multiplier.
If you've got a server, add BabyImprintAmountMultiplier=100 to your game.ini
What's the best settings for a pve
That’s like saying what’s the best recipe for a cake. You’ll get 100 different answers.
Wondering if anyone can help me. Running unofficial servers off steamcmd all off of same server files. Center SE Club boot with no issues. The island however crashes and I get a crash stack log. Haven't seen this one before. All servers have the same mods in launch parameters. Reinstalled all mods already. Same thing happens island only
SAP - Anyone know a way to make tree sap taps more productive? How can we get them producing more than 20 per tap? Thanks.
Does anyone else have issues with dedicated storage simply not working? My players are stating they place it and can't put anything inside or get a UI/wheel to show up at all. Curious if anyone else is having this issue.
i need some help and info on why many of our caves (island, center) have a heavy overspawn.
lots of dinos without end and fast respawn... game settings are relatively normal, no spawn set. mods are:
s dino variants, arkitect structures, simple msg, super structures, simple scrolls, simple trade, klinger rustic building and additional structures, marnimods hairstyles, dino depot, jvh landscaping and garden decor...
It's the game.... even vanilla the cave overspawns have been nuts since launch
Can anyone help me with some server coding? I'm trying to get a server set up that only spawns theri's, I've got all the code for changing every creature spawn to rex's and that works no problem. but when I change the code to spawn Theri's instead nothing spawns in
So, this works: NPCReplacements=(FromClassName="Dodo_Character_BP_C",ToClassName="Rex_Character_BP_C")
But this doesn't: NPCReplacements=(FromClassName="Dodo_Character_BP_C",ToClassName="Therizino_Character_BP_C")
And I just don't understand why. If anyone can help I'd be very grateful
The syntax is correct, so it should work, did you wild dino wipe?
yeah and then I waited 10 minutes and nothing spawned back. If it should work I'll see if I've just not been patient enough or something.
Any idea why the tek helmet does not work in my pvp cluster ? It doesn’t highlight anything I’m wondering if there’s a setting or something
I recommend doing these in beacon. It types it for you correctly make sure it’s under the correct section in ini
can someone help me setup a steamcmd server
im tryna have a modded cross platform server for free
Hey so I have a question and I was unsure where to post it (yes I looked at the channels) if I use a premium map mod for my server will my other members be able to join my server or would they have to purchase the mod just to play on it?
They'd have to purchase the premium mod as well.
Thank you! That’s too bad it’s restricted that way
Eventually they're going to look into making it a server side purchase only but for now it's still this way
I think more premium purchases would be made if that were to be the case. At least for maps imo
Same here, and just to let you know your question is directly server setup help so this is the correct channel ^^
Awesome! I know some people tend to make the comment so I had to put that in there just in case 😂🤦🏽♂️
No worries 
thought it was gonna be where certain things when playing will require it
I don't remember tho. not sure how they'd get server side purchase to work when servers don't have accounts.
Meaning only the owner would have to buy it.
servers aren't tied to an owner tho. you can download and run servers without an account, thats what everybody was complaining about at launch, it required an account to run.
I'm well aware of what you mean pumpkin.
I'm not sure what you mean then
sorry.
It was in a community crunch a few months ago.
Sorry, I misremembered. It would be up to the mod creator if it would be a restricted (everyone would have to pay) premium mod or not.
https://survivetheark.com/index.php?/articles.html/community-crunch-408-introducing-ceratosaurus-from-ark-additions-r2297/
I don't know think it was implemented yet though.
Everyone is waiting for this to be implemented.
I thought so
has anyone found a way to add mod items/dinos to the club ark rewards?
Why I can’t see unofficial servers?
can anyone help me set up whitelisting?
You start by getting the ID of the player you want to whitelist
https://ark.wiki.gg/wiki/Server_configuration#Ark_IDs
That section links to the Adminsitrator and Player Whitelisting that follow it that show you how to set them up.
I was the one that recreated those sections on the wiki. So, if you have any questions after reading that, let me know and I can answer them and clear up any issues with what I put together on the wiki.
Hi all, Im hosting a dedicated server with steamCMD, it is all up and running with crossplay enabled but i am unable to join via windows 10 ARK. any help is much apreciated.
ASA or ASE?
ASE
ASE is not crossplay. Only ASA can do this.
k
but how are the dedicated servers ran on say niotrox
cause im tryna play with xbox and windows edition
On ASE, Xbox can play with the Xbox pc version (Win10) cuz its actually made to be compatible.
Steam can play with Epic versions only.
PS has no crossplay.
Only ASA is fully crossplay with all platforms except Epic (there is no Epic version in ASA)
alright thanks but is there any way to make a server for xbox ark
For ASE I do not know. I just rented my Xbox servers 🤷🏻♀️
Other than non dedi that is, but thats not the best way to go for several reasons.
k no problems i just rented a nitrox server, bit of a shame tho cause ive got all the stuff i need to run the server for free 😭
If you needed an xbox server, send them a ticket and they can cancel it. Ppl do this all the time (order the wrong server)
To order an xbox server, you need to order it thru the Nitrado app (download and install it from the Microsoft Store) OR order it from the same app installed on your xbox.
Thats the only 2 ways that I know of to get an Xbox server on ASE from Nitrado.
yh dw i got an xbox server im just a tad annoyed that wildcard make it so hard to host them ourselves
Is there a way to copy and paste, say for example, small tribes console PvP settings verbatim to your own server?
Dinos keep auto decaying immediately after tame, anyone else experiencing this?
Hello everyone🙋🏻♂️
I would like to get myself a private asa server. I know how to set everything up and all the nesseccary stuff, but i have no idea about the hardware i need.
We are at maximum 5 players.
I would like to get a cluster with at least 3 instances(one of them will be genesis 2 when its out). Also would like to get it running with about 5 to 10 small mods.
Anyone got has at least a direction on what parts i could pick?
And does asa need more ram or more cpu?
For 3 maps, 32GB RAM will be ample. Each map uses 10-12GB.
And what would you recommand for a cpu?
you don't need anything too crazy for that either.
I have a Ryzen 7 5700G which is 8 core but also provides the graphics for my monitor.
A Ryzen 5 5000 series (e.g. 5600G) would be fine or an i5 if Intel is your preference.
A 500GB or bigger SSD or nVME drive and you'd be sorted
yea anything like that will work prob only need 250gb drive for 3 maps but storage is cheap , can also use norm cpu chips an just throw in an old cheap gpu just for the picture when needed , prob ways to do it over network too with no picture output im just not smart enough figure that bit out yet hahaha
You can do it with Remote Desktop. I do either.
I mean, anything that will put a display onto a monitor will do. The server doesn’t use the graphics card.
mhmm , do home systems boot with no gpu installed on a non cgpu , cpu though ?
most home systems have intergrated graphics
at least any that I've used has that as a backup
i be suprised if thats correct now days with gaming pcs , maybe laptops more so though
maybe
my newest PC was a pre-built base I guess.
the two i have here are a r5 3600 and a r5 5600x neither has intergrated graphics , an there like run of the mill common as muck components
lol cpu's
I have no idea what PC parts mean 😂
wouldn't intergrated be motherboard tho?
ah lol sry
no motherboard doesnt do any graphics processing, it will mostly have a disply port that wont work, becuase only certain cpu can use it
thats weird
with gaming pc it doesnt make sense to have a cpu that can do graphics (they often cost more) , knowing that it will have a dedicated gpu installed
yea was to me too, when i was learning about it all building a pc last year lmao , prior to that the last pc i had was 20 odd year ago
20 years without a PC? what
had laptops , but didnt really do much online stuff, mostly a lil gaming on xbox
I'm needed some help in my dedicated server setup, specifically creating clusters.
We have data already on TheCenter_WP and im looking to create a cluster now for club ark.
I've created a new folder, new bat that launches the server. I am able to link the two, but all of my saved files are gone. I went and brought the save file back and ive got nothing.
My understanding was that the "ClusterData" folder, would only store players as they move between servers. Do i need to do something else to recover my saves and retain the cluster link?
by create a new folder, you mean , used steam cmd to download a fresh server?
yes.
ServerFolder
TheCenter_WP Folder
BobsMissions_WP Folder
in both of those has entire engine, shooter game and steam apps folder structures
ok im struggling with the language barrier a little , but if u created an entirely new server for the club ark, it doesn not effect the other server , so im not sure how you lost the the entire save data for TheCenter_WP
I don't understand either. That's why im asking.
Two COMPLETELY different paths.
D:\GameServerHosting\ARK_Map_TheCenter_WP\ShooterGame\Binaries\Win64\ArkAscendedServer.exe
D:\GameServerHosting\ARK_Map_BobsMissions_WP\ShooterGame\Binaries\Win64\ArkAscendedServer.exe
D:\GameServerHosting\ClusterData\
When I logged into the server a new file was created in ClusterData "00023f8c43604e31b79996d90cbde669" that's jsut a "file" but I believe this to be playerdata
yea something else happened to your ,
D:\GameServerHosting\ARK_Map_TheCenter_WP\ShooterGame\Binaries\Win64\ArkAscendedServer.exe
to make it lose the data
this 00023f8c43604e31b79996d90cbde669 is an eos id, its the part that transfers all the player data across the servers .
the thing is , when you have a club ark server , you join from your server an it makes a completely new char ,
And to add, this argument in the bat command.
-clusterDirOverride=D:\GameServerHosting\ClusterData
yes thats correct also need -clusterid="myclusternamehere"
Yup. I've got that too. I don't think it's actually deleted the files, they are still within the TheCenter_WP etc, but it doesn't seem to be loading them anymore. Almost like the server is looking to a different place to where the game saves are.
so you load on to the centre map and its just blank ? no player building etc?
correct. No player data or buildings/ dinos / tribes etc
ok you will have to troubleshoot, hopefully you made complete backups an can just roll back to a previous one?
yup. so im trying righ tnow by relaunching the game without the clusterid/clusterdiroverride
that doesnt effect what the game loads from it save files , so i highly doubt that will do anything
only setting ?altsavedirectory=<file path> can change where the server reads save data from
That's my understnading too. I've restored from an alt save and it worked. So let me try adding back in the modid and cluster id etc
This is WEIRD.
This is all I added to the bat file:
REM Club Ark Mod ID: 1005639
-mods=1005639
-clusterid=myclusterid -clusterDirOverride=D:\GameServerHosting\ClusterData
And the map file and player data is gone. I just confirm that without that it was fine.
you dont add the mod id for club ark to a normal servewr
doesn't club ark not have saved data?
it doesn't hurt. I did it for mine.
Don't you need the mod id to allow you to go to it from the "menu"?
no its built into base game, only need it on the club ark server, try remove that modid an i shud think it will work
its caused others issues, typical ark doing ark things randomly lolz
what issues? mine had none.
my server PC froze 
on release wud just crash servers , wipe maps , usuall fun ark stuff
wipe maps is if you aren't set to club ark since club ark doesn't have map saves.
maybe they made it so the servers ignore it now if there , that wud be good but too simple for wc
The mod id on base server seemed to fix it when removed.
what I mean is, if you ran a nitrado with the club ark mod the old maps would be wiped since club ark has no saved data. people were thinking it was a mod not a map itself.
that mod is is equivalant to a mod map id
yea what desolate said lol
why does this channel have slow mo , out of curiosity ?
my PC is now yelling at me.
essential the mod was changing the directory to the clubark
think about how you answer people 
all our channels have slowmode
wow, it really didn't like me force shutting it down while it was frozen 
So here's a question. You can have any number of differnces in mods between different cluster maps?
yeah, just don't transfer the modded stuff
to a degree yes, but not really advised, you will run into issues with players transfer modd stuff an losing it
I wouldn't even upload it may cause issues of some kind.
its been like this for 5 minutes
usually thats after an update, eventually slow ass windows gets around to it an then restarts or fires up
nah, it said it had an error before the cleaning up screen.
when it first turned on it said there was a problem, restarted itself then did the update and cleaning up
hmm dunno then , fluffdragon is the pc guru in this forum if hes about , doesnt norm come in this channel though
it finished lol. complaining about it helped
anyway im off havre fun all , bed for its near 2am oops
Dinos keep auto decaying immediately after tame, anyone else experiencing this?
How much ram would it take to run all Asa maps at the same time with maybe 4-5 ppl overall
currently? you can probably get away with 32GB.
or with all 13 maps, lol.
oh and then are you counting any mod maps
those will also add more.
I believe each server is around 10GB-12GB but I've seen them go as low as 6GB and higher then 14GB.
with nitrado can you transfer to other worlds if you only purchase one server or how does that work
Does it only use ram if someone is on it?
I have 32 gb rn
it'll use less ram when nobody is on it, but it'll always use some.
I'd just limit it to 2 active at a time
oh, I hear there are some weird mating issues if your servers are out of sync tho.
so don't transfer things you want to breed unless your settings are very boosted.
I know it's stupid but.. I have a nitrado server and I'm still setting it up but I'm having an issue with my raw prime meat stacking lol it just wont... and I've tried looking at videos for it, the cooked versions stack 🥹
@bleak ivy ok thank you for the info!
Does anyone know if there is a fix for Dino Gateways (ASA) not allowing creatures on follow to go through them?
Hmm weird, I just placed it down again but flipped it by pressing E and it allowed them to follow properly... Odd
@distant hearth Thank you. Im going to remove the mods for club ark, but keep them the ssame for other stuff.
Nitrado wipes the save files for the server when you switch maps. I think you can pull it off by backing up your files before switching maps...but not entirely sure how it would work.
Running a Nitrado server and I know in the past that if you adjusted stack sizes on Evolved, stacks would disappear. Is that the case with Ascended Nitrado servers or is it safe to do?
guys if i want to forward an ark server
do i need to open each firewall port individually?
using the server manager
Can open a range
can u clarify pls?
i think i get it now but like i can find that the server manager's server is already registered and with the ports open and aproved
@toxic hazel do i need to open them manually in this case
Try join it and if it times out probably need to forward them on the router, the manager M
Might be just doing the device firewall ports
ah yes on lan level it works
man am really messed up wait a minute
If you do public ip:port join command and it no work can't reach from outside
ok ok so ama try this without manually approving if it doesnt work i just do it
is that it?
Hello, anyone in here use AMP to host pvp/pve? I’m noticing a lack of muliplier options such as breeding rates but the main issue I’m having is death beacon not appearing.
Yeah man, if cant join from the public ip or outside your network you'll need to forward the ports on the router
any idea why the gameusersettings.ini does not work? no matter what I do nothing changes in-game
i ticked the box of read only on and off and its still doesnt register
nitrado or self host ?
singleplayer
just wanted to copy a different gameusersettings from a server I hosted to sp
ah sry i dunno bout single player, prob the in game settings over ride it or summit be my guess
?
is player levels on unofficial servers still capped at 155/205?
depends on the server u join
Make sure you’re editing the ini files with the game not running. Because when you exit, it will write back whatever settings it has been using.
Is there a mod/tool in ASA that allows the admin to remove all crafted items from the world? For example, if i wanted to destroy all crafted pump shotguns, is there anything to do that?
Anyone needs a really really good asa server with perfect stats pm me
How long does it take to boot up a server if you host it on your pc?
depends on the map, how good your PC is, how many mods, etc.
it'll tell you when it started
I’m not sure yet on mods I just finished building pc, it is a ryzen 7800 3xd with msi 4070 ti super and a mag 670e tomahawk msi motherboard
32 gb ram
2tb ssd
I have no idea what PC specs mean lol. I'd assume that is fine 😂 it runs on my toaster PC.
Ight idk what specs mean either really this was my first build
Hopefully it all works the way I hope
Servers are just ram and CPU. doubt that GPU would have major issues running ascended tho lol
ram is the only part I understand. there are 3 numbers and higher is better for all of them lol.
32GB means you'll at most be able to run 3 servers .I'd recommend only running 2 at a time.
Server as in a map right?
yes
you can run a server on motherboard graphics. you don't need a GPU. It takes a few minutes to start up, especially if you have built a lot on the server. If it's fresh, no more than 5 minutes I would say. Definitely depends on if you load mods on it though
Then how to ppl run clusters from home lmao?
old enterprise hardware
yeah, actual servers lol
I host a map or 2 when I am transferring.
I don't see a point hosting more if I'm only on one 
if I'm hopping about a lot I'll fire them up but if I'm sticking to only one or two, that's all I'll run
just set one as the "main" and one that switches around at set times or when enough people ask. its a group of friends right? or do you want public?
1-3 friends
Not public
then yeah, just ask them which map should be the main. and switch the other map around either when you all agree or when asked.
that's what I used to do when I first setup my clusters on my home pc's. 1-2 maps running at a time. Fire up maps as needed, shutdown ones unneeded
its what I've always done. granted I was on windows so I could only run 1 server no matter what 😂 but still, I kept doing it when I moved back to steam.
you'll also probably want to setup a whitelist so you don't have to enter the password every time.
Start here: https://ark.wiki.gg/wiki/Server_configuration#Ark_IDs
I ran Ark Server Manager for a while in ASE...both for myself and for another guy here in Michigan. He's still running ASE servers and never moved over to ASA.
yeah, competely....just follow that link to get started
Lots of RAM. I have 128GB on my server.
Currently runs 4 ASA maps and about 9 or 10 Minecraft servers simultaneously.
CPU is a Ryzen 5700G, I only use the onboard graphics. Has 500GB nvme for windows and a 2TB for the server files.
I need this upgrade xD am on 3 maps and 1 minecraft server hahaha
I'm currently using 52GB out of 128GB with 11 Minecraft Bedrock Servers, 1 Minecraft Java Server and 4 ASA Maps.
Wait what, I am using about 48 of 64 GB. also got media vm for plex on it too though
I also have plex on mine. I'm not mod heavy though, which will help with RAM use
Ahh, yes I got likee 17 mods mainly structure ones which prolly dont help, 2 of the maps use 11/12GB and one uses 8/9 xD
my usage is
Island 11.2GB
Center 10.7GB
Scorched Earth 7.2GB
Club Ark 2.2GB
I only currently have people playing on Island and Club Ark, nobody has moved onto the other two yet.
Interesting, Mine are TI - 11.7, SE - 8.4 and TC 10.9
All played on with things build up in different places
TI has the most built on it and SE the least
in terms of mods, I have
Super Cryo Storage (933099)
Death Recovery Mod (930404)
JVH Blueprint Maker (951440)
MarniiMods Hairstyles (949521)
Nevermore Taxidermy (949298)
Utilities Plus (928621)
Not on Club Ark though, that's stock
Me list is
Arkitect Structures Remastered,931874
Cybers Structures QoL+ (Crossplay),940975
Klinger Additional Structures,931877
Klinger Additional Rustic Building,946694
Imbue and Upgrade Station,929543
Dwarven Builders Mod,924900
Greenhouse Glass Fix,941145
Resource Gatherers,932365
JVH Garden Decor,966079
Super Spyglass Plus,929420
Tek Creatures (Crossplay Version),933588
Cyrus' Critters: Jumping Spider,1007609
Dino Depot,942024
Circa's RP Deco,934749
Shiny! Dinos Ascended,928548,
Upgrade Station,930494
I think anything loading in new dinos or structures will put memory usage up. You might find that Xbox Series S has trouble with your servers for that reason
other platforms should be fine
Yeee we got no xbox series s players so tis all good xD
Dino mods
any work around when using different dino mods on different servers within same cluster.
what happens is the engrams for each mod after transfer will need to be relearned, is there a ini code or launch peram or work around to prevent the need to re-learn?
im not certain this would work , never tried , but if you know the engram entries for the mods , you shud be able to set them to auto unlock.
i suspect this wud mean that on each transfer it wud unlock the engram on it own
ya that might work, will be alot of work to add game ini entries for all engrams for each mod but that would work i think
test it with just one or two first incase doesnt work lol, never know with ark
I have a question, me and my friend play on Xbox series S and PS5 and want to play ark together but cant find eachothers servers, why?
non dedicated is not crossplay, you will have to find an actual server to play on if you wish to play together
ASE?
ASA
So we cant play with just us two?
not unless you rent a dedicated server , then just you two play on it
You'll have to have a dedicated server
I'm kinda confused
Non-dedicated cannot do crossplay
Ok, how do I get dedicated one?
Run one on a computer you have...or rent one. Or play on official
So if I understand correctly
We cant play together just us 2 unless we rent a server that I have to have a computer open on the side to open
Do we know if the dynamic downloading for custom cosmetics is actually out for unofficial servers? I've got the setting in my ini, but it doesn't appear to work.
No. You can run a server from a spare machine, or you can rent one, or you can host a game on your/their machine. Three options to choose from.
You have to play on a dedicated server. Your options are:
-unofficial hosted on pc You own
-unofficial hosted on a pc You rent from someone else.
-unofficial hosted on a nitrado server you rent from them
-any official server
Yes
How much per say
With nitrado it is $24.99 for 30 days. They do as little as 3 days which is $6.09. I wouldn't go with ntrado though...their service is shit. Look up the YouTuber Nooblets. He has a guide on hosting your own on a rented server
Ok, I feel Ark should just have multiplayer on they main game but, thanks for the help
Also a guide in pins
They do have multi-player. Nondedicated is just not crossplay.
But I dont wanna pay for it😔
Then join an existing server.
Unofficials run by someone else is hit and miss....sometimes you can find a good one but it wont be something you control. There's also official servers...which are free...but then again...official has its own issues
Yeah, I just want to play me and him, free but from what I understand from what you guys have said I cant do that, right?
That's sounds sarcastic but I'm genuinely asking, sorry if it sound not good
You can for free if you have a secondary pc to create the dedicated.
But I need ark on the PC correct
No...dedicated server files are free
Ok, thank you all for the help, I really appreciate it🙏🙏🙏
So all I need to do is search it up on like google or something, get the server files, and then we can play?
you will need a pc/laptop good enough to run the server,(16gb ram minimum), access to the router for port forwarding then you can learn how to setup the server
you go through steamCMD. there is a video guide in the pins.
Ok
@chilly coral Please do not repost that here as I've just removed it. This is for server setup help. You have already asked in the #bobs-with-probs channel. Thanks.
Would an i7 - 9700F be an okay processor to to run a server? I want to have 3-4 maps. There is only 5 of us that play
shud be fine, the servers are more ram hungry than anything
Im converting my old pc, I need an ssd, and I was going to upgrade the ram from 16 to 64 gigs
that shud be absolutely fine , for that useage and be able add in a club ark server too
if you scroll up a bit couple guys give example of there ram usage with a few mods on the servers
You’ll get about 6 maps for that.
Hi can I have help with my unofficial server
I used the ark sa server tool and it says my server has successfully started but it won’t show up on my playstation
Looking for it under unofficial?
Yes
what ever port you set the server to run on was forwarded properly?
How do I check
the computer and your router firewall, allowed through any external antivrus programs etc
I just did the default 7777
got any mods?
They are
yes but did you forward it through everything i said above port 7777udp inbound , check on a website called battlemetrics , search the server name to see if its actually showing up
Uh how exactly do I forward it through all of those?
It showed up on battlemetrics
google it will vary from different makes an models, windows firewall part is easy enough ,
To allow it through windows firewall, search windows defender firewall, open it,click advanced settings,click inbound rules on the left , then new rule on the right,select port then click next,select UDP ,then in the txt box type 7777 for our example, change the number to what ever number you defined with -port=xxxx,click next, we want to allow connection so just click next again, we will allow everything so click next again, now we can name the rule , i just call it what ever port i forwarded , i.e 7777, click finnish and that part is done.
when you search the name try to hit the refresh button again after all the other servers are gone 
I did
are the other filters correct?
also are you just running the official tools or going through something (like what ASM did for ASE)
Idk what asm is
I just did this, thank you
its ark server manager, don't know what they are called for ASA.
ok, you will then need to google how to allow that port through your router too
if they are on the same LAN network thats not the issue
unless for whatever reason only playstation can't see lan.
They are on the same network, but my friend isn’t so
some routers still have a hissy fit on lan network with asa , dunno why im crap at networking , just know i had to forward my bt homehub router in the uk before it wud work , unless i just did summit wrong
then you'll need to fix both issues.
I just launched it and it worked. same as in ASE (better since clusters now work)
never had to mess with any kind of settings for ark, PC, or router
i wasnt that lucky , but figured it out in the end with help of some others in here so it all good now
it was last year so i forget but something to do with nat loopback or some crap i dont understand lmao
pretty sure that should only happen when on the same PC. most routers by default don't like when a PC talks to itself while going through the router.
that wud explain it, i do use same pc
to log into your router? you will have to figure that out from google depending on make and model of your router
Are you sure I need to do this router thing for it to work?
for your friend to join 100% you do
if port-forwarding is the issue then possible.
I'd fix the playstation issue first tho 
What’s the playstation issue??
you said your playstation couldn't see the server right? and it was on lan.
thats not a forwarding issue.
So how could I fix it
Its so weird, it showed up on battlemetrics but no sessions found when searching?
most likely its settings related. crossplay could be disabled (shouldn't by default tho), one of the mods not being on playstation could stop it,
or something weird like playstation just not being able to use LAN (I don't own ASA on playstation so can't check, xbox, windows and PC work fine)
it showing in battlemetrics just means the server is up and running fine, thats just the first step with connection issues, next i do port forwarding, but in your case, check all the filters are set correct when you search, expecially the show player server checkbox
All maps, all, unofficial, show password protected is on, show player servers is on
try password protedcted unticked , since thats easy to do
no way that worked
its one reason i dont like the asa server mangers, most of them arent quite right yet, i do my servers manually
nah its easy to do as you set a password u assume it shud be set , but the managers dont always behave right
the filters are also weird on ark, since almost all servers are crossplay the last one does pretty much nothing 😂
Thanks guys
hi does anyone know why after a malwarebytes scan all of my ark world files were deleted? is there a way to bring them back?
Looking how to make custom engram costs for my server.
what would reinstall even do
oh ark world files, i mis-read
on malware bytes it should have a list of all deleted files and why
then i doubt there is anything you can do
:((
What OS do you guys use for your servers? Window or Linux?
theres a mixture of both , personnaly use windows as im not familiar with linux
Do you need windows 11 along with windows server 22?
im running it on windows 10 home version , it can be run win 11 or windows server above 2016 i think it is
Do you have to have windows 10/11 to run windows server?
no, the server can be run through stm cmd , so it will work on any of the vcersions i mentioned
i say run, installed is what i shud of said
Okay so I just need to get a windows home version and install it on an ssd then run the server through stm cmd
install it yea
Anyone know how to make custom engram crafting requirements that’s not with beacon? I know it’s worth it but I can’t right now
I’m Trying to make Cementing Paste 1 stone, and Gunpowder not cost any charcoal.
I have QOL+ and im looking to switch to a different one with similar/same structures? Recommendations?
Can someone tell me how to use cosmetics at unofficial?
Nipiro or something it’s called or you could type it out yourself
Nipiro hasn't existed for like a year or more
hey, I just set up a dedicated server on linux and when I try to connect to it, my steam launches its own dedicatd server. Any ideas on what I might have done right?
Hi
So I want to change harvesting breeding and taming rated, where do I do that
In my server config right? Is it GUS.ini or Game.ini?
And does anyone know what the proper ini settings is
https://ark.wiki.gg/wiki/Server_configuration the wiki says.
harvesting and taming are gameusersettings,
there are a ton of breeding settings, they are scattered in both.
So for harvesting and taming i add those settings in GSU.ini Config under [ServerSettings]?
yes.
are mods distributed on both CurseForge & Steam separately? the popular ones seem to be on curseforge, but no way to just add -mod to command to get those right?
Thank you
ASA does not use steam for mods all mods are through curseforge. you do use that launch option to get mods onto servers. its the curseforge project ID.
it says the project ID on the right under about project.
d'oh... thanks
@distant hearth ...its been a bit more than a week and the switchover has gone well. I'm still hella nervous about someone losing their char during a rollback though.
do the per stat level multipliers and base go in game.ini or gameuser
im not 100% sure, but i think its in game.ini
can someone help me? i ordered a ark server on nitrado a couple hours ago but when i start it nothing shows up when i try to join it on serverlist
but it lets my friends join
anyone have a config file they think has nice settings
Is anyone else have issues with Giga and Carcha spawns on island? For some reason 0 are spawning. They are spawning fine on Center though. We do have the increased giga/Carcha mod on, however this is also on Center. So can't really see it being that
its either mod or if you're configuring spawns through ini it can be a miss configuration
never had an issue with them spawning on island, there's always at least one and they spawn within roughly an hour after killed. I been farming them often
no worries, I think it's the mod, it's just weird it's only on Island, will remove mod and see, ty
Any1 help me how to set 100x server with 4x dino stats?
And increase max player and dino lvl?
And how to make Custom Dino level mod working
did anyone manage to wipe wyvern eggs via rcon in ASA like it was possible with ASE
destroyall DroppedItemGeneric_FertilizedEgg_NoPhysicsWyvern_C 0
is not working anymore
You can use whatever version of Windows 10 or 11 you have. Home or Professional, either will work. I use Windows 11 Professional but only because I had a license key for it spare.
If your friends can join, it sounds like you may not have your session filters correct if you can't see it. Make sure maps are set to all, correct mode, etc
Had no idea lol, it’s been so long since I used it. Only other option is beacon Omni for Asa
Yes it can be
Thank you
what did you want to do
change harvest yield multiplier but its stuck on 10 and being stubborn
check your dm
i can help you with it
Hello, how can I have more then 250 tamed dinos per tribe? Unofficial 🙏
guys i have a problem with a friend of mine
we want to create a non dedicated session but he cant join me
we're both on epic
Wondering if anyone know how to link ark in game chat to discord chat/channel?
Yeah i do that, it still doesnt wanna change, goofy ark ascended
Hi, I need help. I am trying to log into my server however it keeps saying 'Content Failed to load' when loading mods. Anyone know how to fix?
I have the same problem at the moment, tried to go on official servers with mods too and the same things happened for my girlfriend, her friend and me, so I'm assuming it's the game at the moment
going to try and make a ticket
Just to know if it's the region, where are you from ? Europe ? France ?
Okey, so, it can be Europe issue
There's not a lot of persons complaining about this problem, as usual, when a problem like this happen, all the community is here to make the Discord a bad day
And when they keep saying it the mods will add a slowmode lol
Can't blame mods to be honest xD
often that issue is 1 of 2 things, a mod is out of date and wont update for what ever reason then have to delete an redo it manually , more often its some sort issue curseforge side with there servers
Yeah, it's quite possible, it's between CurseForge and servers, the problem is the same on Official Servers for me, so I'm assuming is not on our side
yea id suspect curseforge acting up again then , its been a while since i seen that issue though , i thought they had actually got
it sorted
In my opinion, we are just the first persons impacted by that, let see in some minutes xD
Oh, I have another clue, @main gyro are you hosting your own servers ? If yes, did you use OVH as the host ?
Im hosting a Nitrado server.
I am unable to connect to my server due to this...however, someone else in another country connected just fine
So, it's CurseForge the problem, again
Its probably just picking and choosing who's night to ruin 😂
i just came to ask about the content failed to load but seems like i'm not the only one xD
Well, we are more and more persons, @main gyro we just were the first to have the problem, let's take your popcorn, in some minutes, the mayhem will begin
can i join?
Welcome to us ! Let's take the popcorn and waiting for the mayhem of the community with "WHY IT'S NOT WORKING ?"
Bett but what to play in the mean time?
does anyone know how to fix content failed to load for modded servers?
Don't know to be honest, I'm working on my mods while waiting the comeback of servers lmao
Should we take bets on how long till they are back up? lol
Bet on 1h at least
im gonna say not till tomorro morning xD but it's almost 11 for me lol
It seems, for the moment, we are not all impacted, in approx. 20-25 min. we will
Im trying to figure out how to make custom crafting requirements without beacon
i guess time to play arena or delta force xD
its relitavely easy , the wiki has examples, you can figure out the rest from there with googling the codes for each item ,
https://ark.wiki.gg/wiki/Server_configuration#Items_related
same^^
heres the default example for say arb
ConfigOverrideItemCraftingCosts=(ItemClassString="PrimalItemAmmo_AdvancedRifleBullet_C",BaseCraftingResourceRequirements=((ResourceItemTypeString="PrimalItemResource_MetalIngot_C",BaseResourceRequirement=1,bCraftingRequireExactResourceType=False),(ResourceItemTypeString="PrimalItemResource_Gunpowder_C",BaseResourceRequirement=9,bCraftingRequireExactResourceType=False)))
now lets say we want it to cost just 1 stone to make it , so we just do
ConfigOverrideItemCraftingCosts=(ItemClassString="PrimalItemAmmo_AdvancedRifleBullet_C",BaseCraftingResourceRequirements=((ResourceItemTypeString="PrimalItemResource_Stone_C",BaseResourceRequirement=1,bCraftingRequireExactResourceType=False)))
any item you want to change just need to google the codes for it and add them or change the numbers as u need
beacon obv makes it way easier , so i do reccomend it to save alot time
Thank you. I don't have the money for Beacon right now so I can't
yea i get that, its the hard way for you then 🙂 , once u suss it out it will be easy enough though , with the examples you have the correct format now so just a matter of copy pasting to change things about 🙂
if theres one specific thing, i can do it for you as another example , but i dont have time to do a whole load things
unofficial servers error message: “failed to load content” how to fix?
waiting game, curseforge or steam or the comunication servers between them having issues
yep
Okay looks like yall having the same problem
Has yours started working yet?
Came here to say "Content Failed to Load" on Nitrado servers. Looking like everyone is having the issue. Lovely.
yeah same issue here
same for mine, and looks like modded officals having same problem
Curseforge is down
there site works fine for me, so must only be part of its down lol
Only for PC users too huh?
mods
Steam users?
its only mods server side, downloading and playing with mods local works lol
i think when u go to load in map it does a check to curseforge to make sure mods are up to date (version match) , if that cant happen its just giving error
it does something, but i just updated a mod and loaded into a single player world fine, its something with how the servers check in with curseforge
At least I am not the only one having the problem tried to log in on my unofficial game but keeps saying content failed try againg 😦
Sad thing is I am not on Nitrado the owner of the server is using his own rig to run our games
its a curseforge issue it effects all unofficials and officials that have mods , doesnt matter, thats just nitrado getting fed up of the mass customer service issues haha
Is it so hard to just want to relax and play Ark after a long days work lol
yup, lest its not a WC issues this time lmao
lol for sure
its the nature of the beast , so many differnt connections need to be made for asa online , connect to eos, connect to curseforge connect to server itself blah blah, now they added mods to arkpoc, curseforge just got a bigger load on there servers etc
downforeveryoneorjustme is showing curseforge having issues since an hour ago
Can someone help me out with setting up an ark server (nitrado)
Its not Nitrado. We are self-hosting a non-Nitrado server and getting it. Nitrado not gonna fix it
I didn't say it specifically was nitrado. It's curseforge. I posted that because nitrado put out an announcement about it too.
Oh thanks for relaying the message someone needs to tell them it aint them
And curseforge is updating stuff manually in the mods list so they arent down
they will be aware, its just a message to try an calm there onslaught of support requests i expect
Makes sense
is there a link to the official dynamic config ini like there was in ASE?
does it not use the same one?
I cant seem to find that one either I am bad at the internet
haha lol wont
wow
its on the wiki ,
https://ark.wiki.gg/wiki/Server_configuration
search for livetuningurl
thx
its actual line is
CustomLiveTuningUrl="<theurlitshowsonthewiki>"
you may also want to look at ,
-UseDynamicConfig
Perfect! Thank you!
np somewhere on the wiki is the actual adresses for the official dynamic config files for each server variation, pvp, smalls arkpoc etc, i just cant find it at mo, im sure u can find if you search it
if not, using the command defaults it to pve or pvp variation depending on what the server starts as , afaik
I dont care what the dodo's say about you @distant hearth you're a good dood!
Evening all,
Does anyone know a way to get the character names for those on the server? ListPlayers returns the Platform name and the log files for the join/leave provides the platform name too
Is there a setting or something I can enable to find my server easier? After typing it in I have to hit refresh for it to populate, would be nice to have the option to just rejoin
none that i know of , if it helps i just type in the first like 5 letters , hit enter, then it shows
How are these other non dedi servers showing up?
hi do you have it modded and is it a nitrado or dedicated
there was one mod but it was removed due to a bug, it's a private server, all maps started working after removing the mod, only the center doesn't want to start at all
just to be clear, it was summer bush from wildcard
Hi. Im just curiouse if any of you could possibly help me with a line in the game.ini file that I simply cant get to work. Im trying to dissable specific engrams.. but no matter what I do they refuse to get hidden. It feels like I follow the youtube and wiki description to the letter and Im not sure what Im doing wrong.
Hi, dont know if should ask here but me and my friend play on a non dedicated world. The tether distance is fine and we can go across the map from eachother but caves just dont work and teleports me to him whenever i enter one
any help would be appreciated
Is there any way to disable explorer notes xp boost and the raw xp itself?
That's just nondedicated for you. The only way to not have that is to join/use a dedicated/unofficial/official.
Hello, I see that many owners or players have problems with duplication on private servers. Does anyone know where this comes from or even how to fix it......
Only during cluster transfers
On the map page the server ejects the player after having chosen to spawn on the chosen point and returns to the menu and on its return the duplication takes place
does anyone knows what issue i have and how to fix it? so my dinos goes to lvl 600, but on all levels above 150 says max lvl, wich mess up with shiny dinos only spawning a little over 150. i have custum dino levels mod on, i tryed reinstall it and remove the codes in game.ini, restarted and did a dinowipe but still the same issue,
this also happens everytime i log in, if i do a dino wipe when online its all good, but next time i log in its the same,
im on singelplayer
You’d be better asking in the mod discord or in #bobs-with-probs if you’re in single player. This is the unofficial server channel 🙂
You may have conflicts between your mods.
I directed them here. This is for setup help, including singleplayer.
Unofficial is anything not on an official server
Then what’s the difference between this and #bobs-with-probs ?
Ingame help and setup help
unfortuneately due to the way things have worked out in this channel with asa, they wud likely get better help in #bobs-with-probs , i cant think of anyone that replies and helps here regularly that knows about single player
its not, but single player works differntly to servers, especially on consoles that have no ini access
They're on steam. Here is fine.
consoles would still be setup help 
If you don't know anything to help them, then you don't have to respond about it. It is still setup help regardless of it being sp or not.
sry bee not trying being akward , just trying get the help he needs the best way possible
Then let them ask their question where I've already directed them.
Bumping this here again.
did you change the min/max levels in the ini? shiny uses their own and isn't effected by the vanilla setting.
[Shiny]
DinoLevelMin=150
DinoLevelMax=180
thats the default.
I believe you can also change that ingame.
They have a custom dino levels mod. I’d imagine there is a conflict between that and Shiny.
just dug into this , so i dont come across as a complete ass hehe ,
i notice the op put he tried to do it in game.ini ,
majority of mod settings are done in ,
gameusersetting.ini under there specific header, this is possibly the problem ,
i cant link to the curseforge with the info
On ASA yes, most is configurable ingame. CDL shouldn't cause any issues as I use it and shiny.
I remember Shiny Dinos mentioning about doing something in the settings to make it work properly for single player, might be that? probably on the mod page somewhere
thats just spawning, hibernation.
Not that then 😂
won't effect levels or anything
its most likely just this. and yeah, not sure what they were changing in game.ini since mod and difficulty is in gameusersettings.
that link shud give all the info they need to fix it
I posted all they need lol. its just those 2 settings.
I’m setting up a server atm and I was just wondering what I should put inside each drop, any advice or pre-made ini codes would be greatly appreciated!
it entirely depends on what type of server your running and what you want it to be, drop coding is a bit of pain for me so i tend to leave them default.
i have beacon omni app that makes it much easier to code drops but still prefer to not mess with them tbh
Fair enough, I was planning on hosting a 25/50x boosted server with modded drops
ah i dunno then , thats way more boosted than anything ive ever done or am familair with , wudnt be suprised if 50x caused alot crashing issues
anyones servers wont start now with steamcmd?
you dont start a server with steamcmd, steamcmd is only used to download it
It connects to steam to look for updates
just updated and launched both my test servers no issues, do you have a specific error ? or just it wont boot
if your strat sript calls steamcmd to check for updates before exting steamcmd then starting your server you probly hit the steam weekly scheduled maintenance that happens every tuesday.
server start calling for an update is not a good idea, it can , does and will cause issues at some point using batch files .
best to keep the install/update separate from start .bat
if using some sort script , this might not apply as it may have some sort code to prevent server starting before being fully updated
What is the ini setting for floating damage text? does it already exist in the asct or do i manually add it?
its usally on i think, but the ini code is
ShowFloatingDamageText=True
goes in gameusersetting ini
How do I make some states boosted and how do I make more resources come out like I want to do a 10x but idk how to do it but for states I want them to be some what boosted any help please
My modded maps works fine. My center map was just got corrupted. Rolled it back. It gets all the way to the end of starting up then crashes
then its time to do troubleshooting, remove things logically , till the server boots and is stable, then add things back till you find the issue .
if it has mods i remove those first , if server boots an fine , i know its a mod issue.
if no mods, start with all the player and tribe files, if boots you narrowed it down, etc
Can you adjust the potential max level from the creature Cryopod reward on Club Ark for unofficial servers
Does anyone happen to know how to increase how many levels your dinos get? I managed to get it working for player but when i try for dinos they cap out at 2 levels. Got players allowing 200 extra levels but when i do same for dinos they only get 2.
they are the same setting, just the second one is for dinos.
make sure the XP amounts match up to the max amount set.
So would I do "OverrideMaxExperiencePointsPlayer=" on both lines or put "Dino" in place of "Player" on second line?
I've tried both Player and Dino and neither one works. I'll just delete that line and deal with dinos only getting default levels.
any issue on teleporter? i just logged in on my dedicated server and when i used tp the server crash?
hey sorry i fell asleep yesterday! i have everything in the gameusersetting.ini sorry, i will try the [Shiny]
DinoLevelMin=150
DinoLevelMax=180
thanks for the tips with shiny, now they spawn the rigth lvl
Anyone else been having issues with auto-decay not working? For example my thatch is set for 7 days decay and creatures 16 days, but my auto-decay is resetting everyone's structures anytime the map restarts (daily restarts or even random update/crash restarts) and haven't had anyone's stuff auto-decay in 2 months.
Hello ! I Can't disable the cooldown respawn time on my pve server ... how can I do ? Thks
Just answered you in #pve-discussion.
How do i enable crossplay for my local server ?
non-dedi doesn't support crossplay.
dedicated servers are crossplay by default.
is there any mod or plugin like MTS has which is you can ping enemy or team member?
It's a dedi, i host it on my computer, but i couldnt see my server from my ps5