Everything posted by Precise
-
Cow Hide Banker Script?
it will loot as long as there is loot on the floor, otherwise it will kill.
-
Cow Hide Banker Script?
the one in my signature. can be added via the script selector in the client.
-
Running OSBot with 32bit Java Issue with command prompt.
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 ^_^
- Count To 10,000!
-
NMZ Flicker script
Good Job! ^_^ might want to consider widgets for selecting prayer?
-
Need help with casting a spell
please post your current code which isn't working and then we can fix this issue Precise
-
Broken bot ?
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.
-
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
-
Problem with my script..
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
-
Buying starter pure or low level account
you know he is banned right?
-
[NPC] Need help
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.
-
Khal Pest Control
Great Release, heard it is very good :P good luck ^_^
-
Black Screen Freeze Error
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
- Error
-
Error loading stream lib
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
- Count To 10,000!
-
Closing Tab Error -
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! ^_^
- Error
-
Another question
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
-
Design Contest Vote (Win $10)
Voted ^_^
- Count To 10,000!
- Count To 10,000!
-
How to take use input decide what cordiantes to use for an area?
Yes I agree ^_^
-
How to take use input decide what cordiantes to use for an area?
Why are you telling me that when you said Area above?
-
How to take use input decide what cordiantes to use for an area?
private final Area IRON = new Area(1,2,3,4);