Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
  1. S

    Varp mathematics

    Just so you know, you can convert binary to int in java using Integer.parseInt("<binary>",2); eg. Integer.parseInt("00", 2) = 0 Integer.parseInt("01", 2) = 1 Integer.parseInt("10", 2) = 2 Integer.parseInt("11", 2) = 3
  2. S

    RS3 Make scripts we actually need!!!!!!!!!!!

    You spelled "we" wrong. :p
  3. S

    Resolved Local scripts not showing up in Client

    @Cloud @Arbiter Both Aidden and Arbiter have TV'ed me and could not/did not have the time to figure the bug out. The issue is that it cannot find the main class, not that it cant find the manifest. When i refresh the bots it throws this error: " (02:31:07) Unable to locate...
  4. S

    Resolved Trade message type

    Hey, @Cloud New message type for you MessageEvent: Type: UNKNOWN Message: "MotherlyWyrm wishes to trade with you." Sender: MotherlyWyrm Console Log: "(01:36:38) Unable to resolve chatbox message type "101", please report this only if you can help identify it." The type should be TRADE
  5. S

    Resource Old School Scroll Bar Util

    Fair enough, ill change it to use queries in a bit.
  6. S

    Resource Old School Scroll Bar Util

    What should be used instead? I dont really see any other way to do it except for using bounding box size or texture id which seems even more hacky to me.
  7. S

    Resource Old School Emote Player

    Made a smallified version for you: import com.runemate.game.api.hybrid.input.Mouse; import com.runemate.game.api.hybrid.local.hud.InteractableRectangle; import com.runemate.game.api.hybrid.local.hud.interfaces.InterfaceComponent; import...
  8. S

    Resource Old School Scroll Bar Util

    Just a small resource i made to handle the scroll bars in old school. Currently it has the chatbox (not tested) and the emotes tab built in to use but it should be easy enough to implement other scroll bars and if you post them below ill add them. le code: package...
  9. S

    Resource Make Rainbow mouse

    Even a simple if statement if run a million times will cause issues.
  10. S

    Resource Make Rainbow mouse

    You are constantly checking if the time is correct for you to change the colour. Im sure if you had a counter you would see that that is run millions of times a second, which just isn't efficient at all. You can achieve the same thing just by sleeping every time for even just a small amount of...
  11. S

    Resource Make Rainbow mouse

    You should add a sleep into the while loop, it really isn't efficient to be constantly picking a random colour.
  12. S

    Resource Old School Emote Player

    Hey, this is a simple class i made to allow you to play emotes in old school. import com.runemate.game.api.hybrid.input.Mouse; import com.runemate.game.api.hybrid.local.hud.InteractableRectangle; import com.runemate.game.api.hybrid.local.hud.interfaces.InterfaceComponent; import...
  13. S

    Resolved Cannot open client on mac osx

    Thanks so much! That fixed it.
  14. S

    Resolved Cannot open client on mac osx

    Nope, this does not work, still get the same error.
  15. S

    Resolved Cannot open client on mac osx

    Hi, whenever i try to load the client it gets to 30% and then crashes with the error http://pastebin.com/Wp3A56T0. How would i fix this? Ive checked the permissions and all of the folders under /var/folders/07 have read and write permissions.
Top