Guest User

Untitled

a guest
Jun 25th, 2014
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. // ==UserScript==
  2. // @name PD Fixes
  3. // @version 0.1
  4. // @include https://primedice.com/*
  5. // ==/UserScript==
  6. // Press Ctrl + Shift + J in browser. Paste into console and hit enter
  7. $('#bet-amount').val;
  8.  
  9. $( "#all-in" ).replaceWith('<a class="amount-modifier" id="divider">/2</a>')
  10.  
  11. var val2;
  12. var val3;
  13. function divide() {
  14. val2 = $('#bet-amount').val() / 2;
  15. val3 = val2.toFixed(8);
  16.  
  17. $('#bet-amount').val(val3);
  18. }
  19. $( ".tooltip.down" ).remove();
  20.  
  21. $( "#divider" ).click(function() {
  22. divide();
  23. })
Add Comment
Please, Sign In to add comment