Everything posted by LoudPacks
-
RIP Dicing Bots Dec 2016 - Mar 2017
Well when it was just us doing it, we were very smart about it. We had fake bettors, still paid out some medium sized bets, and didn't make it obvious that it was a scam. The dumb 12 year olds who only made a few hundred mill and would scam 2m bets 30 times in a row ruined the system. But in the grand scheme of things people are in fact idiots. If you know anything about computers you can deduce that these bots are most likely rigged whether its obvious or not.
-
RIP Dicing Bots Dec 2016 - Mar 2017
Enjoy, we would payout smaller bets and then some sucker like this guy would comethru and pay for my steak dinner
-
RIP Dicing Bots Dec 2016 - Mar 2017
Why didn't you like them?
-
RIP Dicing Bots Dec 2016 - Mar 2017
Well I had an algorithm that would auto scam them based on several different factors. Additionally, we had an offset to inflate the max bet that was added to half your current gold stack so the numbers would change as people bet but it would still look like the max was a lot higher. It would scam if the bet was above the set threshold, in addition to using the algorithm. We had automated muling so at certain amounts another acc would log in and collect the gold. We had blacklisting and antilures to stop trolls. Mod detection to stop talking when mods from a mod list were detected. We also had a force win and force lose button that would override the algorithm and thresholds so we could bait people if we were watching. It was funny as fuck to see people lose and still argue to others that the bot is legit. People are wild.
-
RIP Dicing Bots Dec 2016 - Mar 2017
Well, dicing is officially dead. Everyone does it now and the bans are insane. The bettors know it is a scam and thus do not bet like they used to. I started running a few dice bots back in December when Fortune Bets brought back their clan chat dicing which effectively shut everyone else down. I made a few hundred mill a week at first, and then recruited some of my friends to run bots and pay me 30% of the profits. In it's prime, we had days with over 2B profit and then people started copying us, getting scripts made, using our outfits, etc. We managed to stay on top through this up until the end of march. Now its fully saturated, people know its a scam, and Jagex really stepped up their bans. It was a good run though as we made over 50B. These are the profit tables starting from mid January. Ignore the fucked up math under the tax tab (integer overflows because I wasn't expecting such large numbers).
-
This reminded me of someone.
Name drop them, you won't.
-
What work should I do first?
Do some q = mc deltaT edit: jk you said colorimetry not calorimetry. Do some A = e l c
-
[Question] Launch Options?
package com.loudpacks.gui; import org.osbot.rs07.script.Script; public class Settings extends JFrame { private JPanel master; private Consumer<Boolean> callback; public Settings(Script script) { master = new JPanel(); setTitle("Settings"); setSize(300, 120); setResizable(false); setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); setLocationRelativeTo(null); JPanel buttonPanel = new JPanel(); buttonPanel.setLayout(new GridLayout(1, 1, 10, 10)); buttonPanel.setBorder(new EmptyBorder(5, 5, 5, 5)); JButton buttonStart = new JButton("Start"); buttonStart.addActionListener(event -> { callback.accept(true); dispose(); }); buttonPanel.setMaximumSize(new Dimension(getWidth(), 100)); buttonPanel.add(buttonStart); master.add(buttonPanel); master.setLayout(new BoxLayout(master, BoxLayout.Y_AXIS)); add(master); setVisible(true); } public void setCallback(Consumer<Boolean> callback) { this.callback = callback; } } package com.loudpacks.script; import java.awt.Color; import java.awt.Font; import java.awt.Graphics2D; import org.osbot.rs07.api.model.Item; import org.osbot.rs07.script.ScriptManifest; import com.loudpacks.api.LoudScript; import com.loudpacks.gui.Settings; @ScriptManifest(author = "LoudPacks", info = "", logo = "", name = "LoudCCTracker", version = 1.0) public class main extends LoudScript { private long start = 0; public static InventoryMonitor monitor; @[member='Override'] public void onStart() { Settings settings = new Settings(this); settings.setCallback(b -> { start = System.currentTimeMillis(); //add tasks, etc it will hand here til your settings callback is set to true; }); } @[member='Override'] public void onExit() { } @[member='Override'] public void onPaint(Graphics2D g){ super.onPaint(g); } }
-
Custom CSGO Map
But does it have webwalking?
-
i cant do math help
I mean if you can have decimals in the fraction you can do as follows: (3/10)^12 = (3^12)/(10^12) = 531441/1000000000000 = (531441/531441)/(1000000000000/531441) = 1/1881676.42
-
i cant do math help
100/188167621 = .3^12
- String appending only existing as last appended object
-
Selling 100m - OSRS Gold $1/m
- How to include external dependencies in my script?
Make sure OSBot is still in your build path and select whatever the top option is (I think its extract but I could be wrong, I just know its the top of the two options)- Selling 100m - OSRS Gold $1/m
********a save up 200M more and give me what you owe.- How to include external dependencies in my script?
You can use some other standard json library instead and if you need to send objects, you can serialize them and send them as base64 and decode them on the other side.- How to include external dependencies in my script?
I add external dependencies all the time mainly for my websocket server integration. In eclipse you can build it as a runnable jar instead of just a jar.- Recursive depth first search
A* is better than Djikstra imo because it doesn't need to traverse the whole tree.- Limit to length of signature?
Don't use mobile- Which actor/actress do you have a crush on?
rosie o'donnell- Congratz!
Still can't cook waffles tho- Negative Feedback removal
- LoudPack's Ban Checker
Can you explain what you mean? Im not sure what you mean and it may help other users who say they get captcha blocked after a few accounts.- LoudPack's Ban Checker
As someone else stated I think it will block you after several accounts due to captchas which I didn't realize when I made this. It will take a fair amount of time for that many accounts tho. If I decide to update this, ill put the account checking on a separate thread and have some sort of status bar that updates after each account so you can see the progress. I'd like to add: - Proxy support - 2Captcha support (for captcha bypass but youll need and API key and credits) - Progress updating I'm not sure if I'll get around to it any time soon but in the future it may be updated with those features.- Negative Feedback removal
I don't even think he uses OSBot anymore. He hasn't been on in months. - How to include external dependencies in my script?