Page 1 of 1

Green/Red World toggle

Posted: 26 Nov 2018, 05:25
by Ulrik
Possible to add a selection for worlds to allow choice of red or green world? If not, does anyone know what needs to be added and where to make a world green now? It would be nice to be able to get personal claims back easily. Also if a world was set green on install, is there an easy way to make all claims allow Enter as default? This would make it so that players are not constantly bouncing off claims?

Ulrik

Re: Green/Red World toggle

Posted: 29 Nov 2018, 21:16
by tonkepen
I also have that doubt, I do not really know how to make it green. I put the explanation given by the developer here .... but it does not change anything.

https://steamcommunity.com/app/290080/d ... 904552370/

Re: Green/Red World toggle

Posted: 29 Nov 2018, 22:17
by Nyuton
Because they put wrong syntax in that post.

Correct syntax is:

Code: Select all

$cm_config::WorldZoneType = "Red";
or for green:

Code: Select all

$cm_config::WorldZoneType = "Green";
To verify what's the current setting, you can run this in server console to display a center message with current world zone type in server console:

Code: Select all

centerprintall($cm_config::WorldZoneType, 10);

Re: Green/Red World toggle

Posted: 29 Nov 2018, 22:22
by tonkepen
Well therefore I understand that if I put it like that ....

$cm_config::WorldZoneType = "Green";

Will my dedicated be in green? ..

And as always, thank you very much for your quick response.