Jump to content

basedbeast

Members
  • Posts

    99
  • Joined

  • Last visited

  • Feedback

    100%

Profile Information

  • Gender
    Male
  • Location:
    Australia
  • Interests
    Coding in-general. I love every single language and I strive to learn more every day

Recent Profile Visitors

794 profile views

basedbeast's Achievements

Iron Poster

Iron Poster (3/10)

15

Reputation

1

Community Answers

  1. Oh, awesome, didn't even see the features from the FKEYS. Thanks for the fixes and Happy Holidays
  2. Hey man, bought this a while back been very good so far only two problems which I'll list below. I don't know if you take suggestions on your scripts, you seem to have it all sorted out, however I do have one: Paint toggle / low graphics output option. (taking up a lot of cpu, pretty niche just for me so I don't really expect you do take action, just a thought.) Here are the two problems: A fail safe for ladder climbing. It seems to somehow get stuck in a loop trying to climb ladder 1, (classified ladder 1 from console output) which it will not solve till the user intervenes. Not really a suggestion but: Randomly a pay-dirt was added like: Name: [Pay-dirt], amount [-13] Price grabbed from cache: 12011. and it crashed the script, really no idea what was going on there.
  3. Something that could work around the message by Swizz is that the script checks the username of the person that messaged in the chat if, for instances the person said it more than once (for the same thing, say; "wc level", if that is said twice by the same person) don't answer the second time, and if it keeps happening by more then one person within a short frame of time, log out and wait for 1-20 minutes and log into a different world.
  4. really that doesn't matter, I posted this for the theory, not the code. Bugs can be fixed easily and workarounds be placed in even easier.
  5. .... This isn't implimented in my code this is a theory not what I've got. Unsure, I might have to do some working around with it Can you please read the whole post.
  6. That's what I addressed in the second part of the post. guys please did you actually read my post.
  7. public void onMessage(String message) throws InterruptedException { int randomNumber = random(2,5); if(message.contains("Wc level") || message.contains("Wc lvl") || message.contains("Woodcutting level")) { if(randomNumber == 2) { client.typeString("" + startLevel); //Start level is the variable for the current woodcutting level. client.typeString("Sorry about this but I really don't feel like talking, im turning off chat."); } if(randomNumber == 3) { client.typeString("" + startLevel); client.typeString("turning off chat, bye."); } if(randomNumber == 4) { client.typeString("" + startLevel); client.typeString("i dont feel like talking btw turning off chat.."); } if(randomNumber == 5) { client.typeString("sorry but im not talking today just grinding"); } } } If I wanted a script to respond to people trying to talk to it for an anti ban would this work? I mean obviously it's not actually turning off chat but the people talking don't know that If more than one person asked there could be trouble. Or I can have a counter as such int randomNumber = random(2,5); int donttalk = 0; if(message.contains("Wc level") || message.contains("Wc lvl") || message.contains("Woodcutting level") && donttalk == 0) { if(randomNumber == 2) { client.typeString("" + startLevel); client.typeString("Sorry about this but I really don't feel like talking, im turning off chat."); donttalk++; } if(randomNumber == 3) { client.typeString("" + startLevel); client.typeString("turning off chat, bye."); donttalk++; } if(randomNumber == 4) { client.typeString("" + startLevel); client.typeString("i dont feel like talking btw turning off chat.."); donttalk++; } if(randomNumber == 5) { client.typeString("sorry but im not talking today just grinding"); donttalk++; } } to make it look like the chat is off?
  8. What I did to learn just a little bit of code was to learn the basics of Java from here: https://www.youtube.com/channel/UCYP0nk48grsMwO3iL8YaAKA then I read through http://osbot.org/api/ and just familarised myself with it all. Also, looking around the forums for tutorials are a great help and it's not like it's embarrassing not knowing how to code in Java, in this day-in-age most people are here to help, but you do get the odd twat that is just there to show off their knowledge and not help (for whatever reason) but you can just ignore them.
  9. Next script will be Gnome yews.

  10. to give it away you should make a poem and have a hidden message within it and whoever gets the message you give it to them
  11. quick question, is it the whole client not loading or just when you try load a bot (i.e start runescape)
  12. holy shit that last one, my sides hurt from laughing
  13. is that a ******** skin for urgot from league of legends.
  14. I think it's fishing tackle without the hook ^ oh please no
×
×
  • Create New...