Random position

RANDOM POSITIONING OF THE ITEMS TO FARM

In the general job configuration, under bit-jobs/config.lua activate the following option:

["randomActionLocations"] = true

and in the job configuration itself in bit-jobs/jobs/yourjob.lua make sure you have several different locations:

    ActionPoints = {
        [1] = vector3(244.4, 6448.75, 31.53),
        [2] = vector3(240.4, 6459.88, 31.34),
        [3] = vector3(228.09, 6467.59, 31.39),
        [4] = vector3(251.19, 6477.8, 30.88),
        [5] = vector3(275.86, 6479.45, 30.34),
        [6] = vector3(285.36, 6459.96, 31.15),
        [7] = vector3(269.33, 6467.71, 30.86),
        [8] = vector3(255.12, 6463.76, 31.27),
        [9] = vector3(261.3, 6450.77, 31.54)
    }

Last updated