Everything posted by Joseph
-
What RuneScape NPC is the guy above you?
Dracula
-
FREE Script tester. ;)
http://osbot.org/forum/topic/64709-request-construction-bot/#entry710691
-
[request] Construction bot
naw its cool im considering it.
-
Free 24+ hours script trial
buddy use my lite script mode for now. im goign to be update it soon too
-
OSBot 2.3.17 - Various Patches
it use to. Not sure if they changed its meaning.
-
OSBot 2.3.17 - Various Patches
what happens to the scripts that use .interact() method. Does the interaction become closer?
-
In depth guide to make the perfect Smoothie. ©Oliver
the perfect smoothie tbh looks like a nice combo but i use to work at a smoothie joint i could make you some fire ass smoothie with the perfect combo of fruits
-
[request] Construction bot
idk if hes trolling but i was because you said this which is a lie. I use to have a construction script. ill probably consider making one but after im donne with my crafter script
-
[request] Construction bot
so you are making this script?
-
Why do I not have the veteran status?
Jelly
-
How can I store multiple areas in one array?
we were never explained how to use it. he never say anything about banks. I use that enum above as an example. with an enum you can loop through the variables rather than having a nested if statement.
-
2 Questions
let the person who accepted the random, take the risk.
-
Requesting Bank Organiser
i might consider it too.
-
2 Questions
This is a need ^, but alek is busy with other things. I say they should allow scripters to code random solver. But i thought they will let us
-
Won't walk?
i didnt even see that lol. there's nothing i can do but he can @Alek.
-
3 Day Macro Ban - Looks like my botting days are over!
was the message on 5he new account or the old one?
-
Won't walk?
With out the code we can't help. Op: are you using the new localwalker?
-
Feeling bored
idk it was a suggestion you said something easy but I guess that's too easy. Do construction like I stated in the quote you quoted me in
-
Al alkarid script
Do it before Khaleei does it
-
Request a script and get free access to it!
Dance for money script
-
How can I store multiple areas in one array?
He has to learn some where.
-
How can I store multiple areas in one array?
thats where i took my explain from lol :P
-
Feeling bored
it happens to everybody. Do some sort of construction script
-
How can I store multiple areas in one array?
give me a sec i got you edit: public enum Location { //your pre-definding the value of whatever you need. AREA_ONE(new Area(3092, 3246, 3095, 3240)), AREA_TWO (new Area(3215, 9623, 3219, 9620)), AREA_WHATEVER_YOU WANT (new Area(3207, 3220, 3210, 3216)), ; //these are the private fields you pre-definded private Area area; //constructor add what values you need to pre-define private Location(Area area){ this.area = area; } //these are simple getter methods. //setter method arent allowed because the values are pre-fined so they are basically static. public Area getArea(){ return this.area; } } example of an enum. You pre-define the value and use them like so Location.AREA_ONE give you the variable from location and then your allowes to use the getter methods. Location.values() give your an array of all the variables in the enum You can also use an enum as a type. For oop ideas
-
How can I store multiple areas in one array?
for this you should defiantly use an enum. All you have to do is create the constructor of the enum with an area. Then you can loop throught the array using EnumName.values();