jieguan bot help

furry123

Member
where do i find my liscene key? and i have no idea how to set this up? is there a pre done file for sor or zon? or a better guide?
 

Khawee

New member
Try using this profile (edit character name, inventory safe spots etc.) there were some profile updates required recently that may not be in the default configs.

Make sure you save it as a .lua file not .txt and put it in your Classes folder in your bot install location.
 

Attachments

  • SorceressFULL.txt
    22.7 KB · Views: 8

Khawee

New member
ok so only the sorceresslite config loads for me... now says

YOU ARE DO config.clearpath.enabled= true
BUT YOU ARE NO PUT AREA FOR config.clearpath.areas
Read the message.

Your profile (sorceressLITE) has set config.clearpath.enabled = true but you have not set any paths to clear. Go into the profile and it config.clearpath.enabled = false
 

Khawee

New member
That's not what the error is saying....

Change this
Code:
-- get area id -> https://github.com/kolton/d2bot-with-kolbot/blob/master/d2bs/kolbot/sdk/areas.txt
Config.Scripts.ClearAnyArea.Enabled = true
Config.Scripts.ClearAnyArea.AreaList = {}

To:
Code:
-- get area id -> https://github.com/kolton/d2bot-with-kolbot/blob/master/d2bs/kolbot/sdk/areas.txt
Config.Scripts.ClearAnyArea.Enabled = false
Config.Scripts.ClearAnyArea.AreaList = {}
 

furry123

Member
i know i tried both ways. same error, and why doesnt the real configs work and only lite?

i have no idea what to do next.. do i need to add something after = of second config arealist line?
 

Khawee

New member
Sorry, I also misread the error.

The line you want is:
Code:
Config.ClearPath.Enabled = true
Config.ClearPath.Range = 10
Config.ClearPath.SpecType = 0x7
Config.ClearPath.Areas = {
}


Code:
Config.ClearPath.Enabled = false
Config.ClearPath.Range = 10
Config.ClearPath.SpecType = 0x7
Config.ClearPath.Areas = {
}

Not sure if ClearAnyArea is part of LITE or not.

OR

Code:
Config.ClearPath.Enabled = true
Config.ClearPath.Range = 10
Config.ClearPath.SpecType = 0x7
Config.ClearPath.Areas = {
    107, -- River of Flame
    108 -- Chaos Sanctuary
}
 
Top