Jump to content

iLeggy

Members
  • Posts

    16
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by iLeggy

  1. I never asked for a spoonfeed and yeah, I made mistakes. I was into this over a year ago and it's like I'm re-learning it. - Thought this was the help section but it's just the insult section.
  2. I am using Eclipse. I think I got it. package main; import java.awt.Graphics2D; import java.awt.event.KeyEvent; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "", info = "", name = "", version = 0, logo = "") public class main extends Script { private void typeStringInstant(String output) { for (int i = 0; i < output.length(); i++) { char c = output.charAt(i); int code = KeyEvent.getExtendedKeyCodeForChar(c); getBot().getKeyEventHandler().generateBotKeyEvent(400, System.currentTimeMillis(), 0, code, c); } getBot().getKeyEventHandler().generateBotKeyEvent(401, System.currentTimeMillis(), 0, 10, '\u0000'); getBot().getKeyEventHandler().generateBotKeyEvent(402, System.currentTimeMillis(), 0, 10, '\u0000'); } @Override public void onStart() { log(""); } @Override public int onLoop() throws InterruptedException { typeStringInstant("Spam goes here..."); return random(200, 300); } @Override public void onExit() { log(""); } @Override public void onPaint(Graphics2D g) { } }
  3. I've written scripts before. Muling scripts, woodcutting scripts, simple scripts. This is my first time using complicated snippets. My friend learned ALL of Java by coding Minecraft plugins starting with simple ones moving upward. I figure I can do the same. Besides the semi-colon, is there any other issues?
  4. I wanted to code an instant typer with webwalking to GE but I wanted to solve the typing speed first. When I try to save it and run it I get an error. Is there anything visibly wrong with the code? I'm still new to to this and used someones help. package main; import java.awt.Graphics2D; import java.awt.event.KeyEvent; import org.osbot.rs07.script.Script; import org.osbotbot.rs07.script.ScriptManifest @ScriptManifest(author = "", info = "", name = "", version = "0", logo = "") public class main extends Script { private void typeStringInstant(String output) { for (int i = 0; i < output.length(); i++) { char c = output.charAt(i); int code = KeyEvent.getExtendedKeyCodeForChar(c); getBot().getKeyEventHandler().generateBotKeyEvent(400, System.currentTimeMillis(), 0, code, c); } getBot().getKeyEventHandler().generateBotKeyEvent(401, System.currentTimeMillis(), 0, 10, '\u0000'); getBot().getKeyEventHandler().generateBotKeyEvent(402, System.currentTimeMillis(), 0, 10, '\u0000'); } @Override public void onStart(); log(""); } @Override public int onLoop(); throws InterruptedException { typingStringInstant(""); return random(200,300); } @Override public void onExit(); { log(""); } @Override public void onPaint(Graphics2D g) { } My Discord is: Pod#8714 if anyone would help me one on one that would be spectacular. I've spent hours trying to figure it out myself.
  5. Do you happen to know a source for proxies that isn't insanely overpriced? I met someone who said they get 100 proxies for 25/mo and I can't find any for less than 3/month per proxy.
  6. I'd like to compile a list of Player Moderators and I feel like starting a thread where everyone can contribute would be useful. To avoid mutes/bans for certain scripts. 1. Party PEte
  7. I want a bot like you always see in F2P or W2 that spams an ad, and if it gets muted it self replaces. I have some issues though. This is the first bot I want to write well, I've already written a crappy woodcutter, and a crappy looter. The thing is I want to learn the whole API. I feel like this project will teach me a lot. Then I can move onto a more complex one, like a gambling bot. I haven't written the code yet, (well I have but it's on my old PC) but I want to write a GE spammer, that spams, messages players with PM on then delete them. 1. I can webwalk to GE from Lumbridge from new accounts. 2. I can make the bot talk, but at a VERY slow non-human speed. I'd like it to be always above the bot's head. 3. I can make the bot hop worlds, F2P, and P2P. I have no clue how to make the typing speed faster, self-check for mutes and replace with another bot. I have no clue how to make the bot add people PM them, then remove them to add new ones. I've looked through the API a lot, but I can't figure some of these things out.
  8. My friend botted 6 99's following proper anti-ban procedure with a paid script.
  9. Has anyone done it? It would be interesting to try and all the series on YT I watch end but they get really far with free scripts too.
  10. I've used tons of bots, free, privately made, premium. Following all the anti-ban rules I've never had an acc last longer than a week but people brag about multiple accounts at 99. I can't figure the shit out or I'd start a farm.
  11. It was done with jailbroken iPhones and games like Flappy Birds and Candy Crush. I'm sure it can be done with RS and be undetectable to their current systems because cursor behavior is way different on mobile.
  12. Is there any plans to make bots for mobile? I feel as though they'd be less detectable, but I could be wrong.
  13. Thank you. I'd pay someone like 20 bucks to write this for me but I'd rather learn to write scripts on my own for lower ban rate. I'm trying to advertise my new gambling Discord, which I paid too much for and it's hard to get people in it.
  14. It's only a nuisance in two worlds. It's not like every single world has them, so if you don't like seeing them simply stay off W1/2. What would I do to make this adjustment? I don't see anything in the API about speed.
  15. I'm new to scripting, but I've got a list of things I want the bot to do. 1. Complete the Tutorial Island. (Incomplete) 2. Walk to the Grand Exchange. (Complete) 3. Spam an advertisement. (Complete, but it types it letter by letter. I'd like it instant.) 4. Check for mutes, and replace itself if it becomes muted. (No clue where to begin.) 5. Send private messages to nearby players. (No clue where to begin.) Is there snippets or a bot that already does this? The most complex thing I've done was written an Iron mining farm with muling. So I'm still a bit off from this.
×
×
  • Create New...