Jump to content

PwneRL33T

Members
  • Posts

    173
  • Joined

  • Last visited

  • Feedback

    100%

Profile Information

  • Gender
    Male
  • Location:
    Australia

Contact Methods

  • Skype
    defectiversps

PwneRL33T's Achievements

Steel Poster

Steel Poster (4/10)

7

Reputation

3

Community Answers

  1. hah cheers, just sold it the other day though and got a mercedes benz :P its a VY 5sp
  2. idk lol its a pure bot account :P
  3. this is my loop http://pastebin.com/JcAAhMb7 and this is what happens i i just don't know what to do now I'm completely stuck.. "go learn basic java" they say, trust me iv'e learnt it and studied it over and over, but no basic java tuts show me about paths for a runescape bot :L pathwalking method public void walkPath(Position[] path) throws InterruptedException { for (Position p : path) { if ((myPosition().distance(p) <= 16) && (myPosition().distance(p) >= 3)) { boolean success; do { success = walkTile(p); } while (!success); } } } public boolean walkTile(Position p) throws InterruptedException { if (myPosition().distance(p) > 13) { Position pos = new Position( (p.getX() + myPosition().getX()) / 2 + MethodProvider.random(-3, 3), (p.getY() + myPosition().getY()) / 2 + MethodProvider.random(-3, 3), myPosition() .getZ()); walkTile(pos); } for (int i = 0; i < 2; i++) { mouse.click(new MiniMapTileDestination(bot, p), false); } mouse.click(new MiniMapTileDestination(bot, p), false); int fail = 0; while ((myPosition().distance(p) > 2) && (fail < 10)) { MethodProvider.sleep(500L); if (!myPlayer().isMoving()) { fail++; } } return fail != 10; }
  4. I'm not asking to be spoonfed, I asked you to put it in a way that a beginner java scripter would understand, I didn't ask for the code for pathing, I simply asked you to put it an easier way, I'm not at your level of coding I can't understand what you are saying.
  5. Sorry I don't understand what you mean, something I could more understand would be like, get all your positions making sure they are within clickable distance (usually 10-12 tiles) and the do blah blah, sorry I don't understand when you state, I already have all my positions but just how to make them actually work for the script I am unsure. private final Area BANK_PATH = new Area(new Position[] { new Position(3240, 3302, 0), new Position(3236, 3307, 0), new Position(3225, 3321, 0), new Position(3212, 3333, 0), new Position(3204, 3349, 0), new Position(3201, 3367, 0), new Position(3187, 3378, 0), new Position(3176, 3391, 0), new Position(3170, 3407, 0), new Position(3172, 3424, 0) }); private final Area PICK_PATH = new Area(new Position[] { new Position(3172, 3424, 0), new Position(3170, 3407, 0), new Position(3176, 3391, 0), new Position(3187, 3378, 0), new Position(3201, 3367, 0), new Position(3204, 3349, 0), new Position(3212, 3333, 0), new Position(3225, 3321, 0), new Position(3236, 3307, 0), new Position(3240, 3302, 0) });
  6. hey guys, ive finally finished my main project and have started another one... but this one requires a fair distance from the bank... so i was wondering how do i go about making a path? as its to far to just have main area and then the bank area, ive got all the coords down for the path.. but dont know how to implement it to walk to bank when invo full and walk back to main area when not full..
  7. my SDN scripts fail to load with the error of.. [ERROR][08/26 02:31:45 AM]: Failed to download SDN script list from server! i know this is not due to my end.. as per i am posting this thread,, iv'e tried everything restart client, restart come, restart modem ect dont know what else to do..
  8. you obv didnt read other posts by me, saying i didnt mean how that sounded.... but thankyou... thats whta i was asking for...not for spoonfeed "Make an instance of your gui, and in the onstart make it visible. Within your gui make public getter methods so you could grab your variables easier." would that have been sooo hard guys???
  9. then you are stupider than you look, iv'e said about 4 times now i have made the GUI but i dont know how to implement it into my already existent script
  10. you are all obviously taking this the wrong way.... probably just me putting it the wrong way... i know OSRS is all about java but what im trying to say is about 99% of the stuff people teach me i wont even use for a OSRS script... which is why i request help from a OSRS script writing forum.... i just dont understand why they have a "Questions" section if all people post on here are jst going to get ignorant people saying... "go learn java" basic java is not hard... and i know mainly osrs scripting is pretty basic... but for fuck sake... im not asking anyone to write me a full script just for some pointers on how to do something... and yes somtimes i ask for the code for something is because i know its so simple for some yet i just cant get it
  11. because the java tutors dont teach me about anything to do with OSRS i do know the basics of java so i don't know why people keep telling me... there's just some parts that i have never used or never even heard of before... like GUI for example.. i have seen it many times, i know how to make one, but have no clue what so ever on how to implement it or get it working in an already existent script
  12. not trolling as a main... but just posting on all of my requests for help just for the hell of it
×
×
  • Create New...