Advertisement
MatasLuckus

Untitled

Mar 19th, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. if(dialogid == DIALOG_POKER_RAISE)
  2. {
  3. if(response)
  4. {
  5. new amount;
  6. if(sscanf(inputtext,"i",amount)) return ShowPlayerDialog(playerid, DIALOG_POKER_RAISE, DIALOG_STYLE_INPUT, "Raise", "Klaidingai ivesta suma!\nveskite statoma suma\nMAX 100000EUR","Patvirtinti","Atgal");
  7. if(amount <= 0 || amount > 100000) return ShowPlayerDialog(playerid, DIALOG_POKER_RAISE, DIALOG_STYLE_INPUT, "Raise", "Klaidingai ivesta suma!\niveskite statoma suma\nMAX 100000EUR","Patvirtinti","Atgal");
  8. if(GetPlayerMoneyA(playerid) < amount) return ShowPlayerDialog(playerid, DIALOG_POKER_RAISE, DIALOG_STYLE_INPUT, "Raise", "Tiek pinigu neturite!\niveskite statoma suma\nMAX 100000EUR","Patvirtinti","Atgal");
  9. if(PlayerRaise[playerid] < STALO_RAISE)
  10. if( STALO_RAISE - PlayerRaise[playerid] + amount > GetPlayerMoneyA(playerid)) return ShowPlayerDialog(playerid, DIALOG_POKER_RAISE, DIALOG_STYLE_INPUT, "Raise", "Tiek pinigu neturite!\niveskite statoma suma\nMAX 100000EUR","Patvirtinti","Atgal");
  11. PlayerRaiseAmount(playerid, amount);
  12. }
  13. return 1;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement