Hey all, I have just done an update on my server to get it to be up to date with dspt master and now it seems that when clicking on the manuals, they give the message:
----== SystemMessage ==----
Disabled.
The contents of my settings.lua that relate to these is set to:
-- FIELDS OF VALOR/Grounds of Valor SETTINGS
REGIME_WAIT = 1; --Make people wait till 00:00 game time as in retail. If it's 0, there is no wait time.
FIELD_MANUALS = 1; -- Enables Fields of Valor manuals
LOW_LEVEL_REGIME = 0; --Allow people to kill regime targets even if they give no exp, allowing people to farm regime targets at 75 in low level areas.
GROUNDS_TOMES = 1; -- Enables Grounds of Valor tomes
Is there a new setting somewhere I have to change to get these to work?
FOV saying disabled
Re: FOV saying disabled
Did you change your settings.lua while the server was running? If so, you need to restart the game server(s) as settings.lua is read on startup.
-- Whasf
Re: FOV saying disabled
All the changes i have in the settings files and conf files etc are copied over from a backup when i do a patch rollup, this is before the project even builds so def before the server is started
Re: FOV saying disabled
Thats a terrible way to do things. Use git. Commit your customizations to your fork. You are going to have things go wrong doing the copy paste or drag n drop stuff..
You can also stash save / stash pop things that shouldn't be committed, like your configs..
This is why you have a problem: that setting name changed. you copy pasted over it and now the new setting is missing, and thus NIL
You can also stash save / stash pop things that shouldn't be committed, like your configs..
This is why you have a problem: that setting name changed. you copy pasted over it and now the new setting is missing, and thus NIL
Hi, I run The Demiurge server.
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. - Martin Golding
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. - Martin Golding
DO NOT PRIVATE MESSAGE ME ABOUT BUGSPLS USE [ code ] CODE TAGS [ /code ] WHEN POSTING CODE
Re: FOV saying disabled
Ah cool, I make the other changes i have in the fork usually, just the config ones i didn't as it had the log in details and stuff for the SQL, i'll look into what you said about "stash" save/pop, not come across that before. Thanks