XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 5 of 5

Thread: Picking up vials

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    antkas1's Avatar
    Join Date
    Jan 2014
    Posts
    8
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Picking up vials

    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

    Code:
    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
    Last edited by antkas1; 02-27-2014 at 01:17 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •