Everything posted by MassRS
-
The current state of the Scripter II rank
lol wut?
-
48 hour bot busting ban - impossible to carry on botting?
My main also got banned 3 days ago for 48 hours.
-
Massih's Wyverns - Skeletal Wyvern script!
Working on this script, what do you guys think? Pretty good money p/h Still got some work to do but runs pretty smooth.
-
Script laggs.
thanks guys, seems to work
-
Script laggs.
So when i wrote my script but when it's up and running after some time it starts lagging really bad and gives this error in the logger: [ERROR][Bot #1][01/17 07:46:41 PM]: Error in script executor! java.lang.NullPointerException at mWyverns.getState(mWyverns.java:134) at mWyverns.onLoop(mWyverns.java:142) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(qf:131) at java.lang.Thread.run(Unknown Source) at line 134 i have this: GroundItem bone = getGroundItems().closestThatContains("potion","Clue", "Adamant", "Granite", "Uncut", "key", "logs", "Runite", "battlestaff", "Rune", "Dragon", "Snapdragon", "Ranarr", "bar", "Draconic","bones"); if (bone.isOnScreen()) return State.LOOT;
-
localWalker.walkPath()?
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?
-
How to play sound in script?
Thanks got it working! You know too much...
-
How to play sound in script?
Is there anyway to play a sound when an action has been done?
-
How to line up camera position?
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!
-
Massih's Impling Finder
Yes, that's pretty much what it does. I've added a screenshot take a look
-
Massih's Impling Finder
Not sure what you are talking about...
-
Massih's Impling Finder
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)
-
How to paint NPC?
Can I also use this method to paint the NPC it self on the screen instead of on the minimap?
-
How to paint NPC?
How do I paint a NPC on the minimap and give it an other color on the screen?
-
How to click in a rectangle?
haha that's not exactly what i meant;p I want my script to click on a interface.
-
How to click in a rectangle?
How do i make my script click at a random place within a rectangle? Thanks in advance guys!
-
Computer requirements to run more than 50 bots
You can't bot 50 accounts from the same ip. Well... you can but they will last no longer than 30 mins.
-
mRangeGuild -- Ranging Guild Script
Czar! didn't expect to see you on my thread lol
-
mRangeGuild -- Ranging Guild Script
NOW ON SDN! http://osbot.org/forum/topic/90153-rangedmassihs-rangeguilder-6-hour-rpog/
-
Need help with camera angle.
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?
-
Need help with camera angle.
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
-
Dialogues broken
I think the Dialogues method is broken.. Anyone else having issues?
-
Problem with my script..
Could you add me on skype? My Skype name is: massih--
-
Problem with my script..
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...
-
Checking if my player is in area?
How do I check if my player is in a area? like this? if (!WEBAREA.contains(players.myPosition()){ }