Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- #define FILTERSCRIPT
- //--------Forwards--------//
- forward Payday();
- public OnFilterScriptInit()
- {
- SetTimer("Payday",3600,1);
- print("\n--------------------------------------");
- print("PayDay System Ligado");
- print("--------------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- print("\n--------------------------------------");
- print("PayDay System Desligado");
- print("--------------------------------------\n");
- return 1;
- }
- public Payday()
- {
- new string[128];
- for(new i = 0; i < MAX_PLAYERS; i++)
- {
- format(string,sizeof(string),"~b~Payday: ~p~$3500");
- GameTextForAll(string, 5000, 5);
- GivePlayerMoney(i,3500);
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment