Everything posted by Bobrocket
-
Account Checker Script
"Hi guys I would like to purchase a malicious tool that would effectively hack RuneScape accounts for me on this wonderful site where everyone has RuneScape accounts and most of you play legitimate despite botting" - Jaydz
- Wam
-
About the Dark side
Older_than_the_internet.bmp
- Dispute against Maldesto
-
guy with 5.2b exp banned for punching someone at runefest
My homie Success got sent straight to lumby
-
Omni Scripts - Request your trials here
Authed. Enjoy!
- Tinychat
-
I am a duck
???????????????????????? ???????????????????????????????????????????????????????????????????????
-
Omni Scripts - Request your trials here
Authed. Enjoy!
-
My week
I have the Moto G 2nd gen, dual sim, unlocked, works amazingly and I got mine for £80 through a friend.
-
try not to cringe mattyb edition
Don't forget this bad boy
-
Omni Scripts - Request your trials here
Authed. Enjoy!
-
Omni Scripts - Request your trials here
Authed. Enjoy!
-
try not to cringe mattyb edition
So does every scripter here. What's your point?
-
try not to cringe mattyb edition
how fix
-
try not to cringe mattyb edition
easy medium rare medium hard NO MERCY
-
800
- FUNGI Picker
He says with two pictures of Czar's scripts in his signature- Need help animating stopping while smelting
You could have something like this: import org.osbot.rs07.script.MethodProvider; public class ConditionalTimer { private int time, step, elapsed; private TimerCondition condition; public ConditionalTimer(int t, TimerCondition cond, int s) { time = t; condition = cond; step = s; } public boolean run() throws InterruptedException { elapsed = 0; while (time <= elapsed) { if (condition.condition()) return true; MethodProvider.sleep(step); } return false; } public int getElapsed() { return elapsed; } } interface TimerCondition { public boolean condition(); } Example: if (new ConditionalTimer(3000, () -> (myPlayer().isAnimating()), 50).run()) { //we're animating } else { //we're not animating (we haven't been animating for 3000 ms) }- Hide paint?
I think onPaint (in this context) would be called 50 times per second (syncing with the RS client). The reason we add our listeners in onStart is because otherwise we're creating a new listener 50 times per second (every 20ms), as well as assigning it to the bot to listen. When we click then, something along this would occur: //when clicked for (MouseListener ml : listeners) ml.onClick(mouseArgs); So that means your mouse listeners will also be executing many times in tandem.- Omni Scripts - Request your trials here
Authed. Enjoy!- need good scripter write a private script (can pay $$$$or gp)
- Omni Scripts - Request your trials here
Authed. Enjoy!- Dynamic Signature Tutorial - WITH PICTURES
Why don't you understand that if someone wants to get all of your data, they will. All I need to do is just turn on wireshark, look at my connections, and grab the data. You don't sanitise any data in the update page, you use deprecated MySQL in signature.php, you rely solely on mysql_real_escape_string (which will not escape certain characters like \ and \x00). At least you mask errors, that's a start.- Dynamic Signature Tutorial - WITH PICTURES
$setResult = mysqli_query ( $conn, "SELECT * FROM Data WHERE Username='$nametemp'" ); // Selects all fields from the Data table, based on the username supplied What happens when $nametemp is ' OR '1'='1'? Look into parametised queries or sanitise your input properly :/ - FUNGI Picker