Everything posted by Chris
-
[Open-Source] Bank evaluator
You need to add an account to the bot and load it before u start the script
-
inventory dropall very slow
change the reaction speed. Top left where it says mirror mode shows u what keys to hit
-
Excellent Agility
Updated: UI You can now set your own eat at percentage, 50% being the default.
-
Excellent Agility
Sorry for a late reply. Been really busy with other things. I will modify the GUI and existing code to accommodate personalized healing percentage. It does not at the moment. If I could get a hold of a account with the requirements I could add it quickly. Thank you for the feedback . Please let me know of any bugs and I will apply fixes ASAP
-
how to get items from array
learn java before attempting to script please
-
Where can I purchase Perfect Figthter?
if it is not in the store it is not available atm.
- LF Powerleveler
-
LF Powerleveler
I have (x5) 66+ magic 54+HP accounts
-
Sekiro: Shadows Die Twice
dw i found it alrdy babe
- Sekiro: Shadows Die Twice
-
Woot 100 feedback
Ill make the python script for it
-
Woot 100 feedback
i can reset to 100 if u want i see a type 1010 ?
-
[Beginner] Progressive woodcutter script, what can I improve? :)
a lot better
-
Maybe want to be a scripter
You'd be surprised at the status of some premium scripts. Nothing but grandfathered in Scripter 3's ? Study basic Java and how to read JavaDocs then learn the API with trial and error, reviewing open source code, and viewing script tutorials that arent dated in 2008
-
Macro question
you can just move the camera
-
Bounty Hunter Skip
you are missing a script manifest above the classname do @ScriptManifest and import
-
[Beginner] Progressive woodcutter script, what can I improve? :)
can be rewritten to Make sure conditions are checked before proceeding. (e.g, Making sure boolean methods returned true before doing something else.) Conditional sleeps (Read Documentation) Better your logic flow (e.g, Write a getter function to get the best axe based on level, replace at bank; Change your logic if needToBank -> do this, else ....) Use the already made API functions in Bank (e.g, getBank().open, ...) 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; // OLD TUTORIAL CODE @ScriptManifest(version = 1.0, author = "", info = "", logo = "", name = "Testing2222") public class Main extends Script{ @Override public int onLoop() throws InterruptedException { /* Config & Widget Basics */ /* Basic Config checking. getConfigs().get(int id) returns a value set from the parameter id In our case 173 = run game setting. if we toggled run on or off. returns 0 value if the setting is off and we are on walking mode. returns 1 value if the setting is on and we are on running mode. */ switch (getConfigs().get(173)){ case 0: log("It's off!"); break; case 1: log("It's on!"); break; } /* For your widget check the color type. RWG: RED, WHITE, GREEN WHatever is visible will display its widget ids CLIENT DEBUGGER MENU R -= PARENT/ROOT ID -= CHILD ID --= GRANDCHILD/SUBCHILD ID */ /* Part 1 finding widget by static ids */ RS2Widget tutorial = getWidgets().get(261, 4); if (tutorial != null && tutorial.isVisible()){ log("It's visible"); } /* Part 2 finding widget by text */ RS2Widget tutorial = getWidgets().getWidgetContainingText(446, "Xeric's Heart"); if (tutorial != null && tutorial.isVisible()){ log("It's visible"); } /* Part 3 Crafting mould gold ring interaction */ RS2Widget tutorial = getWidgets().singleFilter(446, w -> w != null && w.isVisible() && w.getItemId() == 1635 && w.getInteractActions().length > 0); if (tutorial != null && tutorial.isVisible()){ log("It's visible"); if (tutorial.interact("Make-All")){ log("We clicked it!"); //Sleep for 30 seconds and check condition every 5 seconds or if the condition is true, break the sleep. new ConditionalSleep(30000, 5000) { @Override public boolean condition() throws InterruptedException { return getDialogues().isPendingContinuation() || !getInventory().contains("Gold bar"); } }.sleep(); } } else log("We skipped widget interaction"); return 3000; } }
-
cj82401
Have the person who got scammed post here. With proof its them.
-
Muffins won't help with stolen account i bought from him
@rsmas confirm
- ban :(
-
Mirror mode questions
use the original rs client
-
Excellent Dragons
Sí, debería funcionar bien. Siempre y cuando tengas los requisitos para el modo dragón verde. Tengo el manual de script en el hilo principal. Este script tiene un promedio de 360-430k por hora, según las estadísticas de su cuenta y los precios actuales de runescape. Si quieres el mejor fabricante de dinero, entonces recomiendo Fruity Zulrah. Pero necesitas una buena cuenta para usar su script para que puedas hacer 2m por hora.
-
Can you recommend some Youtube channels that made you a Better programmer?
Nice sig and all but we do not allow offsite redirects to other platforms such as sythe.org . Please update your signature, thank you!
-
Excellent Dragons
Hola, En este momento no hago pruebas para mis scripts. Mi script está en condiciones de trabajo a menos que alguien haya hecho un informe de error. Por favor, hágamelo saber si tiene alguna otra pregunta. ~ Christopher
-
Can you recommend some Youtube channels that made you a Better programmer?
anything on youtube that isnt TechLead