The reason why your claims are not expanding.

General discussion about Life is Feudal MMO and Life is Feudal: Your Own, The main section and backbone of the forums.

Bigsteve
 
Posts: 88
Joined: 07 Feb 2014, 03:53

The reason why your claims are not expanding.

Post by Bigsteve » 26 Mar 2015, 16:41

Been confirmed in bug tracker.

https://lifeisfeudal.com/mantis/view.php?id=3053

drop bags and corpse decay are the reason.

User avatar
Burne109
Zealous Believer
 
Posts: 159
Joined: 26 Nov 2014, 07:03
Location: Ohio, US

Re: The reason why your claims are not expanding.

Post by Burne109 » 26 Mar 2015, 19:24

Hey Bigsteve, what variables do you modify to manually make the claim radius large?

(I know the guild_lands radius doesn't save since its calculated)


Bigsteve
 
Posts: 88
Joined: 07 Feb 2014, 03:53

Re: The reason why your claims are not expanding.

Post by Bigsteve » 26 Mar 2015, 20:40

Claim radius is durability of monument/100.
But from my expirience changing either value has no effect after the next claim maintenence cycle, as they are cached by the server.
I think the values have to be changed when the server is offline.

User avatar
Burne109
Zealous Believer
 
Posts: 159
Joined: 26 Nov 2014, 07:03
Location: Ohio, US

Re: The reason why your claims are not expanding.

Post by Burne109 » 26 Mar 2015, 20:49

ah I see. thanks.


Alakar
Beta Tester
 
Posts: 202
Joined: 23 Jan 2015, 07:39

Re: The reason why your claims are not expanding.

Post by Alakar » 26 Mar 2015, 20:55

Here is what I did on our server in the main.cs file on the server I put:
Code: Select all
exec("guildtempfix.cs"); // Temp fix for Guild Claim Maintenance


and in a new file in the same directory I made guildtempfix.cs and put this in it:
Code: Select all
cancel($GUILD_MAINTENANCE);

$GUILD_MAINTENANCE_TIMER = 9000000; // 2.5 hours

function ark_guildmaintenance()
{
   warn("Preforming Claims Maintenance Manually");
   
   claimsMaintenance();
   
   $GUILD_MAINTENANCE = schedule($GUILD_MAINTENANCE_TIMER, 0, "ark_guildmaintenance");
}

$GUILD_MAINTENANCE = schedule(100, 0, "ark_guildmaintenance");


This will force a claims maintenance on server boot and every 2.5 hours after that (the same as our day cycle is set to)

Return to General Discussion

cron