XenoBot Forums - Powered by vBulletin

User Tag List

Page 3 of 3 FirstFirst 123
Results 21 to 28 of 28

Thread: Change or Edit your scripts! Upon Request

  1. #21

    Join Date
    Aug 2015
    Posts
    12
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hallo.
    I have a question, can you change this 3 scripts for EK ?
    I tried alone but healing sux i tried also in xbst. but this make some like refresh and comeback healing from mage.

    http://forums.xenobot.net/showthread...l=1#post471566
    oramond west

    http://forums.xenobot.net/showthread...l=1#post457459
    hero fortress

    http://forums.xenobot.net/showthread...l=1#post457458
    deepee quara - blocking version

  2. #22

    Join Date
    Mar 2016
    Posts
    31
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Weathercock View Post
    It'd be great if you could fix this 'Venore Daily Tasks' script:

    ------------------------------------------------------------------------------------------------------
    --------------------------------------- Settings -----------------------------------------------------
    ------------------------------------------------------------------------------------------------------
    logoutWhenDone = false
    alertWhenDone = true
    digForSlug = true
    capToDeposit = 0 --4 + 18 + 19 -- Will go to the bank if cap is less than this, default is what you need to carry the quest items
    transferGold = no
    transferTo = "Kharsek"

    ------------------------------------------------------------------------------------------------------
    --------------------------------------- Constants ----------------------------------------------------
    ------------------------------------------------------------------------------------------------------
    toolID = 17513
    shovelID = 3457
    ------------------------------------------------------------------------------------------------------
    --------------------------------------- Labels -------------------------------------------------------
    ------------------------------------------------------------------------------------------------------
    Targeting.Start()
    Looter.Start()

    registerEventListener(WALKER_SELECTLABEL, "handleLabel")

    function handleLabel(labelName)
    if labelName == "NormanStart" then
    Walker.Stop()
    Self.SayToNpc({"hi", "job", "maintenance", "yes", "pathfinder", "yes", "sabotage", "yes"}, 90)
    Walker.Start()

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "RepairNorth" then
    delayWalker(500)
    useItemOnGround(toolID, NORTH)

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "RepairEast" then
    delayWalker(500)
    useItemOnGround(toolID, EAST)

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "RepairSouth" then
    delayWalker(500)
    useItemOnGround(toolID, SOUTH)

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "RepairWest" then
    delayWalker(500)
    useItemOnGround(toolID, WEST)

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "NormanEnd" then
    Walker.Stop()
    -- Drop Can of Oil since you'll be given a new one next time, even if you're still carrying your old one
    local bp = Container.New(backpack)
    local pos = Self.Position()
    for spot = bp:ItemCount() - 1, 0, -1 do
    local item = bp:GetItemData(spot)
    if item.id == toolId then
    delayWalker(300)
    bp:MoveItemToGround(spot, pos.x, pos.y, pos.z)
    end
    end
    wait(2000, 3000)
    Self.SayToNpc({"hi", "maintenance", "pathfinder", "sabotage", "bonus", "yes"}, 90)
    Walker.ConditionalGoto(Self.Cap() < minCap, "GoDeposit", "End")
    Walker.Start()

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "Bank" then
    delayWalker(500)
    useItemOnGround(toolID, WEST)

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "Frank" or labelName == "Scott"then
    Walker.Stop()
    Self.SayToNpc({"hi", "yes"}, 90)
    Walker.Start()

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "Bank" then
    Walker.Stop()
    local money = Self.Money()
    Self.SayToNpc({"hi", "deposit all", "yes", "transfer", money, transferTo, "yes"}, 90)
    Walker.Start()

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "DigNorth" then
    if Self.ItemCount(shovelID) > 0 then
    delayWalker(300)
    useItemOnGround(shovelID, NORTH)
    end

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "CheckDig" then
    if not digForSlug then
    gotoLabel("EndDig")
    end
    ------------------------------------------------------------------------------------------------------

    elseif labelName == "End" then
    Walker.Stop()
    gotoLabel("Start")
    if logoutWhenDone then
    Self.Logout()
    end
    if alertWhenDone then
    alert()
    end

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "DoorSouth" then
    Walker.Stop()
    local pos = Self.Position()
    Self.Step(SOUTH)
    wait(400, 600)
    while (Self.Position().y ~= pos.y+1) do
    Self.UseItemFromGround(pos.x, pos.y+1, pos.z)
    wait(400, 600)
    Self.Step(SOUTH)
    end
    Walker.Start()

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "DoorNorth" then
    Walker.Stop()
    local pos = Self.Position()
    Self.Step(NORTH)
    wait(400, 600)
    while (Self.Position().y ~= pos.y-1) do
    Self.UseItemFromGround(pos.x, pos.y-1, pos.z)
    wait(400, 600)
    Self.Step(NORTH)
    wait(400, 600)
    end
    Walker.Start()

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "DoorWest" then
    Walker.Stop()
    local pos = Self.Position()
    Self.Step(WEST)
    wait(400, 600)
    while (Self.Position().x ~= pos.x-1) do
    Self.UseItemFromGround(pos.x-1, pos.y, pos.z)
    wait(400, 600)
    Self.Step(WEST)
    wait(400, 600)
    end
    Walker.Start()

    ------------------------------------------------------------------------------------------------------

    elseif labelName == "DoorEast" then
    Walker.Stop()
    local pos = Self.Position()
    Self.Step(EAST)
    wait(400, 600)
    while (Self.Position().x ~= pos.x+1) do
    Self.UseItemFromGround(pos.x+1, pos.y, pos.z)
    wait(400, 600)
    Self.Step(EAST)
    wait(400, 600)
    end
    Walker.Start()

    ------------------------------------------------------------------------------------------------------
    end
    end

    function useItemOnGround(item, DIR)
    local pos = Self.Position()
    if(DIR == NORTH) then
    Self.UseItemWithGround(item, pos.x, pos.y-1, pos.z)
    elseif(DIR == SOUTH) then
    Self.UseItemWithGround(item, pos.x, pos.y+1, pos.z)
    elseif(DIR == EAST) then
    Self.UseItemWithGround(item, pos.x+1, pos.y, pos.z)
    elseif(DIR == WEST) then
    Self.UseItemWithGround(item, pos.x-1, pos.y, pos.z)
    end
    end


    I've looked over it several times and can't find out why it doesn't talk to NPCs and is really buggy every other run. Sometimes it won't use the oil can, other times it won't go underground.
    Quote Originally Posted by alexislugo10 View Post
    bro can help me with this?
    zao muuggy plains for paladin
    http://forums.xenobot.net/showthread...0-AFK-AND-FREE
    Quote Originally Posted by kevanek View Post
    I'm looking for a script that assumed Malee weapon when you run out spear in his arms. Could somebody a script litter?
    i will be getting to work on these soon, i had to blast through double exp and get pally lvl 300. I have things to do monday, and finishing some inboxed scripts and afk's then ill start on these by tuesday thx!

  3. #23

    Join Date
    Mar 2016
    Posts
    31
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by mauasex View Post
    Hallo.
    I have a question, can you change this 3 scripts for EK ?
    I tried alone but healing sux i tried also in xbst. but this make some like refresh and comeback healing from mage.

    http://forums.xenobot.net/showthread...l=1#post471566
    oramond west

    http://forums.xenobot.net/showthread...l=1#post457459
    hero fortress

    http://forums.xenobot.net/showthread...l=1#post457458
    deepee quara - blocking version
    im not understanding what it is exactly you want, you just want me to change them over to simple EK right? or are you saying you tryed to change it but it still has Mage 'support'

  4. #24

    Join Date
    Aug 2015
    Posts
    12
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by shax121 View Post
    im not understanding what it is exactly you want, you just want me to change them over to simple EK right? or are you saying you tryed to change it but it still has Mage 'support'
    Yes there still from mage.
    If u have time and can you simply change this for EK it would be cool.

  5. #25

    Join Date
    Apr 2016
    Posts
    2
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    -- +-+- -+-++-+  +-+-+-+- -+-+--+
    -- ¦-¦¦ ¦ ¦ ¦ ¦  ¦¦ ¦+-++-¦+¦ +-+
    -- - -+-+ - +-+  +  -+-+- -+-+-+- 
    -- ++ - -  +-++-+- --  - -+-+--++-+                              
    -- ¦-++-+  ¦¦ ¦ ¦¦ ¦¦  ¦¦¦+¦ +-++-+                              
    -- +-+ -   +  +-++-+--++-++-+-+--  
     
    -- If Randomize is true will select random tiles to fish.
    -- If Randomize is false will procedurally select tiles to fish.
     
    Randomize = false
     
    Module.New("Auto Fisher", function(Module)
        if Self.ItemCount(3492) > 0 and Self.ItemCount(3483) > 0 and Self.Cap() > 10 then  
            p = Self.Position()
            if Randomize then
                x =  math.random(p.x -7, p.x + 7)
                y =  math.random(p.y -5, p.y + 5)
                while table.isStrIn({4597,4598,4599,4600,4601,4602}, Map.GetTopUseItem(x, y, p.z).id) and Map.IsTileOnScreen(x, y, p.z) do
                    Self.UseItemWithGround(3483, x, y, p.z)
                    wait(Self.Ping() + 1000)
                end
            else
                for i = -7, 7 do
                    for j = -5, 5 do
                        x =  p.x + i
                        y =  p.y + j
                        while table.isStrIn({4597,4598,4599,4600,4601,4602}, Map.GetTopUseItem(x, y, p.z).id) and Map.IsTileOnScreen(x, y, p.z) do
                            Self.UseItemWithGround(3483, x, y, p.z)
                            wait(Self.Ping() + 1000)
                        end
                    end
                end
            end
        end
        Module:Delay(1000)
    end)
    I'm pretty sure I got it from here, but I don't remember from whom. So I'm sorry for not giving credit, the script works fine only for a little detail: it's still fishing without worms and without cap. The conditions are supposed to be there, but they're just not working. Could you help me here? Thanks in advance.

  6. #26

    Join Date
    Sep 2015
    Posts
    75
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    How its going on Djinn seller?

  7. #27

    Join Date
    Mar 2016
    Posts
    31
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Hey everyone, sorry for LONG delays and everything, currently working out some rough ends in rl, juggling, school, work, all the fun stuff, I am having trouble with the loot seller but it isnt a bust, going to finish up a few things then try out the npc's i have

  8. #28
    Mageq's Avatar
    Join Date
    Aug 2012
    Posts
    396
    Mentioned
    19 Post(s)
    Tagged
    0 Thread(s)
    If you could change the location of the hunt from East to West, that would be fabulous <3

    http://forums.xenobot.net/showthread...d=1#post469214

    easy version please

Posting Permissions

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