

bigd123
Members-
Posts
46 -
Joined
-
Last visited
-
Feedback
100%
Everything posted by bigd123
-
I'm trying to run a script but the ads that are normally displayed are invisible, so I can't choose tabs or items without it opening the website of the ad(doesn't close the ad on the bot.) Anything I can do?
-
I don't see this under the sdn in combat anymore?
-
Any updates coming on this?
-
I've added the script here for people to test
-
Pasting the image in here it says"Your link has been automatically imbedded" and just disappears without showing an image. I've disabled my adblocker. Any solutions?
-
I'm aware, thats why I'm taking some steps. I'm most likely going to end up releasing this one free so I'll change that.
-
Hello! Ever wanted to be able to make 100k+ magic xp and 400k+ gp an hour? This is a simple way! Currently, it supports all jewelry types. I am looking for people to test it out and find errors and make suggestions.Hopefully I can release this on the SDN when I feel it has enough features. Features: Choose type of jewelry to enchant. Choose between, Staff, Battlestaff, and Mystic staff. Basic paint with info Pictures: https://imgur.com/a/stsrlRU Current issues: Must start near bank Things to add: Add icon and better paint(PM if you can help) Buying and selling automatically Let me know if you have any comments/suggestions/concerned. I can't seem to imbed images enchanter.jar
-
Makes a lot more sense logically like that should help with my new script I'm planning to release. Thank you so much
-
Thank you so much! What I was looking for.
-
I've been trying to wrap my head around enums, but what would i do then with the code you send? Would I put something after this: Spells.NormalSpells.case
-
?
-
In my script I want the user to be able to choose what spell to use, except I can't use a variable. Example: Spells.NormalSpells.LVL_4_ENCHANT would work but Spells.NormalSpells.spellvariable wouldn't. Sorry if this may be a simple question but help would be appreciated
-
I'm copy and pasting the conditional sleep all the times I need it, but it's giving me the error "The method condition() of type Enchanter must override or implement a supertype method." I've commented where the errors are. Code: private void withdrawAmulets() { ctx.log("Withdrawing Topaz amulets"); if (!ctx.getEquipment().isWearingItem(EquipmentSlot.WEAPON, "Staff of fire")) { if(ctx.getBank().withdraw("Topaz amulet", 26)){ new ConditionalSleep(1000,1250) { @Override public boolean condition() { return !needAmulets(); } }.sleep(); } } else { if(ctx.getBank().withdraw("Topaz amulet", 26)){ new ConditionalSleep(1000,1250) { //Syntax error, insert "}" to complete MethodBody @Override public boolean condition() { //The method condition() of type Enchanter must override or implement a supertype method return !needAmulets(); } }.sleep(); // Syntax error on token "}", delete this token } } // Syntax error on token "}", { expected } Help appreciated
-
Can I get a trial please?
-
Is there any solution? or do I just have it go to specific areas?
-
Well, I was hoping to have it find the closest place that has a fishing spot, not have one preset.
-
I have a simple fishing bot, if you don't have the items needed it goes to get the items from your bank then goes to fish. The only problem is I use npcs.closest("Rod fishing spot").interact("lure"); to find the fishing spot. When I'm at the bank it just crashes after getting the items/being started(if it has the items.) If I start the bot in view of the fishing spots with the items it works perfectly. Help is much appreciated
-
I've found the solution, and incase anyone find this and has the same issue, heres the solution: For the actuall enum thing is what I did: enum Fish { NET("Net fishing"), FLY("Fly fishing"); private String displayName; Fish(String displayName) { this.displayName = displayName; } @Override public String toString() { return displayName; } } This basically just uses the string in the parenthesis as what the name displayed in the gui dropdown. For using the value in the code, I did this: fish = gui.getSelectedFish(); if(fish == fish.FLY) { //code } Pretty self explanatory
-
I know its not TECHNICALLY restricted to just this client but it relates here anyway. I'm trying to have a simple gui where you choose what type of fishing you want done. Right now I just have it for net fishing and fly fishing. The first problem is, I want the enum to be displayed in the gui with a capitalized first letter and multi-line(Example "Fly Fishing".) I'm also having trouble getting what type the user selected in the main code and setting a variable depending on what it is. Here is the code: GUI enum enum Fish { NET, FLY; @Override public String toString() { return name().toLowerCase(); } } And the only code I have for the main part: fish = gui.getSelectedFish(); You can probably tell I'm using Explv's tutorial ?
-
Haha thanks, I'm sure yours is much better since I'm still learning. This is going to kind of be a bot for me just to learn alot of stuff.
-
I understand but not with the bot api