11 lines
573 B
Lua
11 lines
573 B
Lua
-- Parametri configurabili da cliente per strategia: HEADCUT
|
|
|
|
local HEADCUTData = {
|
|
sStrategyId = 'HEADCUT',
|
|
Parameters = {
|
|
{ sName = 'bForceChainSaw', sValue = 'false', sDescriptionShort = 'Force to use chain saw', sDescriptionLong = 'Force to use chain saw', sType = 'b', sMessageId = '', sMinUserLevel = '1'},
|
|
{ sName = 'bFinishWithMill', sValue = 'true', sDescriptionShort = 'Finish with mill', sDescriptionLong = 'Use a mill to finish the surface if split with chain saw', sType = 'b', sMessageId = '', sMinUserLevel = '1'}
|
|
}
|
|
}
|
|
|
|
return HEADCUTData |