Jump to content

Woody

Members
  • Posts

    715
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Woody

  1. Woody

    Finally

    ez like someones mom..
  2. You could include an example on how to use this method to simplify for some scripters. Other than that, good job!
  3. The API should not differ that much from the other's API, at least what I know. Post your questions here. The community will surely answer them!
  4. Woody

    Arm Pump

    Show us your calves. It's the most important muscle
  5. What if you wear a pair of heavy working boots that do not conduct electricity that easily? Good idea though
  6. I'm not sure it detects different resistance since it's a powerful saw, like you said. Perhaps there's a system for detecting blood, flesh or similar, on the blade. It's just a guess.
  7. Woody

    R8 M8

    6/10
  8. 20
  9. Today i met my girlfriend at mcdonalds and touched tips with her dad. This was not a normal father, he was sick. He told his daughter, that unfortunately he was dying of boredom due to flaccid balls. What would her mother say if she knew that her tongue was brown? I
  10. I do not care. If they want an army, they can have it. But Lithuania is a member of the shitty organisation NATO, so they probably have to have an army.
  11. Woody

    Specter

    you eat lofas for breakfast
  12. Russia can do it even if Lithuania have an army
  13. Alright
  14. Lol, shame on me... So with map[x][y] I can find the flag's tile?
  15. This is what I have ArrayList<Integer> walkableTiles = new ArrayList<Integer>(); @Override public int onLoop() throws InterruptedException { XClippingPlane[] planes = map.getRegion().getClippingPlanes(); int[][] map = planes[myPlayer().getZ()].getTileFlags(); for(int x = 0; x < map.length; x++) { for(int y = 0; y < map[x].length; y++) { if(isWalkable(map[x][y])) { walkableTiles.add(map[x][y]); } } } return 5000; } public void onExit() { try { BufferedWriter writer = new BufferedWriter ( new FileWriter(".\\positions.txt")); for(int i = 0; i < walkableTiles.size(); i++) { writer.write(""+walkableTiles.get(i)); writer.newLine(); } } catch (IOException e) { e.printStackTrace(); } } When I look at the text file, there are mostly zeros and some other values that doesn't look like tile positions... I've tested some other methods and experimented with it, but I get the same all the time. What's wrong?
  16. Oh yea.. Now I get it. Thank you!
  17. I might be dumb, but what do you mean with "just loop through all tiles and check them"
  18. I see your point. As for the painting, how do you paint nodes and print the world map, like this:
  19. For now I just need walkable tiles on plane 0 (surface). So planes will contain both x and y value? If I was to use getRegion().getTiles(), would it return non walkable tiles aswell? Well, as for trying this for the first time, missing some tiles will not be a big issue.
  20. I want to map the walkable tiles in the current region and save them in a list, to use them as nodes for web walking. Anyone got an idea?
  21. Woody

    48 Hour Ban

    48 hour ban here aswell... It looks like I got caught by a mod in game
  22. Your skills: 80 ranged, 70 def, 60 prayer, 87 hp Payment method: rsgp Added me yet: yes
  23. Could this help you?
  24. Is it worth using Stream API in this method? This method is not so much timeconsuming and it goes pretty fast. But there are maybe some other pros with Stream API which I am not aware of. Other than that, I really appreciate your help!
×
×
  • Create New...