Originally Posted by
Jflem
auto(800, 1000)
local itemsToUnrust = {'chain armor', 'scale armor', 'brass armor', 'plate armor', 'plate legs', 'brass legs'}
local rustyArmors = {8895, 8896, 8898, 8899}
if ((maround(7) == 0) and ((lootbodies>0) == 0))
then
for i,j in ipairs(rustyArmors)
do
if itemcount(j) > 0 and itemcount("flask of rust remover") > 0
then
useitemon_ib("flask of rust remover",j,LootBP)
wait(2000)
end
end
for _, v in ipairs(itemsToUnrust)
do
if itemcount(v) > 0
then
moveitems(v, LootBP, 'ground', 1)
wait(1000, 2000)
break
end
end
end
if itemcount(6558, LootBP) > 0 and maround(4) == 0 then
useitem(6558, LootBP)
wait(200, 250)
end
if maround(7) == 0 and itemcount("strong mana potion", LootBP) > 0 then
moveitems("strong mana potion", LootBP, AmmoBP, 100)
wait(200, 250)
end
Im having alot of problems with almost all scripts i try to convert. 08:01:30 ERROR: using items:>> :5:30: Unexpected Symbol `$` in source.
07:59:49 error in Persistent script using items:
["if ((maround(7) == 0) and ((lootbodies>..."]:using items:5 attempt to compare number with nil
it says that everytime i delete the $ symbol. Its happening on about every script but 1 ive tried so far.
Thanks