Advertisement
CrimsonNoble

Part 1 : Basic Bet

Feb 23rd, 2015
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   var betData = {
  2.         amount: 10,     // would place 0.00000010 bet
  3.         condition: '<', // '<' for under '>' for over
  4.         target: 10      // would roll under 10
  5.     }
  6.     $.ajax({
  7.                 url: 'https://api.primedice.com/api/bet?access_token=' + localStorage.token,
  8.                 type: 'POST',
  9.                 data: betData,
  10.                 datatype: 'json',
  11.                 async: true
  12.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement