Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name PD Fixes
- // @version 0.1
- // @include https://primedice.com/*
- // ==/UserScript==
- // Press Ctrl + Shift + J in browser. Paste into console and hit enter
- $('#bet-amount').val;
- $( "#all-in" ).replaceWith('<a class="amount-modifier" id="divider">/2</a>')
- var val2;
- var val3;
- function divide() {
- val2 = $('#bet-amount').val() / 2;
- val3 = val2.toFixed(8);
- $('#bet-amount').val(val3);
- }
- $( ".tooltip.down" ).remove();
- $( "#divider" ).click(function() {
- divide();
- })
Add Comment
Please, Sign In to add comment