Jump to content

sirskitzo

Trade With Caution
  • Posts

    21
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by sirskitzo

  1. Pm me and I will tell you a good money making method. Avg, 400k per hour.
  2. RuneScape now is banning people like insane even if it was your main so be careful and bot wisely :P
  3. @taraz Yeah, obvious I understand this array but I mean I don't understand the code itself :P
  4. @taraz Haha thanks for this bro, will be very useful. However, I don't understand anything from this code but liked the chat array system.
  5. @Juggles Thanks but that was not my question. @Deceiver Not about being anti-ban. Might be a waste of time, yes, but just a feature -> practicing coding. @Jammer @I am not a @dreameo I like these methods they now are implemented and works fine thanks! Any more ideas would be appreciated. I will keep my post updated with more information and a screen of chat later once there is an improvement. Also, I would like to ask if anyone has any suggestions on the way to handle incoming messages? What I mean is I now have a list of expected incoming messages and then when I get a message in-game I search if one of them equals to it, if not check if it consists. You know people can type something like "What ya doing","what r u doin?". Thanks again!
  6. @Fibonacci @nvrsince haha yeah that is true. I am still thinking of a good way to determine whether the message is to me or not. If I find a good way, I will share the code with you guys! Currently, it has the ability to answer almost most of messages being asked and interacts with chat.
  7. If I am about to implement an auto chat responder to my script, how do I know if the chat was directed to me? I will start by adding something. Maybe If they call the character name If my character and the messager positions are close If they say hi/bot/lvl, what else? Questions: What are good auto chat responder ideas and ways to deal with it? How to handle incoming text? I have my own ideas and I would like to hear your suggestions guys. After every update, I am uploading progress logs. Currently in a JFrame for debugging as still under development. Any other suggestions/notes are welcome and muchly appreciated. Thanks to everyone!
  8. I read the rules like a few minutes back and wonder if I could post that I want to sell something in the spam topic at buyer's responsibility since it is not allowed to pst in the market if you are under 100 pc.
  9. Someone is coding me a private script and I don't want the pain of downloading the new jar everytime he codes an update for me and then go and replace it with the old version. I just want it to be ready(up to date).
  10. Alright, I understand. Are there any alternative ways to add it to the scripts folder safely?
  11. I keep getting permission blocked and denied to write while using a script that gets new jar updates of a script from Dropbox. How can I solve that? @Alek
  12. Alright thanks guys. Will do!
  13. @Chris Sorry for being a noob but I get an error in code now while doing this. Could you please show me how?
  14. I thought I already did by another a = new another(); If not how else? @Explv
  15. I have 2 files, main file and another one that I would like imported. Main file code: import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "SirSkitzo", info = "", logo = "", name = "FirstScript", version = 1) public class test extends Script { public void onStart() throws InterruptedException { another a = new another(); a.test(); } public int onLoop() throws InterruptedException { return 0; } } and on the another class import org.osbot.rs07.script.Script; public class another { protected Script script; public another init(Script script){ this.script = script; return this; } public void test() { script.log("A message"); } } It doesn't work and I keep getting errors from the client. What am I doing wrong and how can I fix this?
×
×
  • Create New...