Everything posted by HunterRS
-
If player is animating, move mouse outside screeen?
change myPlayer().isAnimating() to myPlayer().isInteracting() maybe? You could also try changing it to lesserdemon.isUnderAttack(), but you will need to filter out all of the demons you dont want to attack. In the code you have now you are not checking if someone else is fighing the demon etc...
-
2 Day Moderate
- Road to 99 rcing with botting
Lol, don't expect to bot mining/agility/rc and not get banned- outloggd
- Would it be possible botting to 99 rc/mining?
Will still get you banned. bot 1 hour a day with 10 minute break every 20 mintes EDIT: will probably still be banned- Stuck on ConditionalSleep
- Stuck on ConditionalSleep
- Anybody available to help with Gui? (window Builder)
You need to figure this out on your own or else you will never understand it, from your code I can see you don't understand how OOP works... Here is a clue from my jewelry maker: Main: if(getData){ status = "Getting data"; craft = gui.isCrafting(); enchant = gui.isEnchanting(); string = gui.isString(); makingItem = gui.getChosenJewelry(); GUI: setCrafting(chckbxCraft.isSelected()); public void setCrafting(boolean crafting) { this.crafting = crafting; } public boolean isEnchanting() { return enchanting; } public boolean isString() { return string; } public boolean isCrafting() { return crafting; } public boolean getStart(){ return this.start; } public String getChosenJewelry(){ return this.chosenJewelry; } Keep in mind these are just code snippets to help you understand how you should pass var from your GUI to your script. I suggest you learn at least the basics of Java and OOP before you start writing scripts. If you can't wait then just pay someone else to write you a script because you won't get far without first learning, sorry mate.- After a two day ban?
It is never safe to bot, if you care about the account even a bit stop botting now because sooner or later you will catch a perm.- Private final
Ok, I suggest you learn some basic java before you start scripting, shouldn't take you long and it will save you a lot of time. As for your question: private means that specific var or func is only accessible from the class where you declared it. For example: If you use: private int year = 2017; in your main class, you will NOT be able to access the var year from an other class. As for the final keyword Final is a keyword that is used to declare a var as a final var, which means you can't change it. (It is constant) In order to change the sellPoint you will need to not declare it as a final. For example: this is OK private Position sellPoint = new Position (3209, 3216, 2); sellPoint = new Position (0, 0, 0); But this is NOT private final Position sellPoint = new Position (3209, 3216, 2); sellPoint = new Position (0, 0, 0); EDIT: A good place to start learning Java if you need: (not sure if i can post links, google "The new boston java")- Script ends for no apparent reason.
My java knowledge isn't on a high level, I mainly use python c# and c but I assumed there are some OS specific commands. Very possible I am wrong, would look into it for you but I don't have the time ATM. If you would like me to look at the script and try and figure it out later pm me.- Script ends for no apparent reason.
Guessing the old server was windows? Check if you are maybe running any windows specific commands.- Getting sprite ids
Good idea, might do that- Getting sprite ids
So I am looking for sprite id of the emerald ring and sapphire ring in the crafting widget. Right now I am using the widget root ids to interact but I want to do it by sprite id. https://prnt.sc/grjo2s Any idea why it is always telling me the sprite id is -1?- 2 premium scripts moved to VIP only!
Ahhh just saw, great to hear- 2 premium scripts moved to VIP only!
Good job, Would also help the SDN grow if people could apply to upload scripts :p- PC Custom account build
Think he wants a quote for a service price- C# Sorting a list by amount of occurring letters in a string
Alek does have a point thought, this might be good for now but there will be a time when you will be asked to do it with a specific run time function (Sorry if that is not the name in English, I mean O(n) or O(n^2) something like that) and you will want to know how to go about doing that. Might aswell start as soon as possible though ofcurse if it is time sensitive and not preformance sensitive then fuck all that shit .- C# Question
You have to start somewhere, no one should just copy paste but going over the code and understanding what each part of it does will help you understand and handle this type of assignments in the future.- Runecrafting Botting
Lower banrate is assumably because of the different pattern of a private script. The more people use the same script the more it is likely it will repeat a certain pattern. As for cost it depends on the Scripter. If this is your main I suggest getting @Eagle Scripts or @Juggles or @Apaec, though it will be costly. A private script will probably not be very worth it unless you plan on going to 99+ or using on multiple accounts. Maybe you should look into paying someone (maybe @Dbuffed) to hand train it.- C# Sorting a list by amount of occurring letters in a string
Syntax wise python would be just shorter, and I am lazy EDIT: Dictionary is map ya- C# Question
private void SortArrayWithShellSort() { int[] array = { 297,183, 464 }; ShellSort(array); } private void ShellSort(int[] array) { int n = array.Length; int gap = n / 2; int temp; while (gap > 0) { for (int i = 0; i + gap < n; i++) { int j = i + gap; temp = array[j]; while (j - gap >= 0 && temp < array[j - gap]) { array[j] = array[j - gap]; j = j - gap; } array[j] = temp; } gap = gap / 2; } } From google. Now simply add a console.writeline of the array after each insertion. EDIT: static void show_array_elements(int[] arr) { foreach (var element in arr) { Console.Write(element + " "); } Console.Write("\n"); } For printing the array- C# Sorting a list by amount of occurring letters in a string
Your edit is pretty much heads on, python would be a lot easier coding wise if you can use it :p- Runecrafting Botting
Private scripts- Count items in bank?
Make sure you hit refresh in the scripts tab of the client after you recompile. If you did that try restarting the client. - Road to 99 rcing with botting