Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. public void OnGameFrame()
  2. {
  3. if(g_bRuleta)
  4. {
  5. g_fRuletaTimerCooldown = g_fRuletaTimer - GetGameTime() + 20.0;
  6.  
  7. if(g_fRuletaTimerCooldown == 10.0)
  8. {
  9. //Písnička
  10. }
  11.  
  12. if(g_fRuletaTimerCooldown < 0.01)
  13. {
  14. Do_Ruleta();
  15.  
  16. g_bRuleta = false;
  17. }
  18. else
  19. {
  20. PrintHintTextToAll("\nPočet sázek: \n<font color='#FF0000'>Červená:</font> %i \n<font color='#808080'>Černá:</font> %i \n<font color='#00FF00'>Zelená:</font> %i", g_iCount.Red, g_iCount.Black, g_iCount.Green);
  21. }
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement