Jump to content

Joseph

Trade With Caution
  • Posts

    4692
  • Joined

  • Last visited

  • Feedback

    91.3%

Everything posted by Joseph

  1. nice update i like it keep it up buddy
  2. You should add the option to craft your leather after you are done tanning?
  3. Depending do you want to share your code? Then release the code Itself. But if you want people to use your actual script release the jar. Not sure if I answer your question.
  4. http://osbot.org/forum/topic/64709-request-construction-bot/#entry710691
  5. buddy use my lite script mode for now. im goign to be update it soon too
  6. it use to. Not sure if they changed its meaning.
  7. what happens to the scripts that use .interact() method. Does the interaction become closer?
  8. 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
  9. 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.
  10. Joseph

    2 Questions

    let the person who accepted the random, take the risk.
  11. Joseph

    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
  12. i didnt even see that lol. there's nothing i can do but he can @Alek.
  13. was the message on 5he new account or the old one?
  14. With out the code we can't help. Op: are you using the new localwalker?
  15. 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
  16. 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();
  17. what i use to do was download music on my computer. Add the music into my itune on my computer. Then sync the music into my phone
×
×
  • Create New...