Jump to content

Precise

Lifetime Sponsor
  • Posts

    1854
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    100%

Everything posted by Precise

  1. i knew of this but wanted to include the Object problem with the NPC problem because they are probably related issues
  2. Using mirror verison 1.0.2. Both 32bit java and chrome. Cannot find objects in different regions: Red Box: Proof i am hovering over Staircase. Greenbox: showing that the staircase isn't recognised by the Entity Debugger. NPCs are not loaded correctly: (It seems to be loaded on the level below [Z index] though the z index is correct in the position ) Hope this helps!
  3. it wont move to 26 exactly as that is botlike. do not use a while loop for this, it will only cause issues: lag in your instance. use boundaries instead like: if (camera.getPitchAngle() < 20 || camera.getPitchAngle() > 30) camera.movePitch(26);
  4. Read this: http://osbot.org/forum/topic/66800-osbot-mirror-client-your-guide/
  5. already tried this and it didnt work, thanks though! ^_^
  6. it will loot as long as there is loot on the floor, otherwise it will kill.
  7. the one in my signature. can be added via the script selector in the client.
  8. When running Osbot using this code: "C:\Program Files (x86)\Java\jre1.8.0_40\bin\java.exe" -cp "C:\path_to_your_osbot.jar"; org.osbot.BotApplication (obviously i have edited my path to osbot etc xD) I get this error: OSBot version: 2.3.41 I have both 32bit and 64bit installed as i need 32bit for mirroring and 64bit for eclipse otherwise it fails to load xD need anymore details? let me know ^_^ hope you guys can help me ^_^
  9. Good Job! ^_^ might want to consider widgets for selecting prayer?
  10. please post your current code which isn't working and then we can fix this issue Precise
  11. I don't mind making an simple script for you once I get home. Add my Skype: precise_pb This will involve you lending me your account add me if interested.
  12. Precise

    Script help

    If you're on windows then go: C drive/Users/"user name here"/OSBot/Scripts Place it in this folder, select refresh on the script selector and it should appear! Precise
  13. I would not use nested IF statements like this as this causing you logical problems. Currently you're saying: If not in lever area, walk to lever area. But this will not execute the second if statement because you are now in fact in the lever area so the the first boolean returns false meaning no code is executed. Try: if (!LEVERAREA.contains(myPlayer())){ localWalker.walkPath(TOLEVER); } else if (LEVERAREA.contains(myPlayer())){ lever.interact("Pull"); } You might want to famaliarise yourself with if statements and if then else statements (Only changed part of the code because I am on my phone and so you can learn too) Precise
  14. myPlayer().isUnderAttack(); // // this is the boolean to check whether it is under attack, don't forget to null check! NPC npc = getNpcs().closest("Goblin"); npc.isUnderAttack(); // this is the boolean to check whether it is under attack, don't forget to null check! Please familiarise yourself with the API. Precise.
  15. Great Release, heard it is very good :P good luck ^_^
  16. This isn't enough information. Post:Browser - which browser is it and is it 32 or 64bit. Java - which version, 32 or 64bit. Console - post all errors in console. Screenshots- post photo of client and the error occurring. This information above makes it much easier for debugging otherwise this will be ignored as you have given insufficient evidence. Precise
  17. Precise

    Error

    it is fixed ^_^
  18. This isn't enough information. Post:Browser - which browser is it and is it 32 or 64bit. Java - which version, 32 or 64bit. Console - post all errors in console. Screenshots- post photo of client and the error occurring. This information above makes it much easier for debugging otherwise this will be ignored as you have given insufficient evidence. Precise
  19. Get this error when i close a tab using the Mirroring system: [ERROR][03/05 11:12:59 PM]: Uncaught exception! java.lang.NullPointerException at client.emu.EmuClient.stop(Unknown Source) at org.osbot.rs07.Bot.stop(tn:550) at org.osbot.xb.run(iz:17) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) hope this helps! ^_^
  20. Precise

    Error

    I tried with with 32bit Java ONLY installed and got the same issue. using Chrome: Windows 7 Ultimate.
  21. Offsite really won't change this. Why not ust do what Divinity said? Because you have to show you're capable of maintaining and updating a script on OSBOT. xD
×
×
  • Create New...