XenoBot Forums - Powered by vBulletin

User Tag List

Page 5 of 7 FirstFirst ... 34567 LastLast
Results 41 to 50 of 61

Thread: [Update] XenoBot v2.4.2

  1. #41
    Lifetime Subscriber Sharri's Avatar
    Join Date
    Dec 2011
    Posts
    77
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by DarkstaR View Post
    Um, that's the EXACT question I answered. Exact. Thanks anyway.
    Would be nice if that would get replaced with buyitemsupto instead or if there would be an alternative.

  2. #42
    XenoBot Scripts Developer Syntax's Avatar
    Join Date
    Feb 2011
    Posts
    1,658
    Mentioned
    431 Post(s)
    Tagged
    4 Thread(s)
    Not tested but cba to login to Tibia. Feel free to leech it.
    Code:
    local function buyAlotOfItemsBecauseItsSuchAGodDamnBigDeal(item, count)
        count = tonumber(count) or 1
        repeat
            local amnt = math.min(count, 100)
            if(Self.ShopBuyItem(item, amnt) == 0)then
                return printf("ERROR: failed to buy item: %s", tostring(item))
            end
            wait(200,500)
            count = (count - amnt)
        until count <= 0
    end
    Last edited by Syntax; 05-06-2012 at 08:07 AM.

  3. #43

    Join Date
    Jan 2012
    Posts
    40
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by DarkstaR View Post
    Um, that's the EXACT question I answered. Exact. Thanks anyway.
    lool ok, nice job on update btw

  4. #44
    Kelevra712's Avatar
    Join Date
    Mar 2012
    Location
    Los Angeles, California
    Posts
    55
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks DarkstaR

  5. #45
    Lifetime Subscriber Hendy's Avatar
    Join Date
    Jan 2012
    Location
    Northern Ireland
    Posts
    1,593
    Mentioned
    7 Post(s)
    Tagged
    1 Thread(s)
    Thanks.

  6. #46
    Lifetime Subscriber
    Join Date
    Dec 2011
    Posts
    994
    Mentioned
    13 Post(s)
    Tagged
    0 Thread(s)
    nice update. hopefully Ill have time to test it out sometime this week. Now I can finish my scripts with those npc trade options.

  7. #47
    Senior Member rikardo's Avatar
    Join Date
    Jan 2012
    Location
    São Paulo, Brazil
    Posts
    474
    Mentioned
    9 Post(s)
    Tagged
    1 Thread(s)
    any1 got problem with depositer in deport ?
    all my script use the same script to deposit

    PHP Code:
    elseif (labelName == 'deport'then
    Self
    .DepositItems(9657, {28691})
    Self.DepositItems(9657, {73982})
    wait(2000
    and it deposit all in slot 00 in deport.
    what script i should use to deposit right from now ?

    Regards, Rikardo;
    Take Care.

    My Script Thread: http://forums.xenobot.net/showthread...-script-thread
    Facebook: fb.com/ricardo.pereirasilveira
    Playing in: Guardia (if ur playing in the same world, msg me with ur characterer)
    My Project (RP): http://forums.xenobot.net/showthread...do-life-thread

  8. #48

    Join Date
    Dec 2011
    Location
    The Netherlands
    Posts
    49
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Write
    depot
    instead of
    deport

    Should work.
    Kind Regards,

    Mister Neo

  9. #49
    Administrator
    Join Date
    Dec 2010
    Posts
    2,565
    Mentioned
    228 Post(s)
    Tagged
    1 Thread(s)
    Quote Originally Posted by Mister Neo View Post
    Write
    depot
    instead of
    deport

    Should work.
    Not necessarily. That's the name of his label, as long as it matches in his waypoints it should be fine. The function was written by @Syntax, maybe he can explain why it's not working.

  10. #50

    Join Date
    May 2012
    Posts
    79
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could some1 help me with this?

    It sells 1 halberd and then it runs to next wpt >.<

    Self.SayToNpc({"Hi", "Trade"}, 65)
    sleep(math.random(700, 1400))
    Self.ShopSellItem("halberd", 100)
    sleep(math.random(700, 1400))
    Self.ShopSellItem("plate armor", 100)
    sleep(math.random(700, 1400))

Posting Permissions

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