XenoBot Forums - Powered by vBulletin

User Tag List

Page 1 of 6 123 ... LastLast
Results 1 to 10 of 60

Thread: [Update] XenoBot v2.5.3 [Scriptable HUD]

  1. #1
    XenoBot Developer DarkstaR's Avatar
    Join Date
    Dec 2010
    Posts
    6,104
    Mentioned
    1326 Post(s)
    Tagged
    16 Thread(s)

    [Update] XenoBot v2.5.3 [Scriptable HUD]

    This update re-implements Advertising Helper, adds new Scripter functionality, and fixes a few annoying bugs. Enjoy.

    Code:
    v2.5.3
    Fixed Advertising Helper.
    Fixed the Walker Stuck issue with Mapclicks. While it may still alert, it should also keep trying to reach the waypoint.
    Added Count/Volume display to BPInfo.
    Added the following Lua functionality to the Scripter:
    	Added the following functionality to the Map class:
    		Map.PickupItem(x, y, z, containerto, spotto[, count])
    			X, Y, Z: The ground location of the item.
    			Containerto: The container index to move the item to.
    			Spotto: the spot in the container to move the item to.
    			Count: An optional parameter which specifies how many on the stack to move. Defaults to all.
    			Returns: 1 if successful, 0 if failed.
    	Created the HUD class:
    		HUD.CreateTextDisplay(x, y, text, r, g, b)
    			X, Y: The screen location to place the text at.
    			Text: The text to display.
    			R, G, B: RBG Color for the text.
    			Returns: A HUD object representing a text display.
    		HUD.CreateItemDisplay(x, y, id, size, count)
    			X, Y: The screen location to place the text at.
    			ID: The item ID which will be shown.
    			Size: The size, in pixels, of the item (Between 20 and 64).
    			Count: The count state, for stackable items, to be drawn as.
    			Returns A HUD object representing an item display.
    		HUDObject:SetPosition(x, y)
    			X, Y: Screen location to move the HUD object to.
    			Functionality: Moves the HUD object to the specified location. Works for text and item displays.
    		HUDObject:SetText(text)
    			Text: The text to be shown by the HUD object.
    			Functionality: Updates the text being shown on a HUD object. Only works on text displays.
    		HUDObject:SetTextColor(r, g, b)
    			R, G, B: RBG Color for the text display.
    			Functionality: Updates the color being used on a HUD object. Only works on text displays.
    		HUDObject:SetItemID(id)
    			ID: The item ID which will be shown by the HUD object.
    			Functionality: Updates the ID being shown on a HUD object. Only works on item displays.
    		HUDObject:SetItemSize(size)
    			Size: The size at which the item will be drawn.
    			Functionality: Updates the size at which the item will be drawn by the HUD object. Only works on item displays.
    		HUDObject:SetItemCount(count)
    			Count: The count state, for stackable items, to be drawn as
    			Functionality: Updates the count state which will be drawn for the item by the HUD object. Only works on item displays.

    Example HUD script
    [highlight=lua]local HUDText = HUD.CreateTextDisplay(100, 100, "Testing", 255, 120, 120)
    local HUDItem = HUD.CreateItemDisplay(100, 100, 3031, 48, 100)

    local index = 1
    while (true) do
    wait(1000)

    HUDText:SetPosition(math.random(20, 100), math.random(20, 100))
    HUDText:SetText("Testing + " .. index .. " seconds")
    HUDText:SetTextColor(math.random(0, 255), math.random(0, 255), math.random(0, 255))

    HUDItem:SetItemID(math.random(3031, 3034))
    HUDItem:SetItemSize(math.random(32, 64))
    HUDItem:SetItemCount(math.random(1, 100))
    index = index + 1
    end[/highlight]



    For download and operation instructions, refer back to this thread:
    http://forums.xenobot.net/showthread.php?19

  2. #2
    Lifetime Subscriber Ungoliant's Avatar
    Join Date
    May 2012
    Posts
    409
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Amazing. ;-p

  3. #3
    Lifetime Subscriber
    Join Date
    Dec 2011
    Location
    Michigan
    Posts
    2,644
    Mentioned
    81 Post(s)
    Tagged
    0 Thread(s)
    amazing bro

  4. #4
    Banned
    Join Date
    Dec 2011
    Posts
    226
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    darkstar for president , down peña nietooooooooooooooooooooo

  5. #5
    thenick's Avatar
    Join Date
    Dec 2010
    Posts
    146
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    finally scriptable HUD, i love those things to check my hunt status, but I really wished you could add the (loot monsters with listed items) and also checked a bug that I had, from time to time my character gets kicked and it shows the message ( you are disconnected from the sever) this only happens with chars using xenobot, for example, i was botting with my druid 250 , while hunting manually on my friend's ED 400 at walls, the bloker decided to get a glass of water, i went to check my char and was disconnect even though no mass kick happened, neither i felt lag or something related.this Happened not only once, but at least 40x, I already died alot i tried many different things, like every hunt that i finish i close my client and open again, but it doesn't seem to work, it will eventually happen. is not like a normal death, because if my character died in normal circustances, it would not show ( You are disconnected from the server). its not only weird, but annoying, and I really noticed that on the double exp event since that time i died A LOT. i could be close to 300 right now but i lost so much money & exp that i really don't have idea how I still play with this character. and I say it again, is not mass kick , because it happens almost everyday and no one complains about mass kick neither my internet drops. most of the time I'm online with other character maybe using others bots maybe playing manually and only my char using xenobot gets kicked no matter what.

  6. #6
    Lifetime Subscriber
    Join Date
    Dec 2011
    Posts
    994
    Mentioned
    13 Post(s)
    Tagged
    0 Thread(s)
    great work. Ended up holding off on using the bot until every was fixed and working properly. Maybe instead of being lazy and waiting for a profit/loss HUD ill make one myself.

    im sure youll notice it eventually but you need to update the xenobot news on the side bar.
    Last edited by soul4soul; 07-16-2012 at 01:06 AM.

  7. #7

    Join Date
    Apr 2012
    Posts
    27
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks!!

  8. #8
    Lifetime Subscriber stefps's Avatar
    Join Date
    Dec 2011
    Posts
    68
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yeaah! hey and the arrow key moving issue with the holes and that things got fixed?

  9. #9
    Lifetime Subscriber Hendy's Avatar
    Join Date
    Jan 2012
    Location
    Northern Ireland
    Posts
    1,593
    Mentioned
    7 Post(s)
    Tagged
    1 Thread(s)
    Looks good, thanks!

  10. #10
    Lifetime Subscriber Krim's Avatar
    Join Date
    Feb 2011
    Posts
    121
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    THE BEST! THX DARK!

    KEEP GOOD WORK!
    Successful trades
    • Bought a 197 EK from user @tradsik
    • Bought this lifetime account from @Koksik22
    • Bought a 1-100 level service from user @dnalyks


    Failed trades
    • I was going to buy a 290 ED from the user @bleed who decided to scam me, but paypal gave my money back.
    http://forums.xenobot.net/showthread...the-user-Bleed

Posting Permissions

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