Jump to content

DragonAlpha

Members
  • Posts

    482
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by DragonAlpha

  1. 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.
  2. 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.
  3. This is a really good release, especially as one of your first. Really well done mate.
  4. 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".
  5. me too, muffins can yyou stop ignoring us plz and fix it
  6. why do my Khal Motherlode keep disconnecting, what going on muffinman? fix it pls
  7. 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.
  8. 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.
  9. 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)
  10. 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.
  11. I'll have a look with teamviewer later tonight/tomorrow.
  12. DragonAlpha

    skiller

    How much do level3's that have 70+ in wc/fish/mining go for?
  13. 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.
  14. 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++; } } }
  15. 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.
  16. //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.
  17. 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
  18. 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.
  19. I meant if there isn't one, because it looks like the owner has left, and it is unlikely anyone still uses it - dead.
  20. Why don't you start one?
  21. TEMP FIX - this should work (if it doesn't let me know, I'll make a more advanced one with A* heuristics): public NPC megaGetClosestNpc(String npcName) { int bestDistance = Integer.MAX_VALUE; NPC best = null; for(NPC npc : npcs.getAll()) { if(npc != null && npc.getName().equals(npcName)) { int thisDistance = map.realDistance(npc); if(thisDistance < bestDistance) { best = npc; bestDistance = thisDistance; } } } return best; }
  22. Yes I noticed this too. It's because of: It picks the closest, those tiles all around you (even the diagonals) are considered 1 tile away. Then it picks a random one OR it picks the first one on the checking order. Common distance calculations should be: direct tiles: 10 g cost, diaganol tiles: 14 g cost. It doesn't look like osbot is using this standard in .closest. It just sees all the tiles around you as just 1 away.
×
×
  • Create New...