Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/26/15 in all areas

  1. Yesterday was my 18th birthday, I had college from 8.30 until 17.30 and was told to hurry to catch my train since I would go eating with my mum a few hours later in a pretty expensive restaurant. Before we were about to leave, someone called our house phone. I heard my mum saying "So we have to eat elsewhere? And where? Oh close to that church, right?" but I saw through her and thought she was lying but then I heard a voice saying "I'm very sorry, thank you for understanding!" so I thought it had to be true. My mother told me that the cook had cut his hand and is in the hospital and that all the reservations had been transferred to anothe restaurant. And off we go, heading to that other restaurant. We pass by a pizzaria we go to a lot and my mum enters, and so do I , confused ofcourse. At first I thought she'd say hello to the guy working there, as we know him pretty personal, but that wasn't the case. I'm like "mum this is not the restaurant you said we were going to. I'm not in the mood for eating pizza lol". And she's like " All your friends are coming as a surprise" I'm like " you're kidding lol" . After 5 minutes of "what the?" and "i swear if you're joking I'll......." she explained everything. My mum and my dad arranged along with one of my best friends this whole evening. Friends would come and eat pizza with me and drink, then she had bought 45 drinks at a popular pub nearby for all my friends to drink and enjoy the night. I couldn't believe it at first and was constantly smiling. At 8 pm, 9 good friends entered the pizzaria and I was over the moon. It was really one of those "surprise parties you see in movies/series" because I really didn't have a clue at all! When my friends were there, my mother left and we had a wonderful time, afterwards we went to that pub and drank, had laughs and chats. Afterwards my mother picked me up and I had the best 18th birthday ever. tl;dr: had a surprise party for my 18th birthday, really didn't have a clue, i'm happy
    9 points
  2. This is another small patch to both Worlds API and Autologin. Changelog: -Worlds f2p/p2p hop methods check for High Risk worlds -Worlds f2p/p2p hop methods check for current world -Patched various issues regarding Worlds initialization -Updated Autologin bounding boxes, replaced with hot keys -The OSBot Staff
    5 points
  3. 3 points
  4. alek, i can see you didnt make any changes to interaction in 116, but in 115 i got this with interaction: [ERROR][bot #1][09/26 02:51:01 AM]: Error executing event : org.osbot.rs07.event.InteractionEvent@1fd7a60 java.lang.NullPointerException at org.osbot.rs07.api.util.GraphicUtilities.getSuitablePoint(go:293) at org.osbot.rs07.event.InteractionEvent.getEntityDestinationPoint(ng:298) at org.osbot.rs07.event.InteractionEvent.execute(ng:496) at org.osbot.rs07.event.EventExecutor$2.run(dg:133) at org.osbot.rs07.event.EventExecutor.execute(dg:127) at org.osbot.rs07.api.model.Character.interact(fk:400) at org.prekhal.prekhalslayer.utils.Methods.interact(Methods.java:186) at org.prekhal.prekhalslayer.collection.profiles.BasicMonsterProfile.fight(BasicMonsterProfile.java:90) at org.prekhal.prekhalslayer.controller.Controller.run(Controller.java:23) at org.prekhal.prekhalslayer.PreKhalSlayer.onLoop(PreKhalSlayer.java:141) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(fj:85) at java.lang.Thread.run(Unknown Source) didnt see it occur or what happened. just wanted to let you know
    2 points
  5. This is (somewhat) wrong. It is possible to route to disallow your VPN for certain IPs, however it is extremely tricky and going to be a huge pain for everything non-RS. A better solution would be to use the VPN on your router, that way you can allow certain ports/IPs/pcs to use the vpn.
    1 point
  6. 1 point
  7. I'm looking for a signature and/or avatar. Something associated with pokemon (Bulbusaur preffered). So yeah any gfx artist's who have free time just pm me or post here :P
    1 point
  8. epic proggy with new version https://gyazo.com/4a3c90b0236c738411a0b554b490a54f
    1 point
  9. Only like 5 non-free games. just counted by hand.
    1 point
  10. Czar/others, Any tips for locations for botting alching/stunalch. Looking for low ban rate
    1 point
  11. I resaved my bank pin and it looks like that fixed it, must have mistyped. I also took off building roofs but from the logs it looks like it was 100% a bank pin issue. This script is totally worth the money and has been PERFECT so far! Extremely happy with my purchase
    1 point
  12. http://osbot.org/forum/user/189219-123scrub123/ Would like to try out the Blast furnace script Request Template: - Script name: Khal blast furnace - Your member number: 189219
    1 point
  13. This bot is so good 1m NMZ points in 1 run: Pretty much 6 hour run:
    1 point
  14. I through you already turned 18 some time ago lol!
    1 point
  15. Great! Thanks Czar. Please check your PMs aswell.
    1 point
  16. fk dex we are rebels we do wat we want
    1 point
  17. honestly dex i came out to have a nice talk with the community and you just join the thread and start attacking me for no reason are u on my side or waht bro
    1 point
  18. The exception is telling you that the message of the widget is empty ("" in other words). So you probably have the incorrect widget; or the number was never in the message field of the widget in the first place. Try using the widget value debugger to find the correct widget/field.
    1 point
  19. Integer.valueof is not the way to convert a string into an int. Null check the widget before grabbing it's message. Yes to the question above me.
    1 point
  20. Thanks, he's been IP banned.
    1 point
  21. He still has a lot to learn, he's not ready for the real detective work yet. I haven't changed since I met you. So if you taught me something it must've been something useless.
    1 point
  22. Dont make any trades with this user. there is currently an open dispute against him.
    1 point
  23. String abbysorby = (Absorbpts == null ? "-1" : Absorbpts.getMessage());
    1 point
  24. Java is pretty similar to C# actually, so you shouldn't have much trouble 1. To detect user input, you will need to implement the onMessage method in your class that extends Script. Method overriding works the same in Java as it does in C#. The onMessage method will be called whenever a new message (be it a game message or a player message) appears in your chatbox. 2. To parse the inputted string, you could simply break the message into parts. Given your example "!58x2", you could first check if the message starts with "!" ( stringMsg.startsWith("!") ) Then you could proceed to split the remainder of the string on the "x" delimiter, and read each value. To generate a random number, you can use the built in osbot method MethodProvider.random(minValue, maxValue) 3. To let your character write stuff in the chat, you can use the OSBot keyboard API. example: getKeyboard().typeString("You rolled a " + num); Note that the getKeyboard method is located in the MethodProvider class, so it may only be used from the Script class, since Script inherits from MethodProvider
    1 point
  25. Hey, I'm planning to suicide bot with this script for 50 hours straight on weekends with a specific spell (involves banking and members). Do you think that my account will even last 50 hours given that it's weekend? Will post the proggy whenever I manage to set up the bot.
    1 point
  26. nvm thanks man i used this to convert the stringto a int RS2Widget 1 = widgets.get(x, x,x); String abbysorby = 1.getMessage(); int absPts = Integer.valueOf(abbysorby);
    1 point
  27. @Czar - Hi, just bought this script. I am trying to High Alch and have natures and the items I want to high alch, but it keeps logging me out with the following [INFO][09/25 04:22:18 PM]: Started script : Perfect Magic [INFO][Bot #1][09/25 04:22:26 PM]: Player doesn't have [], stopping script! [INFO][Bot #1][09/25 04:22:31 PM]: Terminating script Perfect Magic... [INFO][Bot #1][09/25 04:22:31 PM]: Script Perfect Magic has exited! I have the runes and items in my inventory. EDIT: Got it working. As always great scripts!
    1 point
  28. 1 point
  29. 1 point
  30. Czar, in your safe guides to botting you said if you're super paranoid to only bot from 9-5 uk time? To me this seems backwards as jagex staff is in office and one would want to bot anytime OTHER than uk 9-5. Whats the theory behind this concept?
    1 point
  31. Oops will re-add headless arrows, so sorry about this @Snowman - pretty much anything makes cash with fletching, especially with store prices and alch prices nowadays
    1 point
  32. I've given you a 6h trial. Enjoy! apa
    1 point
×
×
  • Create New...