XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 7 of 7

Thread: IM BUYING SOFT BOOTS REFILLER

  1. #1

    Join Date
    Apr 2013
    Posts
    98
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)

    Cool IM BUYING SOFT BOOTS REFILLER

    I like to level up magic level, but i need and script to make my character refill soft boots. Any idea? Share your scripts please

  2. #2

    Join Date
    Aug 2012
    Posts
    126
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Make waypoints in venore with food on you, make a checker for worn softboots, if worn go to label SoftRefill, if not worn go to label keepgoing (this is just a poor example, im sure theres alot of better ways to do this )

  3. #3
    Senior Member XtrmJosh's Avatar
    Join Date
    Apr 2012
    Location
    Cambridge, England
    Posts
    1,324
    Mentioned
    39 Post(s)
    Tagged
    0 Thread(s)
    You're posting this in the tutorials section because.......?
    You cannot fail, so I'm lowering the standard.

  4. #4

    Join Date
    Apr 2013
    Posts
    98
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    u.u becuz i dont know where it can be posted. Please josh help mw with the reply of Hypno. How i can do that?

  5. #5
    Senior Member XtrmJosh's Avatar
    Join Date
    Apr 2012
    Location
    Cambridge, England
    Posts
    1,324
    Mentioned
    39 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by lopid600 View Post
    u.u becuz i dont know where it can be posted. Please josh help mw with the reply of Hypno. How i can do that?
    Make some basic AFK scripts following my video tutorial, it's in the same section you posted this thread in. Once you understand how the code works, you will have no problem refilling soft boots.
    You cannot fail, so I'm lowering the standard.

  6. #6
    Senior Member
    Join Date
    May 2013
    Posts
    659
    Mentioned
    27 Post(s)
    Tagged
    1 Thread(s)
    @lopid600




    lua code:
    Self.WithdrawMoney(Self.ItemCount(6530)*10000)
    ----
    Walker.ConditionalGoto(Self.ItemCount(6530) > 0, "RefillSofts", "DontRefillSofts")



    And a full code:


    lua code:
    	
    registerEventListener(WALKER_SELECTLABEL, "onWalkerSelectLabel")
    function onWalkerSelectLabel(labelName)
    if labelName == 'Bank' then
    Walker.Stop()
    wait(500, 1200)
    Self.WithdrawMoney(Self.ItemCount(6530)*10000)
    wait(200, 600)
    Walker.Start()
    elseif labelName == 'CheckWornSofts' then
    Walker.ConditionalGoto(Self.ItemCount(6530) > 0, "RefillSofts", "DontRefillSofts")
    end
    end
    Last edited by Adky; 06-28-2013 at 03:49 AM.

  7. #7

    Join Date
    Apr 2013
    Posts
    98
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Thanks men, always a lot of helpful people in forums

Posting Permissions

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