Jump to content

jelknab

Members
  • Posts

    151
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by jelknab

  1. Hi, I'd like to share my way of getting a Position on your screen to make something like this: The cool thing is these lines rotate with your camera. Credits would be kind. Enjoy.
  2. inb4 friend of op wins or an alt acc and he got free likes.
  3. Hai, I made this little crafting interface manager to make your life more easy. I also included an example for usage. SmithItem enum SmithItem.java Interactions and such SmithingInterface.java example Tester.java And a picture because fuck you. Giving me credits would be nice, but i won't force you to. Have fun. And burn in hell.
  4. Ill see how this will do against my vid xD. Cant wait for kati to get her shit together.
  5. we need chatrooms and we need them now.
  6. This should be using item names.
  7. Hi, Lupekid created this awesome dynamic signature system for me which i would like to put to use, but it says the the image extention is not allowed here. the link is http://lupekid.biz/JSG/signature.php?user=all . support for it would be great. I hope you will look into this.
  8. lol, lost it at : "I was STARK ASS naked, had absolutely nothing. This is where they began to hit me"
  9. It's mostly about fun, Teamspeak servers are fairly cheap and some people like to have a talk. So what people are afk? Nothing wrong with that. Want to get rid of annoying people? Ohey private rooms! I would really like to see a TS server :p!
  10. the 3d picture doesnt really fit for the top of the site since it creates a contrast with al the 2d stuff around it, this would be perfect for multimedia like movies though,
  11. Hi, I think it would be a rather good idea to have the ability to voice chat over Teamspeak rather than type in the chat, this is quite usefull since you dont want to have the chat in your screen at all times or incase you just dont feel like typing. happycamel5 is kind enough to offer a teamspeak server hosted on his behalf for this community. Cheers.
  12. this is how I walk: public void WalkTo(String Location) throws InterruptedException { Position Pos = null; Position [] WalkPath = {}; int Radius = 8; int distance = 1000; if (Location.equals("bank")) { Pos = new Position(3271, 3167, 0); WalkPath = new Position [] { new Position(3304, 3148, 0), new Position(3282, 3151, 0), new Position(3270, 3167, 0) }; } if (Location.equals("house")) { WalkPath = new Position [] { new Position(3282, 3151, 0), new Position(3304, 3148, 0), new Position(3321, 3142, 0) }; } for (int I=0; I < WalkPath.length; I++) { if (myPlayer().getPosition().distance(WalkPath[I]) <= 2 && I < WalkPath.length-1) { Pos = WalkPath[I+1]; } else if (distance > myPlayer().getPosition().distance(WalkPath[I])) { distance = myPlayer().getPosition().distance(WalkPath[I]); Pos = WalkPath[I]; } } while (myPlayer().getPosition().distance(Pos) > 1) { distance = myPlayer().getPosition().distance(Pos); if (distance < 8) { Radius = distance; } int x = myPlayer().getPosition().getX(); assert Pos != null; int x1 = Pos.getX(); int y = myPlayer().getPosition().getY(); int y1 = Pos.getY(); double pureX = ((double) (x1 - x) / distance) * Radius; int dirX = (int)pureX; double pureY = ((double) (y1 - y) / distance) * Radius; int dirY = (int)pureY; walkMiniMap(new Position(x + dirX, y + dirY, 0)); WaitWalking(); } } public void WaitWalking() throws InterruptedException { sleep(random(150, 250)); while (myPlayer().isMoving()) { sleep(random(50, 150)); } }
  13. Jelknab - Jelknab Stealthy, slow and accurate. Not very good at long range, I like airvehicles and big maps. I play in a very supportive way for my team.
  14. script development board sounds better i think.
  15. I know its against the rules, but a few other long existing rs bots have lots of tutorials for java. Their api is different, but you can get a lot of general knowledge. Thats how im learning ;).
  16. Well, the guy was obviously a scammer, but I think you miss what I mean. I dont think there is anything wrong with funding the site by payments. But its more like buying something instead of donating. It always confuses me a little :-).
  17. Its great you get something back for the hard work, but just like the discussion we had with the guy selling his scrip through skype, isn't this more like buying privileges instead of donating?
  18. Yeah, areas need updating. I cant wait for the next update!
×
×
  • Create New...