Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function placeBet()
  2. {
  3.     if(wonLastRoll() === null || wonLastRoll())
  4.     {
  5.         licznik=0;
  6.     }
  7.     else
  8.     {
  9.         licznik+=1;
  10.     }
  11.  
  12.     if(licznik=6)
  13.     {
  14.         licznik=0;
  15.  
  16.         return lastBetColor;
  17.     }
  18.     else
  19.     {
  20.         return "alternately" === lastBetColor ? ($spiralButton.click(), void(lastBetColor = "spiral")) : ($alternatelyButton.click(), void(lastBetColor = "alternately"));
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement