Everything posted by Abuse
-
Did Jagex confirm they are able to detect botting clients?
The difference here is that OSBuddy cooperates with Jagex, they probably can know if it's OSBuddy or not Someone pointed out that if they were able to detect botting clients then they would ban everyone. The thing here is, is that if they were to do that, the bot developers would be able to find ways around their methods of detection rather quickly by trial and error (Opinion) I think they are always able to tell if it's a rogue client, and wait for their bot-detection algorithms to kick in to confirm if the person is botting or not, followed by a few day wait to disguise their methods of detection
-
Did Jagex confirm they are able to detect botting clients?
I've seen many of your dismiss the idea of Jagex being able to tell you are using a botting client, however they recently posted this article: http://services.runescape.com/m=news/third-party-clients?oldschool=1 Which pretty much confirms they are able to detect our clients Thoughts?
-
Potential With Botting
*Hey, I want to get a masters degree in CS, but I don't want to learn, can somebody do it for me?* See, this kind of questions don't attract many replies.
-
k
Well, I don't settle with 'good enough' so no, not yet There is little difference between Xeon server processors or desktop processors for our niche. It's just different ram technology and usually no built-in graphics cards. I go by the passmark scores that you can find online for specific processors, from my findings the benchmarks scale linearly with the amount of bots that I am able to run
-
k
Define comfortably. I own four servers, three of them have Intel Xeon E3-1245 v3's, and one has an i7-4770k. All are outfitted with 16gb of ram. These machines run 20 bots a basic fishing script 'comfortably' with the 'Low CPU mode' checked at 100% CPU and 70%+ ram utilization. If you're willing to spend 1k + for the machine then you can go with 6 core hyperthreading variants of intel CPUs to reach your requirement (by a thin margin) - Abuse
-
Buying fisher with atleast 40 fishing
I got ~30 of that kind of accounts PM Sent
-
Display name taken, but you want it? Check here!
Could be perhaps add a postcount/used to be a paid member factor to the one year inactivity? I've been inactive for well over one year before I came back, it would be sad to see my name gone - Abuse
-
Buying 40m- $45 PP
50$ and you've got a deal
-
Banned account from 2009
It only has a few offences
-
Banned account from 2009
Is there any chance I could tweet Jagex about an old account of mine (Created in 2006) and having the macroing ban squashed? If so, what excuse should I use? - Abuse
-
OSBot stability with 20+ bots
All right, thanks for your help all! It seems that the problem was related to my RDP connection, each time i would disconnect/reconnect to the RDP one or more bots would freeze. If anyone has similar problems, force your remote server to display to a physical display output Right click on the desktop, click 'Screen Resolution' Click 'Detect' button on the next screen (when click on Detect, a new second monitor was shown on the right of the main display) Click 'Another display not detected' and under the multiple displays option select 'Try to connect anyway on: VGA' Click 'Apply' This seems to do the trick.
-
OSBot stability with 20+ bots
Hi, I've been wondering for a while if it is possible to improve the performance/stability of multiple OSBot instances, more particularly stealth injection. I am currently running 4 dedicated servers with each having around 20 clients sitting at 70-90% CPU load, however some clients tend to randomly freeze (Black screen) after a few hours of runtime, this seems to be dependent on the amount of running bots, 10 usually don't cause any issues. I've tried both Linux and Windows with the same results, however linux struggled with more than 10 clients In terms of resource usage, my dedi boxes run at around 60% memory usage, 512mb dedicated to each instance so that doesn't seem to be the issue - Abuse
-
RQ Smither | Smith your way up to the top!
java.lang.NoSuchMethodError: org.osbot.rs07.api.Walking.webWalk(Lorg/osbot/rs07/api/map/Position;) webWalk(position) was deprecated and now removed. You might want to update to webWalk (Area) or similar Best wishes
-
Getting Entity camera degrees in relation to the player?
FrostBug, it indeed wasn't too bad Position chest = getObjects().closest(dispenserID).getPosition(); Position player = myPlayer().getPosition(); double deltaX = player.getX() - chest.getX(); double deltaY = player.getY() - chest.getY(); double angleInDegrees = Math.atan2(deltaY, deltaX) * 180 / Math.PI; angleInDegrees = (angleInDegrees + 360) % 360; Just found out that the position always seems to be offset by 90 degrees. A similar solution might be worth including in the position API? Regards
-
Getting Entity camera degrees in relation to the player?
Hi, I'd like to make use of the camera.movePitch(deg) and camera.moveYaw(deg) threaded functions for asynchronous camera movement. I am however currently stuck with getting the correct degree value in relationship to the player, is there any built-in API way to do this or do I need to do the calculations myself using getPosition()? Currently I am using this, but I'd prefer to use the above mentioned methods for stability reasons private void rotateCamera(Position pos){ if(!turningCam){ Runnable r = new Runnable() { //Position p = pos; public void run() { turningCam = true; camera.getCamera().toPosition(pos); turningCam = false; } }; new Thread(r).start(); } } Regards
-
Problem with widgets [bank.isOpen()]
@@Khaleesi Does it also freeze your script until you pause/restart it? If so, I made a workaround by pausing/resuming the script in a separate thread every x minutes getBot().getScriptExecutor().pause(); and getBot().getScriptExecutor().resume();
-
Problem with widgets [bank.isOpen()]
This indeed does solve the problem Mind me asking how bank and getBank() differ from each other? Does it have something to do with syncing of the script thread and the OSBot thread? edit: The same issue still persists with getBank()
-
Problem with widgets [bank.isOpen()]
Once in a while a widget API call will fail resulting in: [ERROR][Bot #1][02/11 10:40:58 PM]: Failed to wrap : class client.YR java.lang.RuntimeException: Could not initiate wrapper : RS2Widget at org.osbot.core.api.Wrapper.wrap(bg:159) at org.osbot.rs07.api.Widgets.getWidgets(gg:120) at org.osbot.rs07.api.Widgets.isVisible(gg:3) at org.osbot.rs07.api.Bank.isOpen(fn:471) at blastFurnace$10.condition(blastFurnace.java:471) at org.osbot.rs07.utility.ConditionalSleep.sleep(ed:70) at blastFurnace.openBank(blastFurnace.java:473) at blastFurnace.depositAll(blastFurnace.java:501) at blastFurnace.takeBars(blastFurnace.java:388) at blastFurnace.onLoop(blastFurnace.java:210) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(ff:33) at java.lang.Thread.run(Unknown Source) Sometimes bank.isOpen() will return true when the banking interface is not visible, and has not been accessed in a few seconds I cannot accurately reproduce the bug, however it occurs more often when my system is under higher load I'm using Java JDK 8 (64bit only), latest client. This only occurs in Mirror mode The function in question is private boolean openBank() throws InterruptedException{ Entity chest = objects.closest(chestID); if(bank.isOpen()){ return true; } else { widgets.closeOpenInterface(); if(widgets.get(28, 107) != null && widgets.get(28, 107).isVisible()){ clickMiniMapPosition(chest.getPosition()); new ConditionalSleep(random(1000,3000)) { @Override public boolean condition() throws InterruptedException { return myPlayer().isMoving(); } }.sleep(); } if(chest != null){ if(myPlayer().getPosition().distance(chest.getPosition()) < 4 && myPlayer().isMoving()){ sleep(random(100,250)); return false; } if(chest.interact("Use")){ new ConditionalSleep(random(1000,3000)) { @Override public boolean condition() throws InterruptedException { return bank.isOpen(); } }.sleep(); log("Chest is open"); } } } return false; } The error occurs in the ConditionalSleep at "return bank.isOpen();"
-
Website design (Opinions please)
Alek, everything starts with a .PSD, thats why i'm asking for opinions before I start cutting it out into css/html 1 - Thanks for your feedback, i'll see what I can do about it 2- Same as above 3. Footer will be added once I start cutting it out, some basic 40px high box will be sufficient Thanks for your feedback!
-
Website design (Opinions please)
I've just finished designing a UI for a rather high traffic site, I'd like to hear some opinions on it before I start cutting it out into a live website (Please c:) http://i4.minus.com/iblQScmsUrniaZ.jpg Regards
-
I'm going to start developing scripts .. with a twist
Its possible, just depends on how I will tackle the push applications, I can either: Code it myself, I have a great amount experience in Android app development, far share of experience in iOS and 0 in Windows Phone Use an already made push service like PushOver Or use services like Instagram, Twitter or similar, to send screenshots and info that way Regards
-
I'm going to start developing scripts .. with a twist
Oh, I forgot to mention this >The features would be at no extra cost<
-
I'm going to start developing scripts .. with a twist
Hey, I finally decided to release some public scripts, currently in mind I have a runecrafter, and a barrows script I was wondering how important these features would be for you: Android / iOS notifications about script stopped, hourly reports and other info like stats that will be discussed later A webpage that is accessible from any device that displays a live feed of your bot (screenshots refreshed every 1-10 seconds) Ability to manage your bot from the webpage (break, stop, start, do certain actions for example "Bank now", and script specific actions) >The features would be at no extra cost< Regards, Abuse
-
BOT OFFLINE:Bank tabs broke banking, fix coming soon!
Thanks laz! 108 user(s) are reading this topic The amount of leechers is too damn high.
-
Runescape dead, and way too strict
O, wow Did not notice that one.