Changing a file

So if i want to change a file in lost city on single world on my own server, do i need to run anything to update the server.

Example i want to add a few items to the general store and extend the timout time.

Thanks!!!

To add items, find the relevant store in the .inv file and add new stock :slight_smile:
To extend the logout time, you have to rebuild the client (or edit the minified JS)

If you’re running it as a dev world it has a file watcher to automatically rebuild and reload after changes. Otherwise, run npm run build manually and (re)start the server.

1 Like

Thank you so much for the help!!!

I wanted to use a already built custom server but it won’t let me use quickstart with custon files.

It keeps saying error, change your env file to build=false. Im guessing it was made like that on purpose.

Thanks again!!!

Oh yes, the build verification is so we don’t make any mistakes and accidentally edit data. You can edit your .env file to add BUILD_VERIFY=false (do not have a # before it) and let it build again.

1 Like

Thank you for helping me, your a life saver!!!