Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- forward plata();
- forward porez();
- public OnGameModeInit()
- {
- SetTimer("plata",3600,1);
- SetTimer("porez",3600,1);
- return 1;
- }
- public OnGameModeExit()
- {
- return 1;
- }
- public plata() {
- for (new i = 0; i < MAX_PLAYERS; i++) {
- ShowPlayerDialog(i, 1, DIALOG_STYLE_MSGBOX, "Plata", "Iznos plate:2500$ \n Iznos sljedece plate:2500$ \n Express City Centralna Banka", "Uredu", "Izadji");
- GivePlayerMoney(i,2500);
- }
- return 1;
- }
- public porez() {
- for (new i = 0; i < MAX_PLAYERS; i++) {
- ShowPlayerDialog(i, 1, DIALOG_STYLE_MSGBOX, "Porez", "Iznos poreza:350$ \n Express City Opstina", "Uredu", "Izadji");
- GivePlayerMoney(i,-350);
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement