Everything posted by Chris
-
Excellent Vorkath
I do Script Information to know: - For construction cape support [Teleport to POH], you must have it in the inventory when you start the script. - For Elite Fremennik Diary accounts you need to have Fremennik sea boots 4 in the inventory.
- 1037 replies
-
- premium
- moneymaking
- combat & slayer
- ranged
-
Tagged with:
- Excellent Dragons
-
Excellent Fungus
Correct you would need to go to the bots world and be at the bank. I will add paint indicators that I forgot to add: Showing current world If its muling or not. and whatever else I can add to make it easier
-
Excellent Fungus
v7.0 should be live. Script thread updated
-
Excellent Agility
I will have to take a look sometime this weekend when I find a account for it! Sorry for no reply!
-
Excellent Dragons
Some changes are going to be built in soon. If you notice the script not starting I am sorry I forgot to push extra bit of code!
-
My NPC Filter sometimes tries swapping to new NPC
private NPC getInteractingNPC() { return getNpcs().closest((Filter<NPC>) npc -> npc != null && npc.hasAction("Attack") && (myPlayer().isInteracting(npc) || (npc.isInteracting(myPlayer()) && !npc.isUnderAttack()))); } What this does: Looks for npc that has attack option AND (we are interacting with it OR it is interacting with us AND not under attack) Then for our main check we do public NPC getAvailableNPC() { NPC npc = getInteractingNPC(); return npc != null ? npc : PRIMARY_FILTER_HERE); } It will make a call to getInteractingNPC() if its null it will try to do your primary filter PRIMARY_FILTER_HERE can be substituted with what you have on the main thread. getNpcs().closest(n -> n.getName().contains("Demonic") && !n.isUnderAttack()); though I recommend adding more checks Then when you want to call NPC a = getAvailableNPC(); If (a != null && a.interact("Attack")) { // sleep until in combat ....... or w.e } @Brian
-
Excellent Vorkath
Yeah it's the mirror client being weird probably. Known issue among scripters
- 1037 replies
-
- premium
- moneymaking
- combat & slayer
- ranged
-
Tagged with:
-
Excellent Vorkath
lol that is weird. Glad you got it semi working for now. I'll make some improvements and bug test the potion issue.
- 1037 replies
-
- premium
- moneymaking
- combat & slayer
- ranged
-
Tagged with:
-
Excellent Dragons
I have 2 specific safespot locations for blue dragons taverly mode. Please review the 'Script Manual' on the main page (page 1) You must also start it at the safespot if you don't already have a save profile made. Please let me know if you are still having issues. Please fill out a bug report if so. Thanks, Chris
-
Excellent Vorkath
Was busy over the weekend. Though some other users are reporting it working fine which is throwing me off. Still wondering why it's not running perfect for you.
- 1037 replies
-
- premium
- moneymaking
- combat & slayer
- ranged
-
Tagged with:
-
Excellent Dragons
2 Day Progress Report By
-
Replace(Char, char) error
also rs using a different space character .replace(' ', '\u00A0')
-
Replace(Char, char) error
"The method interact(String) is undefined for the type String" Read your logic. name is now type of String It is not type of Player anymore. You now need to do player.interact("trade with") or whatever
-
Excellent Vorkath
Yes I have another user that has this happen on Mirror Mode. I'm currently busy with school work but will find time tonight / tomorrow to figure out the mirror mode bugs. There are still some issues with the client itself that need to be addressed. I'm also looking into improvements since the script is unusable for @rsafadi at the moment. Not sure why it's not running correctly in his case. If you feel you need a refund at this time please make a request in the proper subforum @rsafadi @Novicain Sorry for the problems
- 1037 replies
-
-
- 1
-
-
- premium
- moneymaking
- combat & slayer
- ranged
-
Tagged with:
-
Excellent Vorkath
Interesting. Is this with mirror mode or stealth injection? Because it should be drinking up one potion first.
- 1037 replies
-
- premium
- moneymaking
- combat & slayer
- ranged
-
Tagged with:
-
Excellent Vorkath
Output of Script Paint(Screenshot): Client Logger output (OSBot/Data/ExcellentVorkath/Logs/LatestFileSinceError): Can you see if there is any change when using it on Stealth Injection for like 10mins? I know there is supposed to be a Mirror Mode update soon to fix bugs on that mode. Yes let it change it then you can pause the script and apply resizable. I force fixed mode so there arent any script issues.. Blowpipe, void, salve (ei), accumulator, rune pouch, rune darts Whats your death spawn location? Are you only using prayer potion (2) ? I have it set to leave if it cannot continue after the kill (usually a 4 dose prayer pot). It should be drinking the first potion down to empty.. Are you using mirror mode?
- 1037 replies
-
- premium
- moneymaking
- combat & slayer
- ranged
-
Tagged with:
-
Excellent Dragons
Progress report sent by NotaBot#1508
- Excellent Vorkath
-
Excellent Vorkath
Client Version: Client Mode (Mirror/Injection): Client Display: (Fixed / Resizable): Description of Bug: GUI Settings: Output of Script Paint(Screenshot): Client Logger output (OSBot/Data/ExcellentVorkath/Logs/LatestFileSinceError): Interesting can you show me the exact name in game? screenshot join my discord and tag me https://discord.gg/CGHsd4a so we can talk easier
- 1037 replies
-
- premium
- moneymaking
- combat & slayer
- ranged
-
Tagged with:
- Excellent Fungus
-
Excellent Fungus
Well the whole idea for the muling i'm implementing is so you are at the bank on the bots world. (I am updating the paint to reflect: current world, if its muling, etc)
-
Excellent Fungus
CLI -script 962:arcTab_Charles@Mule_10000 arcTab = tablet mode Charles@Mule = searching for mule at the bank with name "Charles Mule" @ is replaced with a space 10000 = mule amount condition if current banked >= 10000 Current logic bot banking => mule conditioin check IF: MULE EXISTS && CONDITION MET -> WITHDRAW NOTED -> CLOSE BANK -> TRADE MULE AND WAIT FOR TRADE SCREEN -> MULE ACCOUNT CAN THEN TRADE SUPPLIES OVER IN THE SAME TRADE
-
Excellent Fungus
Big updates for v7.0: Changes to 'anti-pattern' actions [Delayed fatigue actions, Camera movement, etc] Improvements on pathing in general [bloom spot, to bank, and to swamp] Improvements on script performance Introduction to MULING MODE (All CLI parameter based) No pesky UI to keep clicking over and over. ARCEUSS_TABLET mode is now the default when you start the script. No need to start with the tab in the inventory anymore!
- Excellent Vorkath