How do you install this? I already put the file in the Userfunctions folder as usual but does there need to be any text editing? Like adding "CleanBag(1000, 2, true, false)" to any other file?
botje wrote:after
-- Additional Lua code to execute after killing an enemy
and before
]]></onLeaveCombat>"
Thx, it works!
Is it also possible to keep some items which are below value of 100? Like simple first aid potion and Experience potion? Because i just lost plenty of those -.-.
Probably the ingamefunctions of 755 and 744 are not compatible. I know it's inconvenient but you will have to change it when changing rombot version. Once you have the new version working you shouldn't need to use both anymore.
Also I do not recommend removing error messages. They are there for a reason.
Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
rock5 wrote:Probably the ingamefunctions of 755 and 744 are not compatible. I know it's inconvenient but you will have to change it when changing rombot version. Once you have the new version working you shouldn't need to use both anymore.
Also I do not recommend removing error messages. They are there for a reason.
i think there is a problem with this function, it deleted advanced skill reset stone and experience potions from my bag. can it be modified so that it doesn't delete item shop stuff?
local item
for slot = 61, 240 do
item = inventory.BagSlot[slot]
item:update()
if item.Available and (not item.InUse) and item.ItemShopItem == true then
item:moveTo("itemshop")
end;
end;
Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.