Everything posted by Alek
-
OSBot 2.3.6 - Main Interface and Patches
I'll make a patch early tomorrow. Thanks for letting me know.
-
Chopper won't bank
We're not psychic. Either post your code or ask the script developer what the issue is. In the script browser, press the "Info" button.
-
Cant start a script?
Seems like the gui is cutting off at the bottom where it would normally have a start button. I thought I fixed it on the most recent update but I guess not. I'll try patching this on the next update.
-
OSBot 2.3.6 - Main Interface and Patches
I tested withdrawing from tabs and I'm not getting this error at all. Can you tell me which of your scripts are getting these errors?
-
How to download off of the SDN
Where are you looking? How are you guys even still accessing that page? Look in the script browser. Press the play button in the client and click on the "Browse" tab.
-
OSBot 2.3.6 - Main Interface and Patches
Thanks strbunix for reporting
-
OSBot 2.3.6 - Main Interface and Patches
After the main bot gui broke shortly after I added the screenshot button to it (spoiler alert), I spent the last day re-writing many components of it. Additionally, I've added a bank check when attempting to cache it when another tab other than the first is open (thanks to @Novak). Changelog: Alek -Updated bank caching -Added bank "Castle Wars" -Removed VIP features from Debugging -Added Screenshot button to main bot interface -Re-wrote large parts of the main bot interface MGI -Added check to graphics drawing This was a pretty large update to the main interface. If you have any problems please let me know! Happy Botting -The OSBot Staff
-
fat mod mark battles against mod mat k in christmas vid
This made me feel like a nerd.
-
A Hat Tip To Alek
I really appreciate this thread, but I also have to acknowledge @Zach for his guidance and @Maxi for getting me to where I am today. Thanks to everyone
-
Evidence that the HULK is real.
Thought it was an intro to an osrs fletching script. Waited 5 minutes, no runescape.
-
So I got a 3d printer...
Why have you not made a gun yet?
-
OSBot 2.3.5 - Quick patches
Well that's disheartening. I haven't updated the script in a while so hopefully I get some time this weekend.
-
OSBot 2.3.5 - Quick patches
Is that script on the SDN? If so what is the name of it? I'm almost certain that's caused by a while loop which shouldn't be there.
-
@Alek
I wish I had more time to play csgo; I'll definitely get some clips after my exams are over to make you sit down
-
OSBot 2.3.5 - Quick patches
Recently there was a large influx of banking reports and subsequently this update was released. Interaction events decided to randomly stop working and had nothing to do with the recent cache update. Hopefully I'll get some time around the holidays to clean up InteractionEvent a lot. Changelog: -Updated Bank withdraw/deposit -Added cache system to Bank close -Patched Bank close -Added 2 new comparators (NPCComparator, ObjectComparator) If you are continuing to have issues with banking, please let me know! V/R -The OSBot Staff
-
OSBot 2.3.4 - Bank API and Comparators
I'll go over some of the banking api tonight and try to make a release if I find the issue.
-
PREMIUM SCRIPTS PAID FOR BUT NOT ACCESSIBLE
http://osbot.org/forum/topic/63062-osbot-1-scripts-discontinued/
-
Runescape - what year graphics did you like, Osrs/EoC/Pre-eoc(around 2009-2012)
If anyone says OSRS graphics, then they obviously haven't played for as long as I have on them. RS HD release was the best thing to ever happen and it took them so long to do it.
-
OSBot 2.3.4 - Bank API and Comparators
The Bank API is now the second class to undergo the interface value cache transformation talked about in previous releases. Please note that the withdraw and rearrange modes are deprecated and WILL NOT be updated when they break. Please ensure your scripts are using the new dynamic methods. This is a pretty large update to banking. If you have any issues please let me know immediately! Bank API Changes: -Deprecated: Bank.WithdrawAsMode Bank.RearrangeMode Bank.setRearrangeMode Bank.setWithdrawAsMode Bank.INTERFACE_ID Bank.INTERFACE_CHILD_ID Bank.SCROLL_CONTAINER -Added: Bank.MAIN_INTERFACE_ID_CACHE Bank.CHILD_INTERFACE_ID_CACHE Bank.REARRANGE_SWAP_CACHE Bank.REARRANGE_INSERT_CACHE Bank.WITHDRAW_NOTE_CACHE Bank.WITHDRAW_ITEM_CACHE Bank.BankMode Bank.getInsertMode() Bank.getWithdrawMode() Bank.enableMode(BankMode) -Retrieves values dynamically: -Bank main interface id -Bank child id -Bank swap modes -Bank deposit modes -Bank deposit inventory/equipment In other news: Preset collection comparators have been added; the first one being InterfaceComparator. Comparators are useful for sorting varying objects which in our case can be NPCs, Game objects, Interfaces, and other components we typically find while scripting. Specifically in this case, the Bank API retrieves interface ids for the various buttons dependent on their location within the window (specifically their getX() value). For instance: List<RS2InterfaceChild> children = new ArrayList<>(); Collections.sort(children, InterfaceComparator.yComparator); In this case, all the RS2InterfaceChilds are arranged within the list from least to greatest in getY() value. In the future I plan to apply similar comparators to NPCs with sorting by values such as height, polygon count, position, etc. Also for the new Bank API usage: bank.enableMode(Bank.BankMode.REARRANGE_INSERT) API Docs have been updated, clear your browser file cache if they haven't updated. Sincerely, -The OSBot Staff
-
29FB | Official Script Developer | Veteran | $100 Donor | Ex-Super Mod | Ex-Global Mod | Ex-Trial Mod | Ex-CBA | Ex-VIP | Senior Sheriff Dog| Hi Guys!
lots of achievements, much wow
-
Weekly CS:GO Clip #2
So today I managed to play another competitive match and since you guys wanted me to start posting some more clips, here you go: P.S. Yes we had a bot on our team from the start, yes we won anyways.
-
[ERROR][Bot #1][12/18 01:31:44 PM]: Random Executor Thread Death!
Strange, I get no errors. Do you mind posting the full error here?
-
anitban system concept
My favorite scripts are the ones where it walks to a botting location, but stops 4-5 times to check your stats in a random skill.
-
Hitpoints help
skills.getDynamic(Skill.HITPOINTS);
-
OSBot 2.3.3 - Cached interfaces
Thanks! As of right now I cannot unless I cache the completion status of each quest. If I go that route, I would most likely have a method along the lines of quest.update() which would re-cache everything. Maybe I can find a different path so I don't have to check the quest tab altogether.