Leaderboard
Popular Content
Showing content with the highest reputation on 07/11/15 in all areas
-
Normally we would release this as a development build for some time, but there are many bugs fixed and there are a few security patches we feel are important to the integrity of botters, scripters, and our service. In addition to the increased security, many of the bot features which degraded over the last week have been restored including world hopping, a completely re-written chatbox, grand exchange, and much more. 2.3.78 Added check to advertisement for input Updated AutoLogin event Removed unused optimization checks Updated Modeled getHeight() Patched and updated Chatbox API Removed Hitsplats Removed Map distance(Entity) Removed Map distance(GroundItem) Removed Map walk(...) 2.3.79 AccountLoader usernames/passwords protected by encryption Added checks to InteractionEvent for Equipment/Inventory Destinations Patched issue with EntityAPI stemming from Map Small visual update to HoverDebug/MouseDebug Updated getSuitablePoint for closer grouping 2.3.80 Patched Worlds API -Added functionality to population, isFull() Patched Chatbox isVisible() 2.3.81 Hotfix to GrandExchange API Miscellaneous fixes Known issues: -Interacting with certain widget destinations -Resizable mode (short-term fix will be a random event) Have a great weekend -The OSBot Staff13 points
-
Hello my name is Hajar and Yes that is me on the profile picture. Since i join osbot i have learned how to make bots, but i have also improved my Java skills. I have learn GFX, CINEMA 4D and how API works. I have new friends on Skype from osbot and i feel happy. Osbot community feels like my second family. There should be more threads on new things like Chrome extensions, Matlab, gVim. I love to learn new things4 points
-
loll So the problem you have here is that you're defining start and current exps in the same place so obv they will both be the same so when you subtract 1 from the other you will get 0. Define startStrExp as a global variable and give it a value in onstart. Keep the current value where it is. Then it will work haha -apa there are 2 types of variable, global and local. Local is where you define a variable INSIDE a method eg public void hello() { int i = 10; log("value of i: " + i); } A global variable is something you define globally i.e it can be reached from any method inside your class eg private int n = 1337; public int getn() { return n; } apa for more info google 'local vs global variables java' or something like taht4 points
-
Correct. It will activate if it detects you are playing in resizable mode and then move you over to fixed screen mode.4 points
-
You've got that awesome "I'm going to rape your imouto" look in your eye, it's sexy3 points
-
2 points
-
Someone off the staff will look into it. Dont rush it though I know it's annoying to not have vip when you should. Be patient nevertheless2 points
-
2 points
-
2 points
-
This is what I was insinuating, And this answers my question. Resolved! UPDATE: I do not have a banking issue. 27 food now works flawlessly! 6/5 STARS! GREAT SCRIPT! FLAWLESS2 points
-
2 points
-
Why would an account being "hand done" make a difference? there's no real way of proving that (unless you recorded it all, which would end up being a massive file size).2 points
-
What icon will this be used for? (What type of script is this icon being made for?) -I'd personally make the fill of the shapes a bit transparent -Different background picture relating to the script -Make the shapes a bit smaller to allow text to be added for the name/author But nonetheless, this is a nice design.2 points
-
1 point
-
Hey Frost..trials coming to an end and i've got to say well done! Even though my only item the last 24 hours was a Karil's skirt . I'm going to stick with Khal's runecrafter till i make a bit more money and then i will buy this! Well done my friend!1 point
-
1 point
-
Hahahahah this is a joke. He even sold the exact same amount of gold that I "scammed" him for (17m) to greengo. LOOOL can we please just get this done with.1 point
-
bcs u set begin exp every single second to the current value ... only call it onStart1 point
-
With all due respect, you should really look up the basics of Java. Your problem exists because you are defining "beginningStrengthExp" in the function scope. The hierarchy for variable scopes goes class > function. If you want your variables to be used in many functions, you put them in the class scope. public class Main extends Script { private int beginningStrengthExp; public void onStart() { beginningStrengthExp = <code>; } public void onPaint(Graphics2d g) { int x = beginningStrengthExp; } } In this example, we can access beginningStrengthExp because it was defined in the class. We cannot, however, access beginningStrengthExp with an instance of Main because it is set to private. To solve this, we add a getter value: public int getBeginningStrengthExp() { return beginningStrengthExp; } So this can be used when we need to grab it from an instance of Main: public class SomeArbitraryClass { public SomeArbitraryClass(Main m) { int beginningStrengthExp = m.getBeginningStrengthExp(); } }1 point
-
1 point
-
I'm pretty sure you can still take pictures of the conversation even after blocking or deleting him.1 point
-
1 point
-
I've scheduled an update for later today (Version 1.3) with a bunch of mirror specific bugfixes. Until that update is live, it isn't really possible to get a long proggy with Mirror mode1 point
-
1 point
-
1 point
-
Thanks to @10k for this amazing proggie! I've applied for the script to be uploaded publically on the SDN. Hopefully it will be out soon ! Apaec1 point
-
1 point
-
Thanks for the update! Keep up the good work ^_^1 point
-
1 point
-
thank god, i love your scripts i think ive bought 3 or 4 of them already i was just worried it got messed up on my side somehow.1 point
-
1 point
-
1 point
-
I ran this 3+ hours today with high alch just to see if it was messing up and it was perfect the whole time so idk1 point
-
You could fix this simply: if (getInventory().isItemSelected()) getMouse().click(false); //continue loop If an item is selected, it will left click. This will remove an item from being selected1 point
-
just a little tip no need to make two if statements like that. if (tree != null) if (!myPlayer().isAnimating()) // how to decide which mode to be return State.CHOPPING_LOGS; instead do if (tree != null && !myPlayer().isAnimating()) return State.CHOPPING_LOGS;1 point
-
1 point
-
1 point
-
They're probably flagging tons of accs right now while Weath is out on vacation. Everyone is going to come here crying on Monday when a mass amount of accounts get banned at once1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
You need to disable resizable mode on your osrs account. Log into the game normally, go to your settings and set your screen mode to fixed.1 point