Infell
12-26-2015, 06:57 AM
How can i make the xenobot use fishing rod on water elemental?
shadowart
12-26-2015, 09:19 AM
Looter->Skinning->Passive. However, it hasn't been updated for instant skinning. I'm currently using this lua script to fish them instantly:
local fishableCorpses = {
[4037] = true,
[9582] = true,
}
local fishingRod = 3483
Module.New("Fisher", function(fisher)
if Self.ItemCount(fishingRod) > 0 then
for i = -7, 7 do
for j = -5, 5 do
local myPos = Self.Position()
local loc = {myPos.x + i, myPos.y + j, myPos.z}
if fishableCorpses[Map.GetTopUseItem(unpack(loc)).id] then
delayWalker(300)
if Self.UseItemWithGround(fishingRod, unpack(loc)) then
fisher:Delay(math.random(1000,1100))
end
return
end
end
end
end
end)
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.