You will have to drop me your xxcraft-output.log file then, as it should be doing the right thing:Vicci said:Its a progress step i belive
Code:
elseif ( ${Refining.Stage.Index} == 4 )
{
; If there are 2+ steps in the 4th stage, progress Progress until only 1 step left
if ( (${Refining.Stage.StepCount} > 1) && (${stepsLeft} > 1) )
{
call DebugOut "VG: 4th Stage try progress!"
call TryProgressAction
if ( ${Return} )
return TRUE
}
; Ok, so no Progress actions left, now let's try the 'finisher'!
; Last stage of the Recipe, find the highest Cost action
call TryLowCostAction FALSE
if ( ${Return} )
{
return TRUE
}
else
{
; Ok, not enough AP for that, try the lowest Cost action
call TryLowCostAction TRUE
if ( ${Return} )
return TRUE
}