Search the Community
Showing results for tags 'smithing'.
-
MaxGiantsFoundry Description: Efficiently completes Giants Foundry for up-to 270k smithing XP/H Supports all bars and alloy combinations Features: Supports all types of metal bars with customizable quantities and alloy mixes Supports all types of weapons and armour combinations Supports all moulds and intelligently selects the best combination for the highest weapon score! Will ignore moulds you do not have the smithing level to use Supports buckets for those without ice gloves Swiftly detects when there is a 'sweet spot' and strikes while active Adjustable antiban Easy to set-up GUI Will play human-like and make small delay mistakes. If you want near perfect play, enable 'menu manipulation in your client injection settings'. Antiban: Script uses human-like delays and AFKing Script utilizes unique account data to randomize patterns making every account unique Requirements: Completion of the Sleeping Giants quest Completion of the Giants Foundry tutorial Metal bars and/or metal items in bank Ice gloves (recommended). If you don't have these it will automatically detect this and use buckets of water. HIGHLY recommended to have menu manipulation enabled GUI Set-up: Reporting issues: If you encounter any issues with the script please take note of the console logs and provide them. If the issue is with a particular step in the script it is also helpful to know how I can best replicate this issue.
-
All bars - All items - Cannonballs - Double ammo mould - Ring of forging Features: Trains Smithing with a progressive task system. When the desired level has been reached or X amount of items have been processed, the bot will start the next task. You can save the task list and settings to a text file and load them quickly. Supports any equipment, for example, jewelry for teleporting. Supports the buying and selling of items in the Grand Exchange. Supports QuickStart. Supports Double ammo mould. Supports Ring of forging for Iron bar smelting. Requirements: If smithing items at Ruins of Camdozaal, have Below Ice Mountain quest completed. If smelting ores at Shilo Village, have Shilo Village quest completed. Instructions: Have ores or bars in the bank. If smelting Cannonballs, have Double ammo mould or Ammo mould in the bank. If smithing items, have Hammer in the bank. If smelting ores at Shilo Village, have enough Coins in the coffer. Items supported: Bars Ammo Items (all metals) Other Locations supported: Smelting Edgeville Al Kharid West Falador Shilo Village Neitiznot Mount Karuulm Mor Ul Rek Lovakengj East Ardougne Smithing West Varrock Ruins of Camdozaal East Varrock Port Khazard Void Knights' Outpost Yanille Blast Furnace Jatizso Seer's Village Nardah Isle of Souls Gallery: Proggies: QuickStart: Fill out the form and save the task list and settings to a text file. Open the text file and copy everything. Add -params "" at the end of your QuickStart file. Paste the settings inside the quotation marks. Example: -params "Tasks:1. Method: Smelting | Location: Edgeville | Item: Cannonball | Equipment: None | Goal: Reach level 50;2. Method: Smelting | Location: Edgeville | Item: Mithril bar | Equipment: None | Goal: Process 500 items;3. Method: Smithing | Location: Ruins of Camdozaal | Item: Mithril dagger | Equipment: None | Goal: Process 100 items;4. Method: Smithing | Location: Ruins of Camdozaal | Item: Mithril axe | Equipment: None | Goal: Process 200 items;5. Method: Smithing | Location: Ruins of Camdozaal | Item: Mithril mace | Equipment: None | Goal: Process 200 items # Settings:true;50;30;120;70;2" You can edit the text manually but it has to be perfect, otherwise it won't work. Click here to leave a review for the script
-
Double ammo mould - Low requirements Features: Trains Smithing by melting Steel bars into Cannonballs. When X amount of items have been processed or the desired level has been reached, the bot will start the next task. You can save the task list and settings to a text file and load them quickly. Supports any equipment, for example, jewelry for teleporting. Supports the buying and selling of items in the Grand Exchange. Supports QuickStart. Supports Double ammo mould and Ammo mould. Requirements: Have Dwarf Cannon quest completed. Have at least 35 Smithing. If using Shilo Village as the location, have Shilo Village quest completed. Instructions: Have Double ammo mould or Ammo mould in the bank. Have Steel bars in the bank. If using Shilo Village as the location, have enough Coins in the coffer. Locations supported: Edgeville Al Kharid West Falador Shilo Village Neitiznot Mount Karuulm Mor Ul Rek Lovakengj East Ardougne Gallery: QuickStart: Fill out the form and save the task list and settings to a text file. Open the text file and copy everything. Add -params "" at the end of your QuickStart file. Paste the settings inside the quotation marks. Example: -params "Tasks:1. Skill: Cannonballer | Location: Edgeville | Equipment: None | Goal: Reach level 50;2. Skill: Cannonballer | Location: Shilo Village | Equipment: None | Goal: Process 5000 items # Settings:true;50;30;120;70;2" You can edit the text manually but it has to be perfect, otherwise it won't work. Click here to leave a review for the script
-
A very reliable F2P smithing script with a great custom made Antiban! Features: - Multiple mouse algorithms - Worldhopping - Antiban - Chatting while worldhopping - Support for: Bronze, Iron, Steel, Mithril, Adamantite, Runite - Grabs hammer from bank when none in inventory - Every F2P item supported. How to start: - Put your client in Classic - non resizable - Have a hammer and bars in your bank To-do: - Add all F2P locations - Possibly add smelting Discord: https://discord.gg/NdcxhG5Jrv Media:
-
import org.dreambot.api.methods.interactive.GameObjects; import org.dreambot.api.methods.interactive.Players; import org.dreambot.api.script.AbstractScript; import org.dreambot.api.script.Category; import org.dreambot.api.script.ScriptManifest; import org.dreambot.api.script.listener.AnimationListener; import org.dreambot.api.wrappers.interactive.GameObject; import org.dreambot.api.wrappers.interactive.Player; @ScriptManifest(author = "Deep Slayer", name = "Testing script", version = 1.0, description = "for testing snippets", category = Category.MISC ) public class TestingPurposes extends AbstractScript implements AnimationListener { private long idleAnimationStartTime = -1; // Time when the idle animation starts private boolean finishedSmelting = false; @Override public void onPlayerAnimation(Player player, int animation, int animationDelay) { // Check if not animating if (Players.getLocal().getAnimation() == -1) { // If not animating record the time if (idleAnimationStartTime == -1) { idleAnimationStartTime = System.currentTimeMillis(); } else { // Check if it has been more than 2 seconds if (System.currentTimeMillis() - idleAnimationStartTime > 2000) { finishedSmelting = true; log("We are finished smelting"); } } } else { // Reset the timer if the player starts a new animation idleAnimationStartTime = -1; finishedSmelting = false; log("We are NOT finished smelting"); } } @Override public int onLoop() { GameObject furnace = GameObjects.closest("Furnace"); if (furnace != null && furnace.isOnScreen() && Players.getLocal().isStandingStill()) { if (finishedSmelting) { furnace.interact("Smelt"); sleep(2000, 2500); // Adjust sleep as necessary finishedSmelting = false; // Reset flag after interaction } } return 500; } }