Everything posted by Zuup
-
onLogin() code handling
If I remember correct the client will keep trying to log you in, if you started a script and your account became non-member while the script ran, I guess this would fix that kind of situation.
-
Lunar Spells Enum
how so? Looks good. You could try adding in an id value as first argument so the enum can be easily used in combination with a comboBox. why isn't the name better? the users wont know what the id mean or did i misunderstood you? Yes, you misunderstood him. Theese ID's he's talking about, is the ID's from the ComboBoxes from the Swing class (for generating GUI's). I can't explain this much further, but I hope I helped. You can still have the name. enum Spells { HOMETELEPORT("Lunar Home Teleport", 0, 0, 16), BAKEPIE("Bake Pie", 1, 65, 15), CUREPLANT("Cure Plant", 2, 66, 31); private final String name; private final int comboBoxPos; private final int level; private final int childid; Spells(String name, int comboBoxPos, int level, int childid) { this.name = name; this.combo = comboBoxPos; this.level = level; this.childid = childid; } public String getName() { return name; } public int getLevel() { return level; } public int getChild() { return childid; } public int getParent() { return 430; } } Something like that if I remember correct . PS. Enums are written in case-letters :P. (I don't know the right word here..)
- AnonFarm [Beta]
-
Easy Guide to Port Forwarding
How do you exactly know which port to forward? In this case port "50050" ? I've never figured that, thanks though.
-
Walking class + Door/Gate... Handler
Thank you very much, Cory!
-
Walking class + Door/Gate... Handler
How would I add the path? Position[] pathNodes = new Position(x,y,z), new Position(x,y,z) ? Thanks on advance.
-
Diclonius Path Walking
Is there any way to add support for door handling in this snippet? Thanks.
-
How to make an update notification for your script
Makes good sense, thanks for the quick response .
-
Kokeis AIO Chopper - Supporting almost any location
Not in my opinion, if less people are at the certain location, at some point the ban rate would fall, seeing as the mods would have to go other places to find LOTS of people? - Or is my viewpoint totally wrong? Edit: OT, damn sweet paint .
-
How to make an update notification for your script
Wow, you've definitely put time in this, thank you for such a very nice guide, I've learned quite a good bit by going through this guide! . On another note, is it somehow possible to make the script download the new version itself and run it, I don't think the client supports this though? - Atleast I've noticed I have to hit the "Refresh" button each time I edit my script (I like to edit a part, run the script to see that part, etc). Thanks again
-
Skill Monitor
Thank you very much, I was sitting late up yesterday and thought of something like this, I'm just not the biggest/best in java coding so far, I'll definitely make use of this!
-
Updates To Be Expected In 1.8.x!
Sounds amazing, can't wait!
-
[Stream] Making an semi-advanced miner!
I will definitely be watching this, I've just started Java coding/scripting the last month, because it started to interest me a lot. I hope I'll learn a little, even tho I've learned quite a lot so far . Also nice to see other people help each other out, I really like the community on OSBot, most are polite . Any hints on tonights stream?
-
AIO Fisher by Aeterna & ProjectPact
I can't say thanks enough, really, this script is amazing! I've only used version 1.6. Only flaw I've noticed, is that's you'll need a lot of the fishing equipment you're fishing with, due to the script banking and withdrawing fishing equipment if the equipment on the ground is too far away (Big fish). ** This is no problem though, I've 500 harpoons left! My best screenie so far (I've had the script running for 14 hours, than I ran out of harppons): EDIT: This is when I noticed the "flaw" ^. Again, thanks!! -Zuup