Everything posted by hajar424
-
The currentStrenghtxp dont updates
-SOLVED- Thanks Flamezzz g.drawString("Current:"+ experienceTracker.getGainedXP(Skill.STRENGTH),10,364);
-
The currentStrenghtxp dont updates
I get a error then saying that it dont know the variable
-
The currentStrenghtxp dont updates
My Current strenght xp dont changes when i attack someone, and when i try to put the variables in the onloop() i get error because onPaint() metod cant use variables from onLoop() @Override public void onPaint(Graphics2D g) { int currentStrenghtxp = skills.getExperience(Skill.STRENGTH); int beginningStrenghtxp = (skills.getExperience(Skill.STRENGTH)); int strenghtXpGained = currentStrenghtxp - beginningStrenghtxp; g.setColor(new Color(25, 25, 25, 100)); g.fillRect(7, 345, 516, 320); g.setColor(new Color(228, 211, 22)); g.drawString("Current:"+strenghtXpGained,10,364); }
-
Chop Drop Repeat - First Script
Teach you what, hahah xD
-
Chop Drop Repeat - First Script
Nice bot, here is some tips... Here is how you only drop Willow logs insted of dropping all in the inventory inventory.dropAll("Willow logs"); The if (getInventory().isItemSelected()) getMouse().click(false); will will no needed in the new API realse, for now use it. It is only a bug Post from Android.
-
osbot is more then just botting!
Hello my name is Hajar and Yes that is me on the profile picture. Since i join osbot i have learned how to make bots, but i have also improved my Java skills. I have learn GFX, CINEMA 4D and how API works. I have new friends on Skype from osbot and i feel happy. Osbot community feels like my second family. There should be more threads on new things like Chrome extensions, Matlab, gVim. I love to learn new things
-
My first logo for my bot
I need some respons/tips of how to improve my logos Here is the first one
-
How do you make transparent color?
I would like to use g.fillrect... but in a transparent color, so how do you do that
-
How do you add icon in the manifest
Thanks it works Here is how it can look like @ScriptManifest(name = "TEST", author = "Hajar424", version = 1.0, info = "TEST", logo = "http://i.imgur.com/7k74Br4.png")
-
How do you add icon in the manifest
Hello who can write me a snippet of a empty bot with a manifest where there is a logo on it
-
Anti ban on bots?
Osbot don't have antiban, the bot maker have implemented it in the bot
-
Quest Service needed
i had quest cape in rs3,i am a fast quester but pm me your offer
-
Is there any time limit?
I had my bot running for the night but somehow it only botted for 5 hours. Is there any time limit because the bot was running when i logged ut.
-
My first 100% working WC bot
it work but i dont know how to walk to a position, sorry for asking to much /:
-
My first 100% working WC bot
Thanks, i have a question btw, do you know how to bank the logs? Right now i drop them inventory.dropAll("Oak logs");
-
My first 100% working WC bot
When i was a little kid i always dreamed about making my own bot. My first attempt was at p****bot but they were not providing good tutorials like osbot. I found out about osbot yesterday and the tutorials was so good that i made my own working bot. Thanks OSBOT SIMPLE WOODCUTTING BOT (first bot in 6hrs) import javafx.animation.Animation; import org.osbot.rs07.api.Inventory; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(logo="",version = 1, author = "Hajar424", info = "" , name = "W3" ) public class Woodcutter extends Script{ final String tree = "Tree"; @Override public int onLoop() throws InterruptedException { Inventory invent = inventory.getInventory(); if (!invent.isFull()){ Entity TREE = objects.closest(tree); if (TREE != null){ if (TREE.isVisible()){ { TREE.interact("Chop down"); } }else{ camera.toEntity(TREE); } } }else{ inventory.dropAll(); } return 50; } }