Page 1 of 1

FOV saying disabled

Posted: Tue Feb 28, 2017 10:01 am
by Nieechi
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?

Re: FOV saying disabled

Posted: Tue Feb 28, 2017 11:49 am
by whasf
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.

Re: FOV saying disabled

Posted: Wed Mar 01, 2017 6:57 am
by Nieechi
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

Posted: Wed Mar 01, 2017 9:44 pm
by TeoTwawki
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

Re: FOV saying disabled

Posted: Thu Mar 02, 2017 7:26 pm
by Nieechi
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 :)