Jump to content

MassRS

Members
  • Posts

    69
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by MassRS

  1. localWalker.walkPath(toship); toship is my path. but when i use this code the walkPath part gets a strike through it as shown above.. Is this a problem or will it run fine?
  2. Thanks got it working! You know too much...
  3. Is there anyway to play a sound when an action has been done?
  4. Hey guys, I have a question how do I line up an object in the exact position i want? It is for my range guild script i want to put the "X" of the dialouge over the target so it can keep clicking it and close the dialouge when it pops up instantly. help is much appreciated!
  5. Yes, that's pretty much what it does. I've added a screenshot take a look
  6. Not sure what you are talking about...
  7. This script allows you to find Implings very easy. When you walk around Puro Puro and the script detects a Dragon, Magpie or Ninja Impling it will show it on the minimap and on the screen. Download: http://s000.tinyupload.com/index.php?file_id=45721328882197758058 (Put the class file in your OSBOT script directory)
  8. Can I also use this method to paint the NPC it self on the screen instead of on the minimap?
  9. How do I paint a NPC on the minimap and give it an other color on the screen?
  10. haha that's not exactly what i meant;p I want my script to click on a interface.
  11. How do i make my script click at a random place within a rectangle? Thanks in advance guys!
  12. You can't bot 50 accounts from the same ip. Well... you can but they will last no longer than 30 mins.
  13. Czar! didn't expect to see you on my thread lol
  14. NOW ON SDN! http://osbot.org/forum/topic/90153-rangedmassihs-rangeguilder-6-hour-rpog/
  15. i need it to be 26 +- 1 so 25 or 27 is okay. I'm using this for a range guild script. Is there any way i could align the target(rsobject) with mouse coordinations?
  16. I'm trying to position my camera angle to specific angle (pitch26, angle350) But when i use: if (camera.getPitchAngle() != 26){ camera.movePitch(26); } it just moves the camera 26 degrees but not to 26 degrees.. and if i change it to: while (camera.getPitchAngle() != 26){ camera.movePitch(1); } it just laggs alot
  17. I think the Dialogues method is broken.. Anyone else having issues?
  18. Could you add me on skype? My Skype name is: massih--
  19. I'm trying to make my own script I have got some kind of a problem i don't really know how to solve... if (!LEVERAREA.contains(myPlayer())){ localWalker.walkPath(TOLEVER); if (LEVERAREA.contains(myPlayer())){ lever.interact("Pull"); if (dialogues.isPendingContinuation()){ dialogues.clickContinue(); if (dialogues.isPendingOption()){ dialogues.selectOption("Yes I'm brave."); if (players.myPlayer().isAnimating()){ sleep(random(1000,1500)); } } } } } So it does walk to the LEVERAREA and when i manually leave it, it walks back. But when it is AT the LEVERAREA it does not pull the lever...
  20. How do I check if my player is in a area? like this? if (!WEBAREA.contains(players.myPosition()){ }
  21. if (dialogues.isPendingContinuation()){ dialogues.clickContinue(); sleep(random(800, 1100));} if (dialogues.isPendingOption()){ dialogues.selectOption("Can I journey on this ship?"); sleep(random(800, 1100));} this works
  22. Got it working put in some sleeps. Thank you all!
  23. if (dialogues.isPendingContinuation()){ dialogues.clickContinue();} if (dialogues.isPendingOption()){ dialogues.selectOption("Can I journey on this ship?");} this should work right? but it does not..
  24. And if i wanted it to click an option? I can't seem to use that... i think it is because my script in eclipe is called "main"?
  25. So i have got the parent and the child ID. I want to have my script click "Click here to continue" but i can't find a way to do this... someone help
×
×
  • Create New...