Everything posted by Joseph
- Slime collector
-
New money making method. 500k+ per hour!
On me I would like to know
-
Def Nerd's SuperMiner poject thread
It looks like a nice project.
-
we need few snippets
if (random(100)==00){ client.rotateCameraPitch(65+random(0,360)); } First, pitch is when you move your screen up and Down.Second, 67 is the max pitch. If I'm not mistaken.
-
we need few snippets
I'm pretty sure that pitches don't get high then 67 so you sir are trolling
-
we need few snippets
I know I just don't want to give it out.
- The Story Game!
-
we need few snippets
Anti ban I don't use it. Fuck it, that's my own risk. Chop method A simple interact with a tree Nest dection Use onMessage, it you get message about nest on floor or what not. Search ground item for nest pick it up. And keep wood cutting
-
we need few snippets
This isn't a request sub forum. Why you trying to steal from me
-
My first script!
I learned from making a mining not. But wood cutting/mining are like
-
Paint Buttons?
It's possible to add more then one button and make it do what ever
-
Java glossary for dummies x
Static Void Parameter
- Slime collector
- Ectofuntuns prayer
-
bot state skeleton script
i dont even know if your joking around or serious. Code: import org.osbot.script.Script; import org.osbot.script.ScriptManifest; import org.osbot.script.rs2.utility.Area; @ScriptManifest(name = "", author = "", version = 1D, info="") public class hi extends Script { //your variable //bankArea //tree area //tree ints //anything else you need enum State { CutTree, WalkToBank, Bank; } private State state; public static Area bankArea = new Area(0, 0, 0, 0);//add your area with in here public static Area treeArea = new Area(0, 0, 0, 0);// add your area here public void onStart(){ if (client.getInventory().isFull()){ state = State.WalkToBank; } else if (myPlayer().isInArea(treeArea)){ state = State.CutTree; } } public int onLoop() throws InterruptedException{ switch (state){ case CutTree: return first(); case WalkToBank: return second(); case Bank: return third(); } return random(10, 20); } int first() throws InterruptedException { if (myPlayer().isInArea(treeArea)) { //Cut trees //and any other code you want to put here } return 500; } int second() throws InterruptedException{ if (client.getInventory().isFull()){ if (!myPlayer().isInArea(bankArea)){ walk(bankArea); } else if (myPlayer().isInArea(bankArea)){ //interact with bank and so on } else if (client.getBank().isOpen()){ state = State.Bank; } } return 200 + random(100,500); } int third() throws InterruptedException{ if (client.getBank().isOpen() && client.getInventory().isFull()){ //deposit all or what ever } else if (client.getBank().isOpen() && !client.getInventory().isFull()){ // close bank and do what ever you want. } else if (!client.getBank().isOpen() && client.getInventory().isFull()){ state = State.WalkToBank; } return 100; } }
-
Flawless Path Walking
Nope check your message
- bot state skeleton script
-
bot state skeleton script
Sure. edit: remove the oce i had here. Tooo many errors. edit 2: add new code with out error. at the post below
-
bot state skeleton script
What you put in the enum are the cases, which are states.
-
Windows 8 issue
So today I called my computer company, we tried different things to try to fix it over the phone. They couldn't do anything to fix it. So now I have to send them my laptop. There going to fix it over there. Good thing I had warranty on my laptop. Sad thing is that it's going to take about 1-2 week for me to get my laptop fix. That means no bottling/scripting for me
-
Cleverbot Autoresponder
Ande don't you have something like this on your bot. I tryed it won't it didn't work out so good.
-
Windows 8 issue
Well does it usually get warm sitting on your lap? Try a system restore and see if it is a software issue. I wouldn't recommend a system restore just yet haha. You can usually go onto your computer manufacturers website and they have a livechat, Ask them about any problem you have and they'll give you steps on how to fix it. I'll try that out
-
Windows 8 issue
Dam I never turned it off I just left it with the lid closed. Plus I was very gently with my backpack.
-
Windows 8 issue
So earlier today, my laptop was working fine. I had my laptop in my book bag. Went to my school, and came back home after 3-4 hour. When I get home I try turning on my laptop, all I get is like a purple blinking screen, can't see anything. Only thing i could do is move my mouse, but i cant see it. I use my swipe in password. Still can't see anything thing but a blinking blue screen. I've tryed connecting it to my tv by hdmi, I could see the laptop screen good on my tv. Does any one know how I could solve this issue.
- Script Layout