Config.fastpick vs Config.FieldID.FastPick

Buck

Member
Need to read the green text within the config file...

-- Identify items while in the field and drop if it is item that is not want keep for your pickit

Code:
Config.FieldID.Enabled                     = true         -- Identify items while in the field and drop if it is item that is not want keep for your pickit
 

klptemp2

Member
Need to read the green text within the config file...

-- Identify items while in the field and drop if it is item that is not want keep for your pickit

Code:
Config.FieldID.Enabled                     = true         -- Identify items while in the field and drop if it is item that is not want keep for your pickit
Maybe it's because I have an older version with different comments.

Code:
Config.FastPick         = false    -- Check and pick items between attacks.
Config.FieldID.FastPick         = false -- use for own risk if you are died because this is run for inside so much monster no complain!

now these two options seem pretty similar right? comments aren't that helpful in differentiating the two.
 

ZhiPeiD2

Active member
Staff member
bot is have 2x pickit task

#1 FastPick() is get run for each 1x attack so this mean he is grab item such fast if you are have Config.FastPick = true
#2 Pickit() is get run for after task is finish like KillBoss() or after he is do small kill for when do KillLevel()

FastPick is run and he is see not have room for item he is just ignored and pick up later for when Pickit() is runned

Pickt() is run and he is see not have room bot is do FieldID() if you are do Config.FieldID.Enabled = true if not have this bot is go town sell item for maked inventory empty and go back for tp and do pickup item

FastPick is no do FieldID() because this mean bot is stand inside big monsters and do id item and drop for maked room so maybe can get die
some user is do complain for this and want FastPick for do FieldID() this why i add Config.FieldID.FastPick
 

klptemp2

Member
bot is have 2x pickit task

#1 FastPick() is get run for each 1x attack so this mean he is grab item such fast if you are have Config.FastPick = true
#2 Pickit() is get run for after task is finish like KillBoss() or after he is do small kill for when do KillLevel()

FastPick is run and he is see not have room for item he is just ignored and pick up later for when Pickit() is runned

Pickt() is run and he is see not have room bot is do FieldID() if you are do Config.FieldID.Enabled = true if not have this bot is go town sell item for maked inventory empty and go back for tp and do pickup item

FastPick is no do FieldID() because this mean bot is stand inside big monsters and do id item and drop for maked room so maybe can get die
some user is do complain for this and want FastPick for do FieldID() this why i add Config.FieldID.FastPick
Thank you
 
Top