PDA

View Full Version : Help with Rust Removers please



lonatic
11-18-2015, 11:51 AM
Hi guys do anyone have a script I can use along side my scripts to use rust removers on all 3 types of rusty armors please.

It don't matter if it uses the rust removers whilst the armors are still in the corpse or when looted to my bp tho would rather it be within the corpse so I wont need no additional script running to drop the brass/scale etc

If anyone can help with this id be more than greatful.

Thanks

l4z
01-17-2016, 12:25 AM
bump.

artek007
02-12-2016, 10:10 AM
i found something like that but it doesnt work, also i want to make it derust items in creature not in the backpack


init start
local ignoreCommonRustyItems = false -- true/false
local rustyItems
if not ignoreCommonRustyItems then
rustyItems = {8894, 8895, 8896, 8897, 8898, 8899}
else
rustyItems = {8895, 8896, 8898, 8899}
end
local dropTrash = true
local itemsToDrop = {'chain armor', 'scale armor', 'brass armor', 'plate armor', 'brass legs', 'plate legs'}
init end

auto(100)
if maround(0) == 0 then
for i,j in ipairs(rustyItems) do
if itemcount(j) > 0 then
useitemon(9016,j,'backpack')
wait(400,600)
end
end
if dropTrash then
for i,j in ipairs(itemsToDrop) do
if itemcount(j) then
moveitems(j,'ground')
wait(400,600)
end
end
end
end