antkas1
02-27-2014, 01:13 AM
So I completely emtied Carniphila and Sea serpent cave on my server tonight bringing me 700k in about 3-4hours
(because you cant push through your bp at the teleport at sea serpent to the shop, so had to run manually for 9k cash/run)
So I have script that picks up my vials to desired bp (on the ground) and i just run around the cave and when im done I push it to the shopkeeper and sell it.
These are 2 spawns that does NOT reset tiles if theres not an UPDATE from cipsoft.
Just a tip for u guys if you wanna make easy cash, I'll give you the lua code since I think this is a great thing for people that want some extra cash!
So my question is, do you guys know any other place that does not reset tiles UNLESS there is and UPDATE from CIP side?
Happy cash making :)
credit does not go to me for this script
local flaskIds = { 283, 284, 285, } --Change these
local flaskCont = 'Fur Backpack'
Module.New('vial finder', function()
for x = -1, 1 do
for y = -1, 1 do
if table.find(flaskIds, Map.GetTopTargetObject(Self.Position().x + x, Self.Position().y + y, Self.Position().z).id) then
Cavebot.Stop()
Map.PickupItem(Self.Position().x + x, Self.Position().y + y, Self.Position().z, Container.New(flaskCont):Index(), math.random(0, 19))
wait(100, 200)
Cavebot.Start()
end
end
end
end)
yours,
antkas1
(because you cant push through your bp at the teleport at sea serpent to the shop, so had to run manually for 9k cash/run)
So I have script that picks up my vials to desired bp (on the ground) and i just run around the cave and when im done I push it to the shopkeeper and sell it.
These are 2 spawns that does NOT reset tiles if theres not an UPDATE from cipsoft.
Just a tip for u guys if you wanna make easy cash, I'll give you the lua code since I think this is a great thing for people that want some extra cash!
So my question is, do you guys know any other place that does not reset tiles UNLESS there is and UPDATE from CIP side?
Happy cash making :)
credit does not go to me for this script
local flaskIds = { 283, 284, 285, } --Change these
local flaskCont = 'Fur Backpack'
Module.New('vial finder', function()
for x = -1, 1 do
for y = -1, 1 do
if table.find(flaskIds, Map.GetTopTargetObject(Self.Position().x + x, Self.Position().y + y, Self.Position().z).id) then
Cavebot.Stop()
Map.PickupItem(Self.Position().x + x, Self.Position().y + y, Self.Position().z, Container.New(flaskCont):Index(), math.random(0, 19))
wait(100, 200)
Cavebot.Start()
end
end
end
end)
yours,
antkas1