

dynamicagil
VIP-
Posts
31 -
Joined
-
Last visited
-
Feedback
0%
Everything posted by dynamicagil
-
Updated a bunch of stuff, cleaned UI and fixed keys/buttons too
-
Thanks!! New update again for fixing some pathing and mining
-
New update dropped with tasks and breaking! Noticed OSbot didn't do breaks well as it was in combat and couldn't log out
-
@inkriptid check the update Edit: Noticed an issue with ranged combat style selection, fixing it now Edit2: Fixed and dharoks issue I noticed too
-
Added a large update with a whole bunch of new stuff. Specifically: Task list with level/time based swaps Gear set / weapon set changes Mage auto cast selection
-
No problem! Threw up one more build with better movement and an option for food that uses inventory ID of the food at X HP that can be toggled on. I'll change that tomorrow to be more dynamic with an actual food selection too. Spent a lot of time today on my other script but I'll make this a little smoother in like 8 hours from now
-
All sorted @inkriptid @Crazyjeffa Done! Will upload it in a sec. EDIT3: Nudge vs inv was slightly off, cleaned up and reuploaded
-
@Lost Panda Any other issues let me know!
-
Solved, twitch fix uploaded, also added a timer to twitch mainly as it was useful for debugging but it's good to see too
-
Will look into that right now, thought I'd sorted that but maybe I need to reduce or recheck it
-
Wasn't an issue for me but should be fixed now, added random periodic cam move or tab switch
-
I was updating the file with a fix for the issues above, try again! Uploaded a new version that should fix some of those issues! Let me know if it's still an issue (Keep the old version for now in case you need to revert)
-
Gotcha! Working on a fix for all 3 issues now. I should have them fixed today
-
Sure thing! Do you have the logs by chance? It'd be useful to see. No worries if not
-
Dynamic Vale Totems! Supports log basket and fletching knife! Also supports agility shortcuts! Supports auto upgrading to new logs. Discord web hooks. Moveable UI so it doesn't get in the way. Working on adding extra fail safes from bugs, let me know if you find any! Latest updates Fix edge case of not stopping if we had other kinds of logs Large update with better no agility support, smoother runs and better banking Fixed a bug with banking and log basket Fixed agility bug Fix decorating bug DynamicValeTotem.jar
-
Deleted for now as I need more space for attachments Just a custom safe spot cannonballer Go to your safespot, set quick prayers if wanted, setup cannon and start the script! Hit F1 to set safe spot, hit F3 to begin. Will auto grab your cannon, if it doesn't just click the cannon once or use the cannon spot hotkey. Still working on fixing up the loot for rare drops and auto attacking from the safe spot. Still great for AFK slayer etc
-
If anyone has addition suggestions or issues please mention
-
Czar scripts are solid!
-
First release, just a gem crab killer Will attempt to walk you to the gem crab from anywhere, and attack, use potions/prayer and follow through the caves. Download Link https://file.kiwi/7ef3d015#r6AggI-W5Vnz4DMG1OLxIA (Ran out of space for uploads to forums ) Latest update 8/29 Added more special config to optimize special use/randomness Cleaned up config Moved initial gui start pos Enhanced gui look Hotkey for min/max Added current state to gui World hopping Long breaking More optional features 8/27 Fixed mining of gemcrab shell Fixed bank pathing from certain spots (Working on adding gem bag) Moved UI to a better spot and fixed breaking UI 8/25 Added custom breaks, task manager Double potion drinks for prayer randomized Better remains detection Waypoint fixes More randomized special around set config 8/23 Config button + moved discord to new tab Custom AFK post crab UI cleanup Experimental Dharoks repair Full Dharok switch Better pathfinding for walking Cleaned up special + Dharoks use and items without specials 8/22 Added new features: Webhook support, task lists(supports swap at X level or time and stop on x/time), gear swaps(or weapon swaps) 8/18 Added ranged support with multiple pickup modes. (Pick up only after crab, before others see the ammo and no pickup) Added walk pathing assuming Children of the Sun is complete but not promise (Working on Water/twilight promise for new accounts to instant boost) 8/17 BIG new update, added banking and Children of the Sun quest completion! Next up: Waterfall and Twilight's Promise Previous Updates Huge update added - Fixed walking support, added Dharoks, prayer and all potion support! https://imgur.com/gzIoXja Updated download with some extra edits. Had an issue with the current training skill not updating (once XP was higher), added a GUI for special attack numbers Updated one more time for better tracking of skills Updated again so it can be started from anywhere (added walking) - Started by the bank on the island is ideal One last update to fix some bugs Latest images:
-
Any chance you can add pie baking via lunar? Nevermind!
-
Crabs not added?
-
Trial was good! Children Of The Sun had some small issues where after the first movement to follow the guard it stayed until the quest reset
-
final int MAX = 4, TIMEOUT = 7000; for (int i=1; i<=MAX; i++) { script.log("Positioner webWalk->" + dest + " try " + i); if (!script.walking.webWalk(dest)) { script.log("webWalk call failed"); continue; } long start = System.currentTimeMillis(); while (System.currentTimeMillis()-start < TIMEOUT) { if (script.myPosition().equals(dest)) { script.log("Arrived at tile: " + dest); return true; } script.sleep(150); } script.log("Timeout at pos: " + script.myPosition()); } This is what I was attempting
-
Any advice on using webwalking? Trying to use it to navigate to another position but it seems to return true but never moves?