Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • Defiled

    Banned
    • Posts

      651
    • Joined

    • Last visited

    • Days Won

      16

    Reputation Activity

    1. Upvote
      Defiled got a reaction from apnasus in Gains Beggar [Customizable] - [Mule support] - [No requirements] - [QuickStart]   
      This is hilarious, I applaud you. 😂
    2. Upvote
      Defiled got a reaction from rcatando in DreamBot Client Won't Open Solution   
      How are they unclear? Please point the "unclear" parts so I can modify them
       
      Edit: I rewrote some of the text below to make it more clearer!
    3. Like
    4. Like
      Defiled got a reaction from ybs in [Grand Exchange] Buying & Selling Tutorial   
      Hello Everyone!
      This is a simple but yet useful guide to Buying & Selling on the Grand Exchange!
       
      Why would you want to Buy & Sell on the Grand Exchange?
      You could add this functionality to your scripts allowing them to buy resources  &  sell end-products. More Automation = More Laziness on your end!
      __________
      Let's start with the methods that are of use to us.
      getGrandExchange() - Gets the GrandExchange File to allow you to use its methods in your script. getArea(BankLocation.GRANDEXCHANGE).contains(getLocalPlayer()) - Detects if the bot/player is in a certain radius of the GrandExchange. getGrandExchange().open() - Opens the GrandExchange interface getGrandExchange().openBuyScreen(int slot) - Opens Buy slot (Slot has to return slotContainsItem(int slot) == false ) getGrandExchange().getFirstOpenSlot() - Checks for an open slot, and returns the first one it sees (Integer) getGrandExchange().getFirstOpenSlot() == -1 -  Can be used in an if statement/switch to detect if there are no open slots getGrandExchange().isBuyOpen() - A simple boolean that detects if the buy screen is open. getGrandExchange().isSellOpen() - A simple boolean that detects if the sell screen is open. getGrandExchange().buy(String itemName, int Quantity, int Price) - Does the whole buying process when getGrandExchange().isBuyOpen() == true getGrandExchange().sell(String itemName, int Quantity, int Price) - Does the whole selling process when getGrandExchange().isSellOpen() == true getGrandExchange().cancelOffer(int slot) - If slot contains item, then cancel the offer. getGrandExchange().cancelAll() - Newly added method by @Nuclear Nezz's DB Update which allows for cancellation of all offers.  
      Example Case: If your bot is currently doing a task, and you want it to go sell the end products of the task after reaching a certain threshold.
      - Add this when the task script is checking the inventory and/or bank: (explanation in code)
      Inventory: if(getInventory().count(String itemName or int itemNumber) == int itemQuantityWanted) { //Check if the task item has reached its threshold, if true it executes the startGE(); method startGE(); //Don't worry, we're going to be creating this method below! - Starts the GE Buying/Selling process } Bank: if(getBank().contains(String itemName or int itemNumber, int Quantity)) { //Check if the task item has reached its threshold, if true it executes the startGE(); method startGE();  //Don't worry, we're going to be creating this method below! - Starts the GE Buying/Selling process }  
       
      Making the startGE() method requires us to make a couple of methods to accomplish what we need (You can stuff it all in one method or you can do it in Nodes):
      We need these variables & methods:
      Variables: BankLocation GEBank = BankLocation.GRAND_EXCHANGE; //Assigns our GEBank variable the GE Location private static final itemToSell = 0000;  //Item ID //OR private static final itemToBuy = 0000; //Item ID private static final COINS = 995; //gets COINS Item ID int state; //We're going to be using this to set the state to Buying or Selling. int currentOpenBuySlot; //This variable will contain the slot that will be opened int currentOpenSellSlot; //This variable will contain the slot that will be opened Now some methods:
      Methods: private void walkToGE() { //Check if the player is at the GE (if false - walks there) if(!GEBank.getArea(5).contains(getLocalPlayer()) { // Checks if the player is in GE spreading 5 tiles getWalking().walk(GEBank.getCenter()); //walks to the center point of the GEBank //OR getWalking().walk(GEBank.getRandomTile()); //Randomizes point of arrival at the GEBank } private void fetchFunds() { //Only regarding the Buying state if(!getInventory().contains(COINS)) { //checks if the inventory contains COINS getBank().openClosest(); //Opens closest bank, you can set it to open(GEBank) if you want. getBank().withdrawAll(COINS); // withdraws all coins, you can set it to withdraw(COINS, int quantity) if you want. getBank().close(); //closes bank interface } } private void fetchItemsToSell() { if(!getInventory().count(itemToSell) == int itemQuantity) { getBank().openClosest(); //Opens closest bank, you can set it to open(GEBank) if you want. getBank().withdraw(itemToSell, itemQuantity);  getBank().close(); //closes bank interface } } private void openBuyScreen() { if(!getGrandExchange().isBuyOpen()) { //check if buy isn't open currentOpenSlot = getGrandExchange().getFirstOpenSlot(); //set currentOpenSlot to a random non-occupied slot getGrandExchange().openBuyScreen(currentOpenBuySlot); //opens the slot sleep(1000); //sleeps for a sec } } private void openSellScreen() { if(!getGrandExchange().isSellOpen()) { //check if sell isn't open currentOpenSlot = getGrandExchange().getFirstOpenSlot(); //set currentOpenSlot to a random non-occupied slot getGrandExchange().openSellScreen(currentOpenSellSlot); //opens the slot sleep(1000); //sleeps for a sec } } private void collectAll() { if(getGrandExchange().isReadyToCollect()) { //check if there are bought/sold items getGrandExchange().collect(); //clicks the collect button on the ge interface sleep(2000); //sleeps 2 secs - calculated } }  
      Now lets start with identifying what state of GE Trade you want:
      We'll set it to : If state = 1 then Buying is the state, if state = 2 then Selling is the state
      You can implement the states in your script GUI OR edit it manually!
      startGE() method will do the detection then execute the suitable method that we'll create after it!
      private void startGE() { switch(state) { // read what value state is set to case 1: //Buying state executeBuyer(): //method to start the buying process break; case 2: //Selling state executeSeller(); //method to start the selling process break; } } You can set the state using a setter:
          public void setState(String state) {         this.state= state;     }  
      Let's start with the execution methods:
       
      ExecuteBuyer:
      private void executeBuyer()   { walkToGE(); //if you're already at the GE, the script will ignore this line fetchFunds(); //if you already have coins in your inventory, the script will ignore this line collectAll(); //if there are successfully bought items, this will collect the items openBuyScreen(); //Detects if a buy screen isnt open and opens it getGrandExchange().buy(itemToBuy, int quantity, int price); //Buys the item /** This part is for canceling the order if the item isn't bought **/ sleep(2000); //sleeps for 2 secs because, it takes around 1.5 seconds for the item to return (Bought successfully or Still in the process) if(getGrandExchange().slotContainsItem(currentOpenSlot)) { //checks if the slot that we currently occupied contains an item/didn't sell getGrandExchange().cancelOffer(currentOpenSlot); //cancel the offer sleep(1000); //sleeps for 1 sec getGrandExchange().goBack(); } /** This part is stop the script from looping the buying process during the buying process. **/ if(getGrandExchange().isBuyOpen()) { // checks if buy screen is open sleepUntil(()-> getGrandExchange().isBuyOpen() == false, 2000); //sleeps/doesn't loop till the item is successfully bought and we're back to the main GE interface  }  }   
      ExecuteSeller:
      private void executeSeller()   { walkToGE(); //if you're already at the GE, the script will ignore this line fetchItemsToSell(); //if you already have the item(s) in your inventory, the script will ignore this line collectAll(); //if there are successfully sold items, this will collect the items openSellScreen(); //Detects if a sell screen isnt open and opens it getGrandExchange().sell(itemToSell, int quantity, int price); //sells the item /** This part is for canceling the order if the item isn't sold **/ sleep(2000); //sleeps for 2 secs because, it takes around 1.5 seconds for the item to return (Bought successfully or Still in the process) if(getGrandExchange().slotContainsItem(currentOpenSellSlot)) { //checks if the slot that we currently occupied contains an item/didn't sell getGrandExchange().cancelOffer(currentOpenSellSlot); //cancel the offer sleep(1000); //sleeps for 1 sec getGrandExchange().goBack(); } /** This part is stop the script from looping the selling process during the selling process. **/ if(getGrandExchange().isSellOpen()) { // checks if sell screen is open sleepUntil(()-> getGrandExchange().isSellOpen() == false, 2000); //sleeps/doesn't loop till the item is successfully sold and we're back to the main GE interface  }  }   
      and There you go! 
      The script will detect if the state is "Selling" or "Buying" then walks there, gets the coins/items, sells/buys, collects/cancels!
       
      Note: this guide is for single item buy/sell handling, although it does work for mass items, you just have to make a reader class, then read the items from a txt file.. then make a foreach loop/iterator to get the items then replace itemToSell/itemToBuy with the looped string ..
      EXTRA!!  
      Example:
      ReadFile Methods:
       
          List<String> allItems = new ArrayList<String>();      List<String> item = new ArrayList<String>();     List<String> price = new ArrayList<String>();     List<String> quantity = new ArrayList<String>();          public BuyerReader(String path) {         readFile(path);     }     public void readFile(String path) {         File file = new File(path);         if(file.exists()){             try {                  allItems = Files.readAllLines(file.toPath(),Charset.defaultCharset());             } catch (IOException ex) {                 ex.printStackTrace();             }           if(allItems.isEmpty())               return;         }         for(String line : allItems){             String [] res = line.split(";");             item.add(res[0]);             price.add(res[1]);             quantity.add(res[2]);                      }     }                    public List<String> getAllItems() {         return allItems;     }     public List<String> getItem() {         return item;     }     public List<String> getPrice() {         return price;     }     public List<String> getQuantity() {         return quantity;     } GetValues Iterator Variable:
      itemNames = Reader.getItem().iterator(); ReadReader Method:
          private String getItemName() { //This is for the itemname, you can do the same for quantity/price just parse it to int.         String itemn = null;         if(itemNames.hasNext()) {             String in = itemNames.next();             itemn = in;         } else {             stop();             log("No more items to read!");         }         return itemn;     }  
       
      If I have written something wrong, please tell me! I'm a human, and humans make mistakes  That's what we do best! 🖖
      Peace!
    5. Upvote
      Defiled got a reaction from KPOP LVR in ✨dMTA (700k GP/HR)/90K MAGIC EXP/HR ✨ Magic Training Arena ⚡️ High EXP/hr ⚡️ High GP/hr ⚡️Task System ⚡️ Reward Shop ⚡️ All 4 MiniGames ⚡️ Anti-Ban ⚡️Maze-Solving ⚡️ Cupboard Solver ⚡️ Awesome GUI   
      ✨dMTA ✨ Magic Training Arena ⚡ High EXP/hr ⚡ High GP/hr ⚡Task System ⚡ Reward Shop ⚡ All 4 MiniGames ⚡ Anti-Ban ⚡Maze-Solving ⚡ Cupboard Solver ⚡
      Note: This is the popular DefiledMTA Script, but Rewritten and Upgraded
      Last Updated: 23rd of February, 2023
      Brief Description:  One of the most popular Magic Training Arena script on the market. This script includes all 4 rooms in the Magic Training Arena and each room is scripted with longevity and rigidity in mind, nothing can break no matter what update goes through. The script also features heavy Anti-Pattern making each instance different than the other even if the same setup is used. The script has a very user-friendly GUI and a good looking paint.
       
      ✨Features✨
      - Games Included: All of them (Telekinetic Theatre, Alchemist's Playground, Enchantment Chamber, Creature Graveyard)
      - Supports all rewards
      - Fully automated (No need to specify which rooms to do, it'll do whatever is needed to get the reward required)
      - Extremely Randomized (including input) (AntiPattern)
      - Contains a multitude of modes
      - Good Looking GUI and Paint
      - Makes use of Path finding algorithms to solve Telekinetic Theatre (No Puzzle Update can break this script)
      - Contains Puzzle Solvers for Alchemist's Playground
      - Contains Bone Output Calculator and Eating Difference Calculator for Internal Use
      - Creature Graveyard: Inventory points listener where it checks the amount of points/fruit-exchange available in inventory, extremely efficient.
      - Casting Bones2Bananas while healing with Bones2Peaches
      - Reward Shop Rapid Task Purchasing
      - Telekinetic Theatre contains a maze solver that can solve any maze that Jagex decides to throw in. Credits for Maze Solver to @Articron ty bb
      - and much much more...
       
      ✨ Alchemist's Playground ✨


       
      ✨ Enchantment Chamber ✨

       
      ✨ Creature's Graveyard ✨


       
      ✨ Telekinetic Theatre ✨


       
       
      ✨ Video Showcase✨
       (This Video is Old, this was of DefiledMTA (previous iteration of dMTA)) 
       
      ✨ GUI & Paint ✨
      GUI:



       
      ✨ Informative and Inviting Paint ✨
       

      and more..
       
      ✨ Script Guide ✨

      https://defiled.dev/guides/dMTA
       
      UPVOTE & JOIN MY DISCORD SERVER & REPLY FOR A TRIAL!

       
    6. Like
      Defiled got a reaction from psychicguy89 in ✨dMTA (700k GP/HR)/90K MAGIC EXP/HR ✨ Magic Training Arena ⚡️ High EXP/hr ⚡️ High GP/hr ⚡️Task System ⚡️ Reward Shop ⚡️ All 4 MiniGames ⚡️ Anti-Ban ⚡️Maze-Solving ⚡️ Cupboard Solver ⚡️ Awesome GUI   
      ✨dMTA ✨ Magic Training Arena ⚡ High EXP/hr ⚡ High GP/hr ⚡Task System ⚡ Reward Shop ⚡ All 4 MiniGames ⚡ Anti-Ban ⚡Maze-Solving ⚡ Cupboard Solver ⚡
      Note: This is the popular DefiledMTA Script, but Rewritten and Upgraded
      Last Updated: 23rd of February, 2023
      Brief Description:  One of the most popular Magic Training Arena script on the market. This script includes all 4 rooms in the Magic Training Arena and each room is scripted with longevity and rigidity in mind, nothing can break no matter what update goes through. The script also features heavy Anti-Pattern making each instance different than the other even if the same setup is used. The script has a very user-friendly GUI and a good looking paint.
       
      ✨Features✨
      - Games Included: All of them (Telekinetic Theatre, Alchemist's Playground, Enchantment Chamber, Creature Graveyard)
      - Supports all rewards
      - Fully automated (No need to specify which rooms to do, it'll do whatever is needed to get the reward required)
      - Extremely Randomized (including input) (AntiPattern)
      - Contains a multitude of modes
      - Good Looking GUI and Paint
      - Makes use of Path finding algorithms to solve Telekinetic Theatre (No Puzzle Update can break this script)
      - Contains Puzzle Solvers for Alchemist's Playground
      - Contains Bone Output Calculator and Eating Difference Calculator for Internal Use
      - Creature Graveyard: Inventory points listener where it checks the amount of points/fruit-exchange available in inventory, extremely efficient.
      - Casting Bones2Bananas while healing with Bones2Peaches
      - Reward Shop Rapid Task Purchasing
      - Telekinetic Theatre contains a maze solver that can solve any maze that Jagex decides to throw in. Credits for Maze Solver to @Articron ty bb
      - and much much more...
       
      ✨ Alchemist's Playground ✨


       
      ✨ Enchantment Chamber ✨

       
      ✨ Creature's Graveyard ✨


       
      ✨ Telekinetic Theatre ✨


       
       
      ✨ Video Showcase✨
       (This Video is Old, this was of DefiledMTA (previous iteration of dMTA)) 
       
      ✨ GUI & Paint ✨
      GUI:



       
      ✨ Informative and Inviting Paint ✨
       

      and more..
       
      ✨ Script Guide ✨

      https://defiled.dev/guides/dMTA
       
      UPVOTE & JOIN MY DISCORD SERVER & REPLY FOR A TRIAL!

       
    7. Upvote
      Defiled got a reaction from ToDaMoon in ​ 💰 ​dCasino ​ 💰 ​14+ Games ​ 💰 ​Legit & Rigged​ 💰 ​Legacy Dicing 💰 ​Spammer ​ 💰 ​Mod Detection ​ 💰 & More ​   
      Legitimate & Rigged Gambling 💰 Live Control 💰 Built-In Mod 2K List 💰 14+ Games 💰 Mod Detection  
       
      Note: This is the popular DefiledDicer Script, but Rewritten and Upgraded
      Last Updated: October 18, 2021
      Brief Description: The Most Advanced Gambling Script on DreamBot. Includes: Legacy Dicing & Command Games (14 Games+)
       

       
      Moderator List Included
      2500+ Moderator Names List Built-in
      Moderator lists are worth a lot of money, & you're getting it free included with the script.
      You can even add in your own Moderator Names and increase your grasp on rented and normal player moderators!
       

       
      14+ Command Games
      14 Games, Not Including Custom Games!
      I have included over 14 games in the script, ranging from classics to new and enjoyable games
      to fuel the addiction of in-game gamblers! The script also includes the ability to customize every game,
       which you will find out upon first loading the script.
       

       
       
      Legacy Dicing Included
      A Classic Feature for a Classical Person
      Do you dislike command games, prefer simplicity and ease of use, and miss the old days of gambling?
      No problem! dCasino includes a Legacy Dicing feature which allows you to play High, Mid, Low Dicing without commands!
       

       
      Rigged & Legitimate
      You can be a Honest Poor Man or a Scamming Rich Man
      dCasino doesn't discriminate! Everything is setup to be legitimate, but with a few tools with
      every game that can make it as skewed towards you as you wish! You can even look legitimate but be rigged all a-long
       
       

       
      Live Control
      Control Real-time Sessions, Infract People, Log Trades, & More!
      I have included a panel in the script that you can use to take full advantage of your gambling bot,
      without the need to stop or pause the script! Add people to the ignore list, Add new moderators, Add new mules, etc...
       

       
      Extreme Configurability
      From Altering Messages to Mod Evasion Techniques
      The script contains a HUGE amount of options and configurations that can be skewed any way you want!
      This is the reason I allow infinite instances of my scripts, it's because of the configurability. No 2 instance can be equal!
       

       
      Muling Support
      Trade, & Get a Pre-set Amount
      The script allows you to identify Mules in real time and trade them
      to give a set amount of gold which can be modified through Live Control.
       

       
      Anti-Lure
      Can't Be Removed From Area
      No matter how hard lurers try, they won't & can't pull you away from your area. 
      Want to gamble on a PVP world? this is the script for you!
       

       
      Timed Actions & Changes
      Executes Actions Every Specified Amount of Time
      Do you want to change Areas every once in a while? You can do that on dCasino!
      Do you want to change Worlds every one in a while? You can also do that on dCasino!
       

       
      Message Customizability
      There's a Message For Everything
      On dCasino, you'll find that you can set up a message for any sort of situation! Not Enough GP for a Session?
      There's a message for that! Are Items not accepted? there's a message for that too! & Much much more!
       

       
      Numerous Mod Evasion Features
      Log-out, Hop, Change Area
      On dCasino, not only can you find 3 ways to evade moderators... It's a darn fast reaction.
      Real Mod Reaction: I didn't even have the chance to see it!
      All the icons above are made by: Flaticon.com
       
      & More...
      If I were to list every feature, this post will span over 2 pages.
       
      Video Showcase 
      A video showing dCasino running a game of Dice Duel
       
      dCasino GUI
      Warm & Easy-to-use Interface

       
      dCasino Live Control
      No Need To Stop, Just Take Control

       
      dCasino Proggies
      For more proggies, Join My Discord Server & visit the #proggies channel

       
      DefiledBot Script Stats for user "Defiled"

       
      dCasino Guide
      In-depth Script Guide

      Click the image above to go to the Script Guide 
       
      dCasino Win/Loss Chances
      Console Tests (Alpha Tests)
       
      dCasino Update Log
      Be up to date with what has been patched, added, & removed.
       
      dCasino Trial
      Wanna see what's down there before jumping in? Get a trial!

       
      To Request a Trial You Must Upvote & Comment on this Thread & Then Use the Trial Bot Found on My Discord Server.
      To Join My Discord Server Click The Image Above or Click Here
       
      ______________________________________________
      !!! DISCLAIMER !!!
      ______________________________________________
      Gambling or In-game Dicing is a VERY competitive field due to its extreme profitability, so you will encounter competitors who will try to shut you down through rented PMods or Mass Reporting. Therefore gambling or dicing bots overall have a short life span, so your goal should be to monitor the bots and mule frequently! also you should always seek better areas to gamble at other than grand exchange as the grand exchange is a hot zone (monitored by Jagex and has UNETHICAL competitors)
      The information above should not scare you in anyway but it should boost your vigilance and your focus. Gambling/Dicing is highly profitable and can net you in the 10s of millions or even 100s of millions per hour.
       
       
      RENT OR PURCHASE
      Rent: $18.95 (or $17 with V.I.P and/or Sponsor) first month then $19.99/mo
      Buy: $99.99 One-time Payment (or $89.99 One-time Payment with V.I.P and/or Sponsor)
       
    8. Upvote
      Defiled got a reaction from snowywx in ​ 💰 ​dCasino ​ 💰 ​14+ Games ​ 💰 ​Legit & Rigged​ 💰 ​Legacy Dicing 💰 ​Spammer ​ 💰 ​Mod Detection ​ 💰 & More ​   
      Legitimate & Rigged Gambling 💰 Live Control 💰 Built-In Mod 2K List 💰 14+ Games 💰 Mod Detection  
       
      Note: This is the popular DefiledDicer Script, but Rewritten and Upgraded
      Last Updated: October 18, 2021
      Brief Description: The Most Advanced Gambling Script on DreamBot. Includes: Legacy Dicing & Command Games (14 Games+)
       

       
      Moderator List Included
      2500+ Moderator Names List Built-in
      Moderator lists are worth a lot of money, & you're getting it free included with the script.
      You can even add in your own Moderator Names and increase your grasp on rented and normal player moderators!
       

       
      14+ Command Games
      14 Games, Not Including Custom Games!
      I have included over 14 games in the script, ranging from classics to new and enjoyable games
      to fuel the addiction of in-game gamblers! The script also includes the ability to customize every game,
       which you will find out upon first loading the script.
       

       
       
      Legacy Dicing Included
      A Classic Feature for a Classical Person
      Do you dislike command games, prefer simplicity and ease of use, and miss the old days of gambling?
      No problem! dCasino includes a Legacy Dicing feature which allows you to play High, Mid, Low Dicing without commands!
       

       
      Rigged & Legitimate
      You can be a Honest Poor Man or a Scamming Rich Man
      dCasino doesn't discriminate! Everything is setup to be legitimate, but with a few tools with
      every game that can make it as skewed towards you as you wish! You can even look legitimate but be rigged all a-long
       
       

       
      Live Control
      Control Real-time Sessions, Infract People, Log Trades, & More!
      I have included a panel in the script that you can use to take full advantage of your gambling bot,
      without the need to stop or pause the script! Add people to the ignore list, Add new moderators, Add new mules, etc...
       

       
      Extreme Configurability
      From Altering Messages to Mod Evasion Techniques
      The script contains a HUGE amount of options and configurations that can be skewed any way you want!
      This is the reason I allow infinite instances of my scripts, it's because of the configurability. No 2 instance can be equal!
       

       
      Muling Support
      Trade, & Get a Pre-set Amount
      The script allows you to identify Mules in real time and trade them
      to give a set amount of gold which can be modified through Live Control.
       

       
      Anti-Lure
      Can't Be Removed From Area
      No matter how hard lurers try, they won't & can't pull you away from your area. 
      Want to gamble on a PVP world? this is the script for you!
       

       
      Timed Actions & Changes
      Executes Actions Every Specified Amount of Time
      Do you want to change Areas every once in a while? You can do that on dCasino!
      Do you want to change Worlds every one in a while? You can also do that on dCasino!
       

       
      Message Customizability
      There's a Message For Everything
      On dCasino, you'll find that you can set up a message for any sort of situation! Not Enough GP for a Session?
      There's a message for that! Are Items not accepted? there's a message for that too! & Much much more!
       

       
      Numerous Mod Evasion Features
      Log-out, Hop, Change Area
      On dCasino, not only can you find 3 ways to evade moderators... It's a darn fast reaction.
      Real Mod Reaction: I didn't even have the chance to see it!
      All the icons above are made by: Flaticon.com
       
      & More...
      If I were to list every feature, this post will span over 2 pages.
       
      Video Showcase 
      A video showing dCasino running a game of Dice Duel
       
      dCasino GUI
      Warm & Easy-to-use Interface

       
      dCasino Live Control
      No Need To Stop, Just Take Control

       
      dCasino Proggies
      For more proggies, Join My Discord Server & visit the #proggies channel

       
      DefiledBot Script Stats for user "Defiled"

       
      dCasino Guide
      In-depth Script Guide

      Click the image above to go to the Script Guide 
       
      dCasino Win/Loss Chances
      Console Tests (Alpha Tests)
       
      dCasino Update Log
      Be up to date with what has been patched, added, & removed.
       
      dCasino Trial
      Wanna see what's down there before jumping in? Get a trial!

       
      To Request a Trial You Must Upvote & Comment on this Thread & Then Use the Trial Bot Found on My Discord Server.
      To Join My Discord Server Click The Image Above or Click Here
       
      ______________________________________________
      !!! DISCLAIMER !!!
      ______________________________________________
      Gambling or In-game Dicing is a VERY competitive field due to its extreme profitability, so you will encounter competitors who will try to shut you down through rented PMods or Mass Reporting. Therefore gambling or dicing bots overall have a short life span, so your goal should be to monitor the bots and mule frequently! also you should always seek better areas to gamble at other than grand exchange as the grand exchange is a hot zone (monitored by Jagex and has UNETHICAL competitors)
      The information above should not scare you in anyway but it should boost your vigilance and your focus. Gambling/Dicing is highly profitable and can net you in the 10s of millions or even 100s of millions per hour.
       
       
      RENT OR PURCHASE
      Rent: $18.95 (or $17 with V.I.P and/or Sponsor) first month then $19.99/mo
      Buy: $99.99 One-time Payment (or $89.99 One-time Payment with V.I.P and/or Sponsor)
       
    9. Upvote
      Defiled got a reaction from Bender723 in ​ 💰 ​dCasino ​ 💰 ​14+ Games ​ 💰 ​Legit & Rigged​ 💰 ​Legacy Dicing 💰 ​Spammer ​ 💰 ​Mod Detection ​ 💰 & More ​   
      Legitimate & Rigged Gambling 💰 Live Control 💰 Built-In Mod 2K List 💰 14+ Games 💰 Mod Detection  
       
      Note: This is the popular DefiledDicer Script, but Rewritten and Upgraded
      Last Updated: October 18, 2021
      Brief Description: The Most Advanced Gambling Script on DreamBot. Includes: Legacy Dicing & Command Games (14 Games+)
       

       
      Moderator List Included
      2500+ Moderator Names List Built-in
      Moderator lists are worth a lot of money, & you're getting it free included with the script.
      You can even add in your own Moderator Names and increase your grasp on rented and normal player moderators!
       

       
      14+ Command Games
      14 Games, Not Including Custom Games!
      I have included over 14 games in the script, ranging from classics to new and enjoyable games
      to fuel the addiction of in-game gamblers! The script also includes the ability to customize every game,
       which you will find out upon first loading the script.
       

       
       
      Legacy Dicing Included
      A Classic Feature for a Classical Person
      Do you dislike command games, prefer simplicity and ease of use, and miss the old days of gambling?
      No problem! dCasino includes a Legacy Dicing feature which allows you to play High, Mid, Low Dicing without commands!
       

       
      Rigged & Legitimate
      You can be a Honest Poor Man or a Scamming Rich Man
      dCasino doesn't discriminate! Everything is setup to be legitimate, but with a few tools with
      every game that can make it as skewed towards you as you wish! You can even look legitimate but be rigged all a-long
       
       

       
      Live Control
      Control Real-time Sessions, Infract People, Log Trades, & More!
      I have included a panel in the script that you can use to take full advantage of your gambling bot,
      without the need to stop or pause the script! Add people to the ignore list, Add new moderators, Add new mules, etc...
       

       
      Extreme Configurability
      From Altering Messages to Mod Evasion Techniques
      The script contains a HUGE amount of options and configurations that can be skewed any way you want!
      This is the reason I allow infinite instances of my scripts, it's because of the configurability. No 2 instance can be equal!
       

       
      Muling Support
      Trade, & Get a Pre-set Amount
      The script allows you to identify Mules in real time and trade them
      to give a set amount of gold which can be modified through Live Control.
       

       
      Anti-Lure
      Can't Be Removed From Area
      No matter how hard lurers try, they won't & can't pull you away from your area. 
      Want to gamble on a PVP world? this is the script for you!
       

       
      Timed Actions & Changes
      Executes Actions Every Specified Amount of Time
      Do you want to change Areas every once in a while? You can do that on dCasino!
      Do you want to change Worlds every one in a while? You can also do that on dCasino!
       

       
      Message Customizability
      There's a Message For Everything
      On dCasino, you'll find that you can set up a message for any sort of situation! Not Enough GP for a Session?
      There's a message for that! Are Items not accepted? there's a message for that too! & Much much more!
       

       
      Numerous Mod Evasion Features
      Log-out, Hop, Change Area
      On dCasino, not only can you find 3 ways to evade moderators... It's a darn fast reaction.
      Real Mod Reaction: I didn't even have the chance to see it!
      All the icons above are made by: Flaticon.com
       
      & More...
      If I were to list every feature, this post will span over 2 pages.
       
      Video Showcase 
      A video showing dCasino running a game of Dice Duel
       
      dCasino GUI
      Warm & Easy-to-use Interface

       
      dCasino Live Control
      No Need To Stop, Just Take Control

       
      dCasino Proggies
      For more proggies, Join My Discord Server & visit the #proggies channel

       
      DefiledBot Script Stats for user "Defiled"

       
      dCasino Guide
      In-depth Script Guide

      Click the image above to go to the Script Guide 
       
      dCasino Win/Loss Chances
      Console Tests (Alpha Tests)
       
      dCasino Update Log
      Be up to date with what has been patched, added, & removed.
       
      dCasino Trial
      Wanna see what's down there before jumping in? Get a trial!

       
      To Request a Trial You Must Upvote & Comment on this Thread & Then Use the Trial Bot Found on My Discord Server.
      To Join My Discord Server Click The Image Above or Click Here
       
      ______________________________________________
      !!! DISCLAIMER !!!
      ______________________________________________
      Gambling or In-game Dicing is a VERY competitive field due to its extreme profitability, so you will encounter competitors who will try to shut you down through rented PMods or Mass Reporting. Therefore gambling or dicing bots overall have a short life span, so your goal should be to monitor the bots and mule frequently! also you should always seek better areas to gamble at other than grand exchange as the grand exchange is a hot zone (monitored by Jagex and has UNETHICAL competitors)
      The information above should not scare you in anyway but it should boost your vigilance and your focus. Gambling/Dicing is highly profitable and can net you in the 10s of millions or even 100s of millions per hour.
       
       
      RENT OR PURCHASE
      Rent: $18.95 (or $17 with V.I.P and/or Sponsor) first month then $19.99/mo
      Buy: $99.99 One-time Payment (or $89.99 One-time Payment with V.I.P and/or Sponsor)
       
    10. Upvote
      Defiled got a reaction from oiichow in ​ 💰 ​dCasino ​ 💰 ​14+ Games ​ 💰 ​Legit & Rigged​ 💰 ​Legacy Dicing 💰 ​Spammer ​ 💰 ​Mod Detection ​ 💰 & More ​   
      Legitimate & Rigged Gambling 💰 Live Control 💰 Built-In Mod 2K List 💰 14+ Games 💰 Mod Detection  
       
      Note: This is the popular DefiledDicer Script, but Rewritten and Upgraded
      Last Updated: October 18, 2021
      Brief Description: The Most Advanced Gambling Script on DreamBot. Includes: Legacy Dicing & Command Games (14 Games+)
       

       
      Moderator List Included
      2500+ Moderator Names List Built-in
      Moderator lists are worth a lot of money, & you're getting it free included with the script.
      You can even add in your own Moderator Names and increase your grasp on rented and normal player moderators!
       

       
      14+ Command Games
      14 Games, Not Including Custom Games!
      I have included over 14 games in the script, ranging from classics to new and enjoyable games
      to fuel the addiction of in-game gamblers! The script also includes the ability to customize every game,
       which you will find out upon first loading the script.
       

       
       
      Legacy Dicing Included
      A Classic Feature for a Classical Person
      Do you dislike command games, prefer simplicity and ease of use, and miss the old days of gambling?
      No problem! dCasino includes a Legacy Dicing feature which allows you to play High, Mid, Low Dicing without commands!
       

       
      Rigged & Legitimate
      You can be a Honest Poor Man or a Scamming Rich Man
      dCasino doesn't discriminate! Everything is setup to be legitimate, but with a few tools with
      every game that can make it as skewed towards you as you wish! You can even look legitimate but be rigged all a-long
       
       

       
      Live Control
      Control Real-time Sessions, Infract People, Log Trades, & More!
      I have included a panel in the script that you can use to take full advantage of your gambling bot,
      without the need to stop or pause the script! Add people to the ignore list, Add new moderators, Add new mules, etc...
       

       
      Extreme Configurability
      From Altering Messages to Mod Evasion Techniques
      The script contains a HUGE amount of options and configurations that can be skewed any way you want!
      This is the reason I allow infinite instances of my scripts, it's because of the configurability. No 2 instance can be equal!
       

       
      Muling Support
      Trade, & Get a Pre-set Amount
      The script allows you to identify Mules in real time and trade them
      to give a set amount of gold which can be modified through Live Control.
       

       
      Anti-Lure
      Can't Be Removed From Area
      No matter how hard lurers try, they won't & can't pull you away from your area. 
      Want to gamble on a PVP world? this is the script for you!
       

       
      Timed Actions & Changes
      Executes Actions Every Specified Amount of Time
      Do you want to change Areas every once in a while? You can do that on dCasino!
      Do you want to change Worlds every one in a while? You can also do that on dCasino!
       

       
      Message Customizability
      There's a Message For Everything
      On dCasino, you'll find that you can set up a message for any sort of situation! Not Enough GP for a Session?
      There's a message for that! Are Items not accepted? there's a message for that too! & Much much more!
       

       
      Numerous Mod Evasion Features
      Log-out, Hop, Change Area
      On dCasino, not only can you find 3 ways to evade moderators... It's a darn fast reaction.
      Real Mod Reaction: I didn't even have the chance to see it!
      All the icons above are made by: Flaticon.com
       
      & More...
      If I were to list every feature, this post will span over 2 pages.
       
      Video Showcase 
      A video showing dCasino running a game of Dice Duel
       
      dCasino GUI
      Warm & Easy-to-use Interface

       
      dCasino Live Control
      No Need To Stop, Just Take Control

       
      dCasino Proggies
      For more proggies, Join My Discord Server & visit the #proggies channel

       
      DefiledBot Script Stats for user "Defiled"

       
      dCasino Guide
      In-depth Script Guide

      Click the image above to go to the Script Guide 
       
      dCasino Win/Loss Chances
      Console Tests (Alpha Tests)
       
      dCasino Update Log
      Be up to date with what has been patched, added, & removed.
       
      dCasino Trial
      Wanna see what's down there before jumping in? Get a trial!

       
      To Request a Trial You Must Upvote & Comment on this Thread & Then Use the Trial Bot Found on My Discord Server.
      To Join My Discord Server Click The Image Above or Click Here
       
      ______________________________________________
      !!! DISCLAIMER !!!
      ______________________________________________
      Gambling or In-game Dicing is a VERY competitive field due to its extreme profitability, so you will encounter competitors who will try to shut you down through rented PMods or Mass Reporting. Therefore gambling or dicing bots overall have a short life span, so your goal should be to monitor the bots and mule frequently! also you should always seek better areas to gamble at other than grand exchange as the grand exchange is a hot zone (monitored by Jagex and has UNETHICAL competitors)
      The information above should not scare you in anyway but it should boost your vigilance and your focus. Gambling/Dicing is highly profitable and can net you in the 10s of millions or even 100s of millions per hour.
       
       
      RENT OR PURCHASE
      Rent: $18.95 (or $17 with V.I.P and/or Sponsor) first month then $19.99/mo
      Buy: $99.99 One-time Payment (or $89.99 One-time Payment with V.I.P and/or Sponsor)
       
    11. Upvote
      Defiled got a reaction from Bernardzwijn1 in ✨dMTA (700k GP/HR)/90K MAGIC EXP/HR ✨ Magic Training Arena ⚡️ High EXP/hr ⚡️ High GP/hr ⚡️Task System ⚡️ Reward Shop ⚡️ All 4 MiniGames ⚡️ Anti-Ban ⚡️Maze-Solving ⚡️ Cupboard Solver ⚡️ Awesome GUI   
      ✨dMTA ✨ Magic Training Arena ⚡ High EXP/hr ⚡ High GP/hr ⚡Task System ⚡ Reward Shop ⚡ All 4 MiniGames ⚡ Anti-Ban ⚡Maze-Solving ⚡ Cupboard Solver ⚡
      Note: This is the popular DefiledMTA Script, but Rewritten and Upgraded
      Last Updated: 23rd of February, 2023
      Brief Description:  One of the most popular Magic Training Arena script on the market. This script includes all 4 rooms in the Magic Training Arena and each room is scripted with longevity and rigidity in mind, nothing can break no matter what update goes through. The script also features heavy Anti-Pattern making each instance different than the other even if the same setup is used. The script has a very user-friendly GUI and a good looking paint.
       
      ✨Features✨
      - Games Included: All of them (Telekinetic Theatre, Alchemist's Playground, Enchantment Chamber, Creature Graveyard)
      - Supports all rewards
      - Fully automated (No need to specify which rooms to do, it'll do whatever is needed to get the reward required)
      - Extremely Randomized (including input) (AntiPattern)
      - Contains a multitude of modes
      - Good Looking GUI and Paint
      - Makes use of Path finding algorithms to solve Telekinetic Theatre (No Puzzle Update can break this script)
      - Contains Puzzle Solvers for Alchemist's Playground
      - Contains Bone Output Calculator and Eating Difference Calculator for Internal Use
      - Creature Graveyard: Inventory points listener where it checks the amount of points/fruit-exchange available in inventory, extremely efficient.
      - Casting Bones2Bananas while healing with Bones2Peaches
      - Reward Shop Rapid Task Purchasing
      - Telekinetic Theatre contains a maze solver that can solve any maze that Jagex decides to throw in. Credits for Maze Solver to @Articron ty bb
      - and much much more...
       
      ✨ Alchemist's Playground ✨


       
      ✨ Enchantment Chamber ✨

       
      ✨ Creature's Graveyard ✨


       
      ✨ Telekinetic Theatre ✨


       
       
      ✨ Video Showcase✨
       (This Video is Old, this was of DefiledMTA (previous iteration of dMTA)) 
       
      ✨ GUI & Paint ✨
      GUI:



       
      ✨ Informative and Inviting Paint ✨
       

      and more..
       
      ✨ Script Guide ✨

      https://defiled.dev/guides/dMTA
       
      UPVOTE & JOIN MY DISCORD SERVER & REPLY FOR A TRIAL!

       
    12. Like
      Defiled got a reaction from Fitzie in ✨dMTA (700k GP/HR)/90K MAGIC EXP/HR ✨ Magic Training Arena ⚡️ High EXP/hr ⚡️ High GP/hr ⚡️Task System ⚡️ Reward Shop ⚡️ All 4 MiniGames ⚡️ Anti-Ban ⚡️Maze-Solving ⚡️ Cupboard Solver ⚡️ Awesome GUI   
      ✨dMTA ✨ Magic Training Arena ⚡ High EXP/hr ⚡ High GP/hr ⚡Task System ⚡ Reward Shop ⚡ All 4 MiniGames ⚡ Anti-Ban ⚡Maze-Solving ⚡ Cupboard Solver ⚡
      Note: This is the popular DefiledMTA Script, but Rewritten and Upgraded
      Last Updated: 23rd of February, 2023
      Brief Description:  One of the most popular Magic Training Arena script on the market. This script includes all 4 rooms in the Magic Training Arena and each room is scripted with longevity and rigidity in mind, nothing can break no matter what update goes through. The script also features heavy Anti-Pattern making each instance different than the other even if the same setup is used. The script has a very user-friendly GUI and a good looking paint.
       
      ✨Features✨
      - Games Included: All of them (Telekinetic Theatre, Alchemist's Playground, Enchantment Chamber, Creature Graveyard)
      - Supports all rewards
      - Fully automated (No need to specify which rooms to do, it'll do whatever is needed to get the reward required)
      - Extremely Randomized (including input) (AntiPattern)
      - Contains a multitude of modes
      - Good Looking GUI and Paint
      - Makes use of Path finding algorithms to solve Telekinetic Theatre (No Puzzle Update can break this script)
      - Contains Puzzle Solvers for Alchemist's Playground
      - Contains Bone Output Calculator and Eating Difference Calculator for Internal Use
      - Creature Graveyard: Inventory points listener where it checks the amount of points/fruit-exchange available in inventory, extremely efficient.
      - Casting Bones2Bananas while healing with Bones2Peaches
      - Reward Shop Rapid Task Purchasing
      - Telekinetic Theatre contains a maze solver that can solve any maze that Jagex decides to throw in. Credits for Maze Solver to @Articron ty bb
      - and much much more...
       
      ✨ Alchemist's Playground ✨


       
      ✨ Enchantment Chamber ✨

       
      ✨ Creature's Graveyard ✨


       
      ✨ Telekinetic Theatre ✨


       
       
      ✨ Video Showcase✨
       (This Video is Old, this was of DefiledMTA (previous iteration of dMTA)) 
       
      ✨ GUI & Paint ✨
      GUI:



       
      ✨ Informative and Inviting Paint ✨
       

      and more..
       
      ✨ Script Guide ✨

      https://defiled.dev/guides/dMTA
       
      UPVOTE & JOIN MY DISCORD SERVER & REPLY FOR A TRIAL!

       
    13. Like
      Defiled got a reaction from xhannyah in how to not get caught/banned using scripts   
      No one knows what flags Jagex's systems and you never will unless a whistleblower comes out.
      But what you should know is that Jagex doesn't just ban you straight away if you're doing something suspicious.. The suspicious actions pile up to a point where it either reaches the team and they vet you or you get insta-permed if its through the roof.
      Datacenter Proxies are known to be one of the flags because normal players tend not to use them. also most botters that use proxies often go with Datacenter proxies, therefore when Jagex detects that you're using one... you'll be raising one of the flags. also when 1 bot is caught with a Datacenter IP, wave your arm to the other proxies that are in the same subnet of the first ip. so like consider the subnet like this:
      1.0.0.1
      1.0.0.2
      ...
      if the first one gets banned, the second one is likely to be banned as well (if it's Datacenter of course, which is easy to know (through the ISP details)).
       
      A lot of things matter in Botting.. and one of the biggest things is of course the quality of the script. A lot of scripters wave the "Anti-ban" feature which is just a marketing play. Good scripts would incorporate real-player actions like "Far-clicking bank or moving the mouse outside the screen every now and then (to simulate click something outside the screen) or 5 minute idle break) into the script's actions code instead of a "anti-ban system".
      Another big thing is the Garbage Collector... since Dreambot scripts are run on the same JVM as the Client, changes in the Garbage Collector frequency will prompt flags. So a scripter must keep that in mind and try to make his or her's script lighter and try to not throw objects everywhere and to not take the "nullifying an object" lightly.
      Honourable mentions: Mouse Pattern, Mouse Injection, Repetitive Readable-Pattern Movements, Robot-like movements (Camera, Mouse, etc...), Keyboard Events Execution.
      There are tons of ways to make Botting more viable which I discussed in a thread I made a year back I think but I will make an updated one for sure.
    14. Like
    15. Like
    16. Like
    17. Like
      Defiled got a reaction from ravenjwz in ​ 💰 ​dCasino ​ 💰 ​14+ Games ​ 💰 ​Legit & Rigged​ 💰 ​Legacy Dicing 💰 ​Spammer ​ 💰 ​Mod Detection ​ 💰 & More ​   
      Legitimate & Rigged Gambling 💰 Live Control 💰 Built-In Mod 2K List 💰 14+ Games 💰 Mod Detection  
       
      Note: This is the popular DefiledDicer Script, but Rewritten and Upgraded
      Last Updated: October 18, 2021
      Brief Description: The Most Advanced Gambling Script on DreamBot. Includes: Legacy Dicing & Command Games (14 Games+)
       

       
      Moderator List Included
      2500+ Moderator Names List Built-in
      Moderator lists are worth a lot of money, & you're getting it free included with the script.
      You can even add in your own Moderator Names and increase your grasp on rented and normal player moderators!
       

       
      14+ Command Games
      14 Games, Not Including Custom Games!
      I have included over 14 games in the script, ranging from classics to new and enjoyable games
      to fuel the addiction of in-game gamblers! The script also includes the ability to customize every game,
       which you will find out upon first loading the script.
       

       
       
      Legacy Dicing Included
      A Classic Feature for a Classical Person
      Do you dislike command games, prefer simplicity and ease of use, and miss the old days of gambling?
      No problem! dCasino includes a Legacy Dicing feature which allows you to play High, Mid, Low Dicing without commands!
       

       
      Rigged & Legitimate
      You can be a Honest Poor Man or a Scamming Rich Man
      dCasino doesn't discriminate! Everything is setup to be legitimate, but with a few tools with
      every game that can make it as skewed towards you as you wish! You can even look legitimate but be rigged all a-long
       
       

       
      Live Control
      Control Real-time Sessions, Infract People, Log Trades, & More!
      I have included a panel in the script that you can use to take full advantage of your gambling bot,
      without the need to stop or pause the script! Add people to the ignore list, Add new moderators, Add new mules, etc...
       

       
      Extreme Configurability
      From Altering Messages to Mod Evasion Techniques
      The script contains a HUGE amount of options and configurations that can be skewed any way you want!
      This is the reason I allow infinite instances of my scripts, it's because of the configurability. No 2 instance can be equal!
       

       
      Muling Support
      Trade, & Get a Pre-set Amount
      The script allows you to identify Mules in real time and trade them
      to give a set amount of gold which can be modified through Live Control.
       

       
      Anti-Lure
      Can't Be Removed From Area
      No matter how hard lurers try, they won't & can't pull you away from your area. 
      Want to gamble on a PVP world? this is the script for you!
       

       
      Timed Actions & Changes
      Executes Actions Every Specified Amount of Time
      Do you want to change Areas every once in a while? You can do that on dCasino!
      Do you want to change Worlds every one in a while? You can also do that on dCasino!
       

       
      Message Customizability
      There's a Message For Everything
      On dCasino, you'll find that you can set up a message for any sort of situation! Not Enough GP for a Session?
      There's a message for that! Are Items not accepted? there's a message for that too! & Much much more!
       

       
      Numerous Mod Evasion Features
      Log-out, Hop, Change Area
      On dCasino, not only can you find 3 ways to evade moderators... It's a darn fast reaction.
      Real Mod Reaction: I didn't even have the chance to see it!
      All the icons above are made by: Flaticon.com
       
      & More...
      If I were to list every feature, this post will span over 2 pages.
       
      Video Showcase 
      A video showing dCasino running a game of Dice Duel
       
      dCasino GUI
      Warm & Easy-to-use Interface

       
      dCasino Live Control
      No Need To Stop, Just Take Control

       
      dCasino Proggies
      For more proggies, Join My Discord Server & visit the #proggies channel

       
      DefiledBot Script Stats for user "Defiled"

       
      dCasino Guide
      In-depth Script Guide

      Click the image above to go to the Script Guide 
       
      dCasino Win/Loss Chances
      Console Tests (Alpha Tests)
       
      dCasino Update Log
      Be up to date with what has been patched, added, & removed.
       
      dCasino Trial
      Wanna see what's down there before jumping in? Get a trial!

       
      To Request a Trial You Must Upvote & Comment on this Thread & Then Use the Trial Bot Found on My Discord Server.
      To Join My Discord Server Click The Image Above or Click Here
       
      ______________________________________________
      !!! DISCLAIMER !!!
      ______________________________________________
      Gambling or In-game Dicing is a VERY competitive field due to its extreme profitability, so you will encounter competitors who will try to shut you down through rented PMods or Mass Reporting. Therefore gambling or dicing bots overall have a short life span, so your goal should be to monitor the bots and mule frequently! also you should always seek better areas to gamble at other than grand exchange as the grand exchange is a hot zone (monitored by Jagex and has UNETHICAL competitors)
      The information above should not scare you in anyway but it should boost your vigilance and your focus. Gambling/Dicing is highly profitable and can net you in the 10s of millions or even 100s of millions per hour.
       
       
      RENT OR PURCHASE
      Rent: $18.95 (or $17 with V.I.P and/or Sponsor) first month then $19.99/mo
      Buy: $99.99 One-time Payment (or $89.99 One-time Payment with V.I.P and/or Sponsor)
       
    18. Upvote
      Defiled got a reaction from meh26 in ​ 💰 ​dCasino ​ 💰 ​14+ Games ​ 💰 ​Legit & Rigged​ 💰 ​Legacy Dicing 💰 ​Spammer ​ 💰 ​Mod Detection ​ 💰 & More ​   
      Legitimate & Rigged Gambling 💰 Live Control 💰 Built-In Mod 2K List 💰 14+ Games 💰 Mod Detection  
       
      Note: This is the popular DefiledDicer Script, but Rewritten and Upgraded
      Last Updated: October 18, 2021
      Brief Description: The Most Advanced Gambling Script on DreamBot. Includes: Legacy Dicing & Command Games (14 Games+)
       

       
      Moderator List Included
      2500+ Moderator Names List Built-in
      Moderator lists are worth a lot of money, & you're getting it free included with the script.
      You can even add in your own Moderator Names and increase your grasp on rented and normal player moderators!
       

       
      14+ Command Games
      14 Games, Not Including Custom Games!
      I have included over 14 games in the script, ranging from classics to new and enjoyable games
      to fuel the addiction of in-game gamblers! The script also includes the ability to customize every game,
       which you will find out upon first loading the script.
       

       
       
      Legacy Dicing Included
      A Classic Feature for a Classical Person
      Do you dislike command games, prefer simplicity and ease of use, and miss the old days of gambling?
      No problem! dCasino includes a Legacy Dicing feature which allows you to play High, Mid, Low Dicing without commands!
       

       
      Rigged & Legitimate
      You can be a Honest Poor Man or a Scamming Rich Man
      dCasino doesn't discriminate! Everything is setup to be legitimate, but with a few tools with
      every game that can make it as skewed towards you as you wish! You can even look legitimate but be rigged all a-long
       
       

       
      Live Control
      Control Real-time Sessions, Infract People, Log Trades, & More!
      I have included a panel in the script that you can use to take full advantage of your gambling bot,
      without the need to stop or pause the script! Add people to the ignore list, Add new moderators, Add new mules, etc...
       

       
      Extreme Configurability
      From Altering Messages to Mod Evasion Techniques
      The script contains a HUGE amount of options and configurations that can be skewed any way you want!
      This is the reason I allow infinite instances of my scripts, it's because of the configurability. No 2 instance can be equal!
       

       
      Muling Support
      Trade, & Get a Pre-set Amount
      The script allows you to identify Mules in real time and trade them
      to give a set amount of gold which can be modified through Live Control.
       

       
      Anti-Lure
      Can't Be Removed From Area
      No matter how hard lurers try, they won't & can't pull you away from your area. 
      Want to gamble on a PVP world? this is the script for you!
       

       
      Timed Actions & Changes
      Executes Actions Every Specified Amount of Time
      Do you want to change Areas every once in a while? You can do that on dCasino!
      Do you want to change Worlds every one in a while? You can also do that on dCasino!
       

       
      Message Customizability
      There's a Message For Everything
      On dCasino, you'll find that you can set up a message for any sort of situation! Not Enough GP for a Session?
      There's a message for that! Are Items not accepted? there's a message for that too! & Much much more!
       

       
      Numerous Mod Evasion Features
      Log-out, Hop, Change Area
      On dCasino, not only can you find 3 ways to evade moderators... It's a darn fast reaction.
      Real Mod Reaction: I didn't even have the chance to see it!
      All the icons above are made by: Flaticon.com
       
      & More...
      If I were to list every feature, this post will span over 2 pages.
       
      Video Showcase 
      A video showing dCasino running a game of Dice Duel
       
      dCasino GUI
      Warm & Easy-to-use Interface

       
      dCasino Live Control
      No Need To Stop, Just Take Control

       
      dCasino Proggies
      For more proggies, Join My Discord Server & visit the #proggies channel

       
      DefiledBot Script Stats for user "Defiled"

       
      dCasino Guide
      In-depth Script Guide

      Click the image above to go to the Script Guide 
       
      dCasino Win/Loss Chances
      Console Tests (Alpha Tests)
       
      dCasino Update Log
      Be up to date with what has been patched, added, & removed.
       
      dCasino Trial
      Wanna see what's down there before jumping in? Get a trial!

       
      To Request a Trial You Must Upvote & Comment on this Thread & Then Use the Trial Bot Found on My Discord Server.
      To Join My Discord Server Click The Image Above or Click Here
       
      ______________________________________________
      !!! DISCLAIMER !!!
      ______________________________________________
      Gambling or In-game Dicing is a VERY competitive field due to its extreme profitability, so you will encounter competitors who will try to shut you down through rented PMods or Mass Reporting. Therefore gambling or dicing bots overall have a short life span, so your goal should be to monitor the bots and mule frequently! also you should always seek better areas to gamble at other than grand exchange as the grand exchange is a hot zone (monitored by Jagex and has UNETHICAL competitors)
      The information above should not scare you in anyway but it should boost your vigilance and your focus. Gambling/Dicing is highly profitable and can net you in the 10s of millions or even 100s of millions per hour.
       
       
      RENT OR PURCHASE
      Rent: $18.95 (or $17 with V.I.P and/or Sponsor) first month then $19.99/mo
      Buy: $99.99 One-time Payment (or $89.99 One-time Payment with V.I.P and/or Sponsor)
       
    19. Like
    20. Like
      Defiled got a reaction from Asoiaf in ​ 💰 ​dCasino ​ 💰 ​14+ Games ​ 💰 ​Legit & Rigged​ 💰 ​Legacy Dicing 💰 ​Spammer ​ 💰 ​Mod Detection ​ 💰 & More ​   
      Legitimate & Rigged Gambling 💰 Live Control 💰 Built-In Mod 2K List 💰 14+ Games 💰 Mod Detection  
       
      Note: This is the popular DefiledDicer Script, but Rewritten and Upgraded
      Last Updated: October 18, 2021
      Brief Description: The Most Advanced Gambling Script on DreamBot. Includes: Legacy Dicing & Command Games (14 Games+)
       

       
      Moderator List Included
      2500+ Moderator Names List Built-in
      Moderator lists are worth a lot of money, & you're getting it free included with the script.
      You can even add in your own Moderator Names and increase your grasp on rented and normal player moderators!
       

       
      14+ Command Games
      14 Games, Not Including Custom Games!
      I have included over 14 games in the script, ranging from classics to new and enjoyable games
      to fuel the addiction of in-game gamblers! The script also includes the ability to customize every game,
       which you will find out upon first loading the script.
       

       
       
      Legacy Dicing Included
      A Classic Feature for a Classical Person
      Do you dislike command games, prefer simplicity and ease of use, and miss the old days of gambling?
      No problem! dCasino includes a Legacy Dicing feature which allows you to play High, Mid, Low Dicing without commands!
       

       
      Rigged & Legitimate
      You can be a Honest Poor Man or a Scamming Rich Man
      dCasino doesn't discriminate! Everything is setup to be legitimate, but with a few tools with
      every game that can make it as skewed towards you as you wish! You can even look legitimate but be rigged all a-long
       
       

       
      Live Control
      Control Real-time Sessions, Infract People, Log Trades, & More!
      I have included a panel in the script that you can use to take full advantage of your gambling bot,
      without the need to stop or pause the script! Add people to the ignore list, Add new moderators, Add new mules, etc...
       

       
      Extreme Configurability
      From Altering Messages to Mod Evasion Techniques
      The script contains a HUGE amount of options and configurations that can be skewed any way you want!
      This is the reason I allow infinite instances of my scripts, it's because of the configurability. No 2 instance can be equal!
       

       
      Muling Support
      Trade, & Get a Pre-set Amount
      The script allows you to identify Mules in real time and trade them
      to give a set amount of gold which can be modified through Live Control.
       

       
      Anti-Lure
      Can't Be Removed From Area
      No matter how hard lurers try, they won't & can't pull you away from your area. 
      Want to gamble on a PVP world? this is the script for you!
       

       
      Timed Actions & Changes
      Executes Actions Every Specified Amount of Time
      Do you want to change Areas every once in a while? You can do that on dCasino!
      Do you want to change Worlds every one in a while? You can also do that on dCasino!
       

       
      Message Customizability
      There's a Message For Everything
      On dCasino, you'll find that you can set up a message for any sort of situation! Not Enough GP for a Session?
      There's a message for that! Are Items not accepted? there's a message for that too! & Much much more!
       

       
      Numerous Mod Evasion Features
      Log-out, Hop, Change Area
      On dCasino, not only can you find 3 ways to evade moderators... It's a darn fast reaction.
      Real Mod Reaction: I didn't even have the chance to see it!
      All the icons above are made by: Flaticon.com
       
      & More...
      If I were to list every feature, this post will span over 2 pages.
       
      Video Showcase 
      A video showing dCasino running a game of Dice Duel
       
      dCasino GUI
      Warm & Easy-to-use Interface

       
      dCasino Live Control
      No Need To Stop, Just Take Control

       
      dCasino Proggies
      For more proggies, Join My Discord Server & visit the #proggies channel

       
      DefiledBot Script Stats for user "Defiled"

       
      dCasino Guide
      In-depth Script Guide

      Click the image above to go to the Script Guide 
       
      dCasino Win/Loss Chances
      Console Tests (Alpha Tests)
       
      dCasino Update Log
      Be up to date with what has been patched, added, & removed.
       
      dCasino Trial
      Wanna see what's down there before jumping in? Get a trial!

       
      To Request a Trial You Must Upvote & Comment on this Thread & Then Use the Trial Bot Found on My Discord Server.
      To Join My Discord Server Click The Image Above or Click Here
       
      ______________________________________________
      !!! DISCLAIMER !!!
      ______________________________________________
      Gambling or In-game Dicing is a VERY competitive field due to its extreme profitability, so you will encounter competitors who will try to shut you down through rented PMods or Mass Reporting. Therefore gambling or dicing bots overall have a short life span, so your goal should be to monitor the bots and mule frequently! also you should always seek better areas to gamble at other than grand exchange as the grand exchange is a hot zone (monitored by Jagex and has UNETHICAL competitors)
      The information above should not scare you in anyway but it should boost your vigilance and your focus. Gambling/Dicing is highly profitable and can net you in the 10s of millions or even 100s of millions per hour.
       
       
      RENT OR PURCHASE
      Rent: $18.95 (or $17 with V.I.P and/or Sponsor) first month then $19.99/mo
      Buy: $99.99 One-time Payment (or $89.99 One-time Payment with V.I.P and/or Sponsor)
       
    21. Like
      Defiled got a reaction from REDO in ​ 💰 ​dCasino ​ 💰 ​14+ Games ​ 💰 ​Legit & Rigged​ 💰 ​Legacy Dicing 💰 ​Spammer ​ 💰 ​Mod Detection ​ 💰 & More ​   
      Legitimate & Rigged Gambling 💰 Live Control 💰 Built-In Mod 2K List 💰 14+ Games 💰 Mod Detection  
       
      Note: This is the popular DefiledDicer Script, but Rewritten and Upgraded
      Last Updated: October 18, 2021
      Brief Description: The Most Advanced Gambling Script on DreamBot. Includes: Legacy Dicing & Command Games (14 Games+)
       

       
      Moderator List Included
      2500+ Moderator Names List Built-in
      Moderator lists are worth a lot of money, & you're getting it free included with the script.
      You can even add in your own Moderator Names and increase your grasp on rented and normal player moderators!
       

       
      14+ Command Games
      14 Games, Not Including Custom Games!
      I have included over 14 games in the script, ranging from classics to new and enjoyable games
      to fuel the addiction of in-game gamblers! The script also includes the ability to customize every game,
       which you will find out upon first loading the script.
       

       
       
      Legacy Dicing Included
      A Classic Feature for a Classical Person
      Do you dislike command games, prefer simplicity and ease of use, and miss the old days of gambling?
      No problem! dCasino includes a Legacy Dicing feature which allows you to play High, Mid, Low Dicing without commands!
       

       
      Rigged & Legitimate
      You can be a Honest Poor Man or a Scamming Rich Man
      dCasino doesn't discriminate! Everything is setup to be legitimate, but with a few tools with
      every game that can make it as skewed towards you as you wish! You can even look legitimate but be rigged all a-long
       
       

       
      Live Control
      Control Real-time Sessions, Infract People, Log Trades, & More!
      I have included a panel in the script that you can use to take full advantage of your gambling bot,
      without the need to stop or pause the script! Add people to the ignore list, Add new moderators, Add new mules, etc...
       

       
      Extreme Configurability
      From Altering Messages to Mod Evasion Techniques
      The script contains a HUGE amount of options and configurations that can be skewed any way you want!
      This is the reason I allow infinite instances of my scripts, it's because of the configurability. No 2 instance can be equal!
       

       
      Muling Support
      Trade, & Get a Pre-set Amount
      The script allows you to identify Mules in real time and trade them
      to give a set amount of gold which can be modified through Live Control.
       

       
      Anti-Lure
      Can't Be Removed From Area
      No matter how hard lurers try, they won't & can't pull you away from your area. 
      Want to gamble on a PVP world? this is the script for you!
       

       
      Timed Actions & Changes
      Executes Actions Every Specified Amount of Time
      Do you want to change Areas every once in a while? You can do that on dCasino!
      Do you want to change Worlds every one in a while? You can also do that on dCasino!
       

       
      Message Customizability
      There's a Message For Everything
      On dCasino, you'll find that you can set up a message for any sort of situation! Not Enough GP for a Session?
      There's a message for that! Are Items not accepted? there's a message for that too! & Much much more!
       

       
      Numerous Mod Evasion Features
      Log-out, Hop, Change Area
      On dCasino, not only can you find 3 ways to evade moderators... It's a darn fast reaction.
      Real Mod Reaction: I didn't even have the chance to see it!
      All the icons above are made by: Flaticon.com
       
      & More...
      If I were to list every feature, this post will span over 2 pages.
       
      Video Showcase 
      A video showing dCasino running a game of Dice Duel
       
      dCasino GUI
      Warm & Easy-to-use Interface

       
      dCasino Live Control
      No Need To Stop, Just Take Control

       
      dCasino Proggies
      For more proggies, Join My Discord Server & visit the #proggies channel

       
      DefiledBot Script Stats for user "Defiled"

       
      dCasino Guide
      In-depth Script Guide

      Click the image above to go to the Script Guide 
       
      dCasino Win/Loss Chances
      Console Tests (Alpha Tests)
       
      dCasino Update Log
      Be up to date with what has been patched, added, & removed.
       
      dCasino Trial
      Wanna see what's down there before jumping in? Get a trial!

       
      To Request a Trial You Must Upvote & Comment on this Thread & Then Use the Trial Bot Found on My Discord Server.
      To Join My Discord Server Click The Image Above or Click Here
       
      ______________________________________________
      !!! DISCLAIMER !!!
      ______________________________________________
      Gambling or In-game Dicing is a VERY competitive field due to its extreme profitability, so you will encounter competitors who will try to shut you down through rented PMods or Mass Reporting. Therefore gambling or dicing bots overall have a short life span, so your goal should be to monitor the bots and mule frequently! also you should always seek better areas to gamble at other than grand exchange as the grand exchange is a hot zone (monitored by Jagex and has UNETHICAL competitors)
      The information above should not scare you in anyway but it should boost your vigilance and your focus. Gambling/Dicing is highly profitable and can net you in the 10s of millions or even 100s of millions per hour.
       
       
      RENT OR PURCHASE
      Rent: $18.95 (or $17 with V.I.P and/or Sponsor) first month then $19.99/mo
      Buy: $99.99 One-time Payment (or $89.99 One-time Payment with V.I.P and/or Sponsor)
       
    22. Like
      Defiled got a reaction from BrownK1d in ​ 💰 ​dCasino ​ 💰 ​14+ Games ​ 💰 ​Legit & Rigged​ 💰 ​Legacy Dicing 💰 ​Spammer ​ 💰 ​Mod Detection ​ 💰 & More ​   
      The script isn't required to Magically Create People to trade you.
      There's quite several reasons why it didn't work for you:
      First off: you didn't know where the "Play button" is for the script, so you set up the GUI then clicked the "exit" button and complained about that for days.
      Second: you used a test config that another user made, but you didn't edit the messages ... pretty much failed advertising.
       
      I provided you with 3 - 4 trial extensions, and its not my duty to get you the people or even set up the gui for you.
       
    23. Upvote
      Defiled got a reaction from Nolseby in ✨dMTA (700k GP/HR)/90K MAGIC EXP/HR ✨ Magic Training Arena ⚡️ High EXP/hr ⚡️ High GP/hr ⚡️Task System ⚡️ Reward Shop ⚡️ All 4 MiniGames ⚡️ Anti-Ban ⚡️Maze-Solving ⚡️ Cupboard Solver ⚡️ Awesome GUI   
      ✨dMTA ✨ Magic Training Arena ⚡ High EXP/hr ⚡ High GP/hr ⚡Task System ⚡ Reward Shop ⚡ All 4 MiniGames ⚡ Anti-Ban ⚡Maze-Solving ⚡ Cupboard Solver ⚡
      Note: This is the popular DefiledMTA Script, but Rewritten and Upgraded
      Last Updated: 23rd of February, 2023
      Brief Description:  One of the most popular Magic Training Arena script on the market. This script includes all 4 rooms in the Magic Training Arena and each room is scripted with longevity and rigidity in mind, nothing can break no matter what update goes through. The script also features heavy Anti-Pattern making each instance different than the other even if the same setup is used. The script has a very user-friendly GUI and a good looking paint.
       
      ✨Features✨
      - Games Included: All of them (Telekinetic Theatre, Alchemist's Playground, Enchantment Chamber, Creature Graveyard)
      - Supports all rewards
      - Fully automated (No need to specify which rooms to do, it'll do whatever is needed to get the reward required)
      - Extremely Randomized (including input) (AntiPattern)
      - Contains a multitude of modes
      - Good Looking GUI and Paint
      - Makes use of Path finding algorithms to solve Telekinetic Theatre (No Puzzle Update can break this script)
      - Contains Puzzle Solvers for Alchemist's Playground
      - Contains Bone Output Calculator and Eating Difference Calculator for Internal Use
      - Creature Graveyard: Inventory points listener where it checks the amount of points/fruit-exchange available in inventory, extremely efficient.
      - Casting Bones2Bananas while healing with Bones2Peaches
      - Reward Shop Rapid Task Purchasing
      - Telekinetic Theatre contains a maze solver that can solve any maze that Jagex decides to throw in. Credits for Maze Solver to @Articron ty bb
      - and much much more...
       
      ✨ Alchemist's Playground ✨


       
      ✨ Enchantment Chamber ✨

       
      ✨ Creature's Graveyard ✨


       
      ✨ Telekinetic Theatre ✨


       
       
      ✨ Video Showcase✨
       (This Video is Old, this was of DefiledMTA (previous iteration of dMTA)) 
       
      ✨ GUI & Paint ✨
      GUI:



       
      ✨ Informative and Inviting Paint ✨
       

      and more..
       
      ✨ Script Guide ✨

      https://defiled.dev/guides/dMTA
       
      UPVOTE & JOIN MY DISCORD SERVER & REPLY FOR A TRIAL!

       
    24. Upvote
      Defiled got a reaction from SlayerTm in ​ 💰 ​dCasino ​ 💰 ​14+ Games ​ 💰 ​Legit & Rigged​ 💰 ​Legacy Dicing 💰 ​Spammer ​ 💰 ​Mod Detection ​ 💰 & More ​   
      Legitimate & Rigged Gambling 💰 Live Control 💰 Built-In Mod 2K List 💰 14+ Games 💰 Mod Detection  
       
      Note: This is the popular DefiledDicer Script, but Rewritten and Upgraded
      Last Updated: October 18, 2021
      Brief Description: The Most Advanced Gambling Script on DreamBot. Includes: Legacy Dicing & Command Games (14 Games+)
       

       
      Moderator List Included
      2500+ Moderator Names List Built-in
      Moderator lists are worth a lot of money, & you're getting it free included with the script.
      You can even add in your own Moderator Names and increase your grasp on rented and normal player moderators!
       

       
      14+ Command Games
      14 Games, Not Including Custom Games!
      I have included over 14 games in the script, ranging from classics to new and enjoyable games
      to fuel the addiction of in-game gamblers! The script also includes the ability to customize every game,
       which you will find out upon first loading the script.
       

       
       
      Legacy Dicing Included
      A Classic Feature for a Classical Person
      Do you dislike command games, prefer simplicity and ease of use, and miss the old days of gambling?
      No problem! dCasino includes a Legacy Dicing feature which allows you to play High, Mid, Low Dicing without commands!
       

       
      Rigged & Legitimate
      You can be a Honest Poor Man or a Scamming Rich Man
      dCasino doesn't discriminate! Everything is setup to be legitimate, but with a few tools with
      every game that can make it as skewed towards you as you wish! You can even look legitimate but be rigged all a-long
       
       

       
      Live Control
      Control Real-time Sessions, Infract People, Log Trades, & More!
      I have included a panel in the script that you can use to take full advantage of your gambling bot,
      without the need to stop or pause the script! Add people to the ignore list, Add new moderators, Add new mules, etc...
       

       
      Extreme Configurability
      From Altering Messages to Mod Evasion Techniques
      The script contains a HUGE amount of options and configurations that can be skewed any way you want!
      This is the reason I allow infinite instances of my scripts, it's because of the configurability. No 2 instance can be equal!
       

       
      Muling Support
      Trade, & Get a Pre-set Amount
      The script allows you to identify Mules in real time and trade them
      to give a set amount of gold which can be modified through Live Control.
       

       
      Anti-Lure
      Can't Be Removed From Area
      No matter how hard lurers try, they won't & can't pull you away from your area. 
      Want to gamble on a PVP world? this is the script for you!
       

       
      Timed Actions & Changes
      Executes Actions Every Specified Amount of Time
      Do you want to change Areas every once in a while? You can do that on dCasino!
      Do you want to change Worlds every one in a while? You can also do that on dCasino!
       

       
      Message Customizability
      There's a Message For Everything
      On dCasino, you'll find that you can set up a message for any sort of situation! Not Enough GP for a Session?
      There's a message for that! Are Items not accepted? there's a message for that too! & Much much more!
       

       
      Numerous Mod Evasion Features
      Log-out, Hop, Change Area
      On dCasino, not only can you find 3 ways to evade moderators... It's a darn fast reaction.
      Real Mod Reaction: I didn't even have the chance to see it!
      All the icons above are made by: Flaticon.com
       
      & More...
      If I were to list every feature, this post will span over 2 pages.
       
      Video Showcase 
      A video showing dCasino running a game of Dice Duel
       
      dCasino GUI
      Warm & Easy-to-use Interface

       
      dCasino Live Control
      No Need To Stop, Just Take Control

       
      dCasino Proggies
      For more proggies, Join My Discord Server & visit the #proggies channel

       
      DefiledBot Script Stats for user "Defiled"

       
      dCasino Guide
      In-depth Script Guide

      Click the image above to go to the Script Guide 
       
      dCasino Win/Loss Chances
      Console Tests (Alpha Tests)
       
      dCasino Update Log
      Be up to date with what has been patched, added, & removed.
       
      dCasino Trial
      Wanna see what's down there before jumping in? Get a trial!

       
      To Request a Trial You Must Upvote & Comment on this Thread & Then Use the Trial Bot Found on My Discord Server.
      To Join My Discord Server Click The Image Above or Click Here
       
      ______________________________________________
      !!! DISCLAIMER !!!
      ______________________________________________
      Gambling or In-game Dicing is a VERY competitive field due to its extreme profitability, so you will encounter competitors who will try to shut you down through rented PMods or Mass Reporting. Therefore gambling or dicing bots overall have a short life span, so your goal should be to monitor the bots and mule frequently! also you should always seek better areas to gamble at other than grand exchange as the grand exchange is a hot zone (monitored by Jagex and has UNETHICAL competitors)
      The information above should not scare you in anyway but it should boost your vigilance and your focus. Gambling/Dicing is highly profitable and can net you in the 10s of millions or even 100s of millions per hour.
       
       
      RENT OR PURCHASE
      Rent: $18.95 (or $17 with V.I.P and/or Sponsor) first month then $19.99/mo
      Buy: $99.99 One-time Payment (or $89.99 One-time Payment with V.I.P and/or Sponsor)
       
    25. Thonking
    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.