XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 5 of 5

Thread: Picking up vials

  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.

  2. #2

    Join Date
    Apr 2013
    Posts
    79
    Mentioned
    10 Post(s)
    Tagged
    0 Thread(s)
    Great idea, kind of time consuming though.

  3. #3

    Join Date
    May 2013
    Posts
    221
    Mentioned
    18 Post(s)
    Tagged
    0 Thread(s)
    Malada (GS/Quara island) doesn't reset @antkas1
    @Btownmills Lol 700k in 4 hours is time consuming? So what are you doing to make that much in that time? Do share por favor
    SUCCESSFUL PURCHASES: @Ghazkyt @Pidek098 @PunktG

    I recommend SolidScripts for all your needs

  4. #4

    Join Date
    Apr 2013
    Posts
    79
    Mentioned
    10 Post(s)
    Tagged
    0 Thread(s)
    @Afromanz, read that as days not hours, my bad!

  5. #5
    antkas1's Avatar
    Join Date
    Jan 2014
    Posts
    8
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    I was running a 150 ek while doing this You just have to wait a week or two again until the caves fill up with vials.

    Thanks for the tip @Afromanz I'll check it out tonight

Posting Permissions

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