Page 1 of 1

SVN 110: flexible harvest customization, rnd pause after loo

Posted: Fri Jul 31, 2009 10:31 am
by d003232
SVN 110:
  • new: new options for flexible harvest scan customization
  • new: random pause after loot to look more human
  • new: new counters self.Sleeping_time and self.Fights
  • fix: different rest messages for time/full
  • fix: demo waypoints with sleeping at NPCs for taking quests
  • fix: check logout timer while sleeping

If you don't want a random pause after looting set the option:

Code: Select all

<option name="LOOT_PAUSE_AFTER" value="10" />
to '0'. Default is 10 (means a probability from 10% for a rest).


If you want to customize your harvest scan, you can use the following options in your profile:

Code: Select all

<option name="HARVEST_SCAN_WIDTH" value="10" />	
<option name="HARVEST_SCAN_HEIGHT" value="8" />	
<option name="HARVEST_SCAN_STEPSIZE" value="35" />	
<option name="HARVEST_SCAN_TOPDOWN" value="true" />	
<option name="HARVEST_SCAN_YREST" value="10" />
That options are not promoted in the default profile. They have standard settings and are more designed for the expert users.

If you want more informations about the possible options take a look into settings.lua

Re: SVN 110: flexible harvest customization, rnd pause after loo

Posted: Fri Jul 31, 2009 10:34 am
by xxsinz
Thank you for this, for awhile their I would change the code after each SVN update, then I just got tried of it, thank you!

Re: SVN 110: flexible harvest customization, rnd pause after loo

Posted: Sun Aug 02, 2009 6:46 pm
by copenhagen69
in the harvest scan ... is there a way to tighten the top-down scan? sometimes it seems the space between each scan line is a little too big and skips some mats every now and then ...

Re: SVN 110: flexible harvest customization, rnd pause after loo

Posted: Mon Aug 03, 2009 1:52 am
by d003232
copenhagen69 wrote:in the harvest scan ... is there a way to tighten the top-down scan? sometimes it seems the space between each scan line is a little too big and skips some mats every now and then ...
space between each scan line = step size:

Code: Select all

<option name="HARVEST_SCAN_STEPSIZE" value="22" />
if you don't want to reduce the scanfield, you have to increase the 'SCAN_WIDTH' and SCAN_HEIGHT at the same time.