Search the Community
Showing results for tags 'noob'.
-
I can't access the RS account creation page whilst using Express VPN, so I create the account using my phone / mobile data. Log into new account as normal, get towards the end of tutorial island when the account gets locked, as it is suspected stolen. Only way to unlock account is via email, but I don't want to connect the account with an email, as I'm looking to sell the accounts later. - Sorry if this has been spoken about before, new to the forum
- 4 replies
-
- vpn
- account locked
-
(and 1 more)
Tagged with:
-
My Scripting Journey [ A Little About Me ] Hello, I have been part of the botting community since 2010 or so but I have always been that never post, just register and use the bots person. I am currently in college for Computer Networking and in my second semester out of 6. I have finished Police Foundations in college and currently work part time with school. My days are pretty packed between school, work and my fiance so this journey might take me some time as I believe I am starting from scratch (been learning Javascript in school but I have been told its totally different then Java). I am 23 and hopefully looking forward to be able to find a successful career job once I finish this course (connected to my Police Foundation course). [ Goals & Achievements ] I basically want to start off by learning Java from scratch (Codeacademy, books, Java tutorials) and the end goal is be able to have my own full farm running on its own by my own scripts and by my own hands. I will start off small and try to make a couple simple and non complex scripts (woodcutting, firemaking) and go from there. I have no doubt there will be failures, disappointments and just being plain unlucky throughout this but I do have an end goal that I plan on reaching. If anyone has any other tutorials, lessons that would help me for Scripting that would be great, I do plan on doing research on a term I have seen on other topics called CLI? [ Updates ] I will be updating this WEEKLY so expect an update on the weekends sometime if you care at all If you stick around I hope you enjoy this journey and maybe even join me on it! Week 1
-
Here is the first script I've ever made. I happened to be in Port Phasmatys at the time and had gold ore in my bank lol. All feedback is very appreciated. import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.model.RS2Object; import org.osbot.rs07.api.ui.RS2Widget; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import java.awt.*; @ScriptManifest(name = "Gold Smelter", author = "Spazbau5", version = 0.1, info = "Smelts gold bars in Port Phasmatys", logo = "") public class main extends Script { private final Area FORGE_AREA = new Area(3689, 3481, 3682, 3477); private final Area BANK_AREA = new Area(3691, 3471, 3686, 3466); @Override public void onStart() { log(getName() + " v" + getVersion() + " has started!"); } @Override public void onExit() { log(getName() + " v" + getVersion() + " has stopped!"); } @Override public int onLoop() throws InterruptedException { switch (getState()) { case SMELT: log("Current state: SMELT"); RS2Object forge = getObjects().closest("Furnace"); if (forge != null) { if (!myPlayer().isAnimating()) { RS2Widget smeltButton = getWidgets().get(270, 19); if (smeltButton != null) { smeltButton.interact("Smelt"); getMouse().moveOutsideScreen(); } else { sleep(1000); if (!myPlayer().isAnimating()) { forge.interact("Smelt"); return random(4000, 5000); } } } } break; case WALK_TO_FORGE: log("Current state: WALK_TO_FORGE"); getWalking().webWalk(FORGE_AREA); break; case WALK_TO_BANK: log("Current state: WALK_TO_BANK"); getWalking().webWalk(BANK_AREA); break; case DEPOSIT: log("Current state: DEPOSIT"); if (bank.isOpen()) { bank.depositAll(); } else { RS2Object bankBooth = getObjects().closest("Bank booth"); if (bankBooth != null && bankBooth.interact("Bank")) { new ConditionalSleep(10000) { @Override public boolean condition() { return bank.isOpen(); } }.sleep(); } } break; case WITHDRAW: log("Current state: WITHDRAW"); if (bank.isOpen()) { bank.withdrawAll("Gold ore"); } else { RS2Object bankBooth = getObjects().closest("Bank booth"); if (bankBooth != null && bankBooth.interact("Bank")) { new ConditionalSleep(10000) { @Override public boolean condition() { return bank.isOpen(); } }.sleep(); } } break; case IDLE: log("Current state: IDLE"); } return random(700, 2300); } @Override public void onPaint(Graphics2D g) { } enum State { WALK_TO_BANK, DEPOSIT, WITHDRAW, WALK_TO_FORGE, SMELT, IDLE } private State getState() { if (!getInventory().contains("Gold ore")) { if (getInventory().isEmpty()) { log("Entering state: WITHDRAW"); return State.WITHDRAW; } else { log("Entering state: DEPOSIT"); return State.DEPOSIT; } } if (getInventory().contains("Gold ore")) { if (!FORGE_AREA.contains(myPlayer())) { log("Entering state: WALK_TO_FORGE"); return State.WALK_TO_FORGE; } else { log("Entering state: SMELT"); return State.SMELT; } } else if (getInventory().contains("Gold bar")) { if (!BANK_AREA.contains(myPlayer())) { log("Entering state: WALK_TO_BANK"); return State.WALK_TO_BANK; } else { log("Entering state: DEPOSIT"); return State.DEPOSIT; } } log("Entering state: IDLE"); return State.IDLE; } }
-
Hello everyone i'm new to the community and botting as well. Mainly i am just looking to bot my melees in nmz and thats just about it. Tips? Tricks? Please help. Ive done some research and have heard great reviews about you guys so im looking to jump in! -Also if anyone could link me to any helpful guides to getting started please let me know!!