Everything posted by DragonAlpha
-
Interact with object and then move on (PROBLEM)
I meant IHB He gave a good quick response to this
-
Interact with object and then move on (PROBLEM)
This. Although your getCadava method itself is bad practise, like Khaleesi said, that is Not the reason why your code is failing. If the config is 40, it will ALWAYS return State.getCadava. as soon as you type return getCadava it can not go down to any other return statement like return gotCadava Vilius already told you the solution. }else if(script.getConfigs().get(144) == 40){ return State.getCadava; }else if(script.getConfigs().get(144) == 40){ return State.gotCadava; Vilius solution, which you seemed to ignore: }else if(script.getConfigs().get(144) == 40 && inventory does not have berries yet!){ return State.getCadava; }else if(script.getConfigs().get(144) == 40 && inventory does have the berry){ return State.gotCadava;
-
[Snippet] Ore & Smithing Bar data
Good and clean code release, you planning on releasing a free/premium smithing script maybe too? Or just giving our a release related to smithing? Either way I'm liking this nice clean code style.
-
Jagex could easily do this
Sue your ass (they have these very strongly worded NDAs - Non Disclosure Agreements). Proper proper strict.
-
how to get rid of premium scripts?
THIS Exactly. So because of this contract between OSBot and the Scripter, the end customer is entitled to have it working, or there will be consequences to the scripter. I understand you want to "win" and prove me wrong, but there is a customer here that needs help.
-
how to get rid of premium scripts?
You are 100% entitled from the scripters end to have it working. (OSBot have to legally reserve the right to suspend it at anytime to protect themselves). But OSBot expect and even demand that an active Scripter with active scripts on the site be working, fixed within 7 days/a timely manner or there will be consequences. Here is a link showing that you are 100% entitled to have it working (from the scripters end) and that OSBot expect this: http://osbot.org/forum/forum-181/announcement-25-scriptscripter-rules/ Rules as a scripter: -You must provide timely updates (less than 7 days) to your script when core mechanisms are broken. Core mechanisms are anything that provides the bare essentials for your script to function. Examples include banking, walking, attacking, etc. -In the event supplementary features are broken (world hopping, special attacks, anti-ban, etc.), you must either fix these features within 30 days or lower the price of your script accordingly (and remove the said features). -Failure to abide by these rules will result in an immediate pay hold. While in the pay hold period, the scripter must fix all problems within 7 days or all scripts will be removed from the SDN, scripter will be removed of rank, and the scripter will be prevented from releasing any future scripts (free and premium). So, contact your scripter. If he refuses to fix it, or does not fix it within the 7 days (which you are 100% entitled to), then there will be consequences against the scripter.
-
discWine | Working as of 03/25/2016 | v1.0 | 1.9k wine/PH
This is a really good release, especially as one of your first. Really well done mate.
-
how to get rid of premium scripts?
You are 100% entitled to have them working though. Post in the scripts forum topic about what is not working, if they don't fix it, the OSBot staff can take action on the scripter (things like banning them, a POSSIBLE refund, etc). In terms of hiding them, try this link: https://osbot.org/mvc/sdn2/scripts/ See if you can remove them under, "My Collection".
-
TO EVERYONE ASKING WHY THEY CANT LOG IN
me too, muffins can yyou stop ignoring us plz and fix it
-
TO EVERYONE ASKING WHY THEY CANT LOG IN
why do my Khal Motherlode keep disconnecting, what going on muffinman? fix it pls
-
Botre AIO Magic Preview (Free Beta SoonTM)
Interesting script, I like the GUI of it and all the options. This thread is about an AIO-Magic script, is this script going to be Free or Premium? If it's going to be premium, will you be refunding everyone that bought all your previous premium scripts before you disappeared, because that would be unfair to make new premiums if you (Botre) have a track record of shutting down after receiving payments. (on-topic) Its a nice script though, and I just hope it will be Free.
- Buying main
-
[Snippet] Autocast API
Good code, but kinda pointless I just use Omni API. Bobrocket the guy that made OmniAPI is a genius, and that thing covers all worthwhile things.
-
Why do Kebabs have such high ban rate?
I buy the Kebabs for 1gp each and sell them for 30gp each. I have 6 bots all buying kebabs, but they get banned as quick as yew log cutters. I've had to add loads of extra human-like antiban to my kebab script just to get round this to make it half-decent and profitable so I have time to sell the kebabs. Are all moneymakers on f2p this bad, or do they protect the big earners like Kebabs? I seriously can't believe I'm farming Kebabs for money as well.... (The worst is Jug of Wines, those get banned much more quickly than kebab buying bots)
-
[Chart] Picking the appropriate Collection interface
no LinkedList? *EDIT* nvm, realized you said interface Even though List is an interface, you can have both sorted (LinkedList) and unsorted so this chart is kinda inaccurate.
-
Scripts Not Starting
I'll have a look with teamviewer later tonight/tomorrow.
-
skiller
How much do level3's that have 70+ in wc/fish/mining go for?
- Favorite Skills
-
Confused about how to use correct methods for proxies or vps's?
Buy a proxy, you will receive details. http://www.proxyfish.com/?utm_source=osbot&utm_medium=banner&utm_content=topforum&utm_campaign=osbotforum Using your mouse and left finger in conjunction, move the mouse over the textbox titled "Proxy". Using your keyboard and fingers, type in the proxy address. This can be done by pressing the matching key on your keyboard to each number in the proxy address. After entering the details, slowly move your move cursor using your arm and hand in conjunction over the [OK] button, then left click this button using your finger and left mouse button in conjunction.
- le grind
-
Mirror Mode dialogues/widgets
I have also been having this problem. For me dialogues.inDialogue() usually works, but not always works in mirror mode. So instead I use alternative method (widgets.isVisible(231) || widgets.isVisible(219)) Also, I have problems using this in mirror, again related to widgets - this code block NEVER works and gives me exceptions (works fine in regular mode): // BUGGY with mirror mode... RS2Widget[] optionWidgets = s.widgets.getWidgets(219, 0); if(optionWidgets != null && optionWidgets.length == 5) { if(optionWidgets[1].getMessage().equals("I think I'll give it a miss.") && optionWidgets[2].getMessage().equals("Yes please.")) { if(s.keyboard.typeKey('2')) { if(waitUntilOptionGone()) KebabBuyer.kebabsBought++; } } }
-
Osbot Web Walker/walking for any script/banking.
Yep my bot just got banned, I noticed during last nights botting session it did exactly this. It kept clicking randomly and walking all around in the bank. But it happened rarely like 1 in 50 times. But still, it's highly detectable. (This was in mirror mode). Does this still happen in stealth mode? It may be better in the stealth mode. I don't use web walker at all yet it happens to me. I think he means the bank.open() method / objects.closest("Bank booth").interact("Bank") - I have tried both methods in mirror mode and it will do what he said. It happens rarely like 1 in 50 times. I'm not sure if it happens in regular mode though.
-
Need some help with my script please
//in the getState method if(inventory.contains("Picture")) { return State.GotPicture; } These breadcrumbs should be enough, you need to try to research and learn on your own, it's different to school and being spoonfed. In the State scripts there are 2 parts: 1) setting the State 2) reacting to the State 1) Setting state: if you have the picture in your inventory, then the state is NOT State.GetPicture is it. Because you already have it! So since you have the picture, set the state as State.GotPicture 2) Reacting to the state: now the state is State.GotPicture you can do the next part of the quest. Check your OSBot private messages, I might just teamviewer connect to your PC and help you get this done and explain things to you step by step.
-
WATCHES
What the fuck? It costs that much money, and you can't even check your emails or send a text from it? I prefer to get the Apple smart watch. What's the use in a watch that can't make calls, send texts, surf the net, etc
-
[HELP] Looking for someone who will help me out ! [Will PAY]
I was speaking to you on chat asking if you needed help. Just come back to the chat, and start a private message with me, and I'll help you. Payment not needed.