Jump to content

Gunman

Super Moderator
  • Posts

    3481
  • Joined

  • Last visited

  • Days Won

    17
  • Feedback

    100%

Everything posted by Gunman

  1. With Mirror Mode there use to be a bug with bank tabs. I don't remember if it was fixed or not.
  2. If you are using stable build try this build Other wise I am certain you are using bank tabs and I think there is still a bug with banks tabs and Mirror Mode. Just move all the items to the main tab and keep all the items in that one tab.
  3. Does it still happen on a fresh client or one where you have stopped and started that script many times after changes and such? Probably would need to see the script source to diagnostic it more precisely. I might fall asleep here soon so If I stop replying that's why.
  4. What do you mean by freezes? Is this in Mirror Mode or Stealth? Also could you provide a picture(If Mirror both clients)?
  5. I think it mean Chicken Killer
  6. 1. Make a method for checking the value and enabling it using the API. 2. Try using this below instead of isWearingItem. getEquipment().isWieldingWeaponThatContains(axe); 3. Actually number 16. Adding a GUI in this post is I think 95% copy and paste for your current situation lol.
  7. Gunman

    Stealth Quester

    The script has a mode to try and pick up from where it left off; By hitting f4 when the menu is open to enable this mode. If you have everything the script needs more than likely it will pick up from where it left off and continue.
  8. Explv's Script Tutorial will explains most commonly used API methods for scripts. Explains how to setup Intellij for scripts, if you are using Intellij. You could learn enough Java to make basic scripts from Code Academy Learn Java course. Just google Code Academy and sign up then find and add the java course. This could probably teach you a few things over time as well. Beyond doing all this it's kinda useless if you don't try and utilize what you are trying to learn to get a feeling for it.
  9. In my experience yes. I have taking 2 day ban and quashed perm ban accounts over 2 months. I currently have one thats a month old after a double perm got quashed and it only bots 1 mini game. Nothing else.
  10. Um yes and no? When using mirror it will default set a reaction time of 1000ms which you can lower to 50ms and raise up to 5000 ms. Some scripts won't work right if it's not at 50ms do keep in mind.
  11. Start with learning basic Java first then start learning how to use and read the API. Then learn more Java. I am out at dinner atm but when I get home I might be able to link a few things that could help.
  12. Pretty what you are talking about is linked within the first few lines here but it's gone.
  13. Gunman

    Stealth Quester

    By freeze does the Official Runescape client go black? Like the entire screen and most the time you gotta force close it with task manager?
  14. Both can last you a long time but Mirror can let you get away with a lot small screw ups. Mirror would also be easier for beginners to use when starting out. You can make fresh off the 2 day ban /quashed ban accounts last months with it if used right.
  15. So one should delete ez post saying first and then someone else should post first
  16. Gunman

    AIO MTA

    Sounds like a simple and effective fix. Please do.
  17. Gunman

    AIO MTA

    Yeah I basically suicided the account and the issue never happened. 100% certain it's a mirror mode only thing.
  18. Gunman

    rip 5k chins

    Yeah but I lost basically 3k Chins dieing 6 times in 10 minutes.
  19. Gunman

    rip 5k chins

    I know that feeling
  20. Actually never noticed but Khal isn't a Veteran. Thought he would be.
  21. No he isn't. Check #13 on Explv's scripting 101 where he explains what Configs are and using them. Quoting from Charlotte's post again "A switch works with the byte, short, char, and int primitive data types. It also works with enumerated types (discussed in Enum Types), the String class, and a few special classes that wrap certain primitive types: Character, Byte, Short, and Integer" Sorry I am lazy to manually change the black text. So basically in your case, your pray level will return as an int. So configs can return as int as well. So we tell the switch to grab that int value and which ever case equals that int, is the section of code we run for that specific Prayer level. Sorry if I explained this poorly and confused you.
  22. You can write it either way. As the the link in Charlotte's post says and I quote "Deciding whether to use if-then-else statements or a switch statement is based on readability and the expression that the statement is testing." Which is why I said I and not should be written. I organized it that way by config number being config 660 or 670 so I can go straight to that section for bug testing. I don't know about you but I def prefer using the switch in the case. If it's something small like 4 things then I just use if statements.
  23. What Charlotte posted is correct; But a script example where it I would use a switch is when grabbing the config(281) value on tutorial island to find which stage of the tutorial island the player is at; And based off that value I will tell it to run the section of code for that stage.
×
×
  • Create New...