Advertisement
GrankoPoRanu

Untitled

Dec 16th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. #define FILERSCRIPT
  2.  
  3. #define <a_samp>
  4.  
  5. new PickUpSystem;
  6.  
  7. public OnGameModeInit()
  8. {
  9. PickUpSystem = CreatePickup(1240,2,2035.2129,-1404.3669,17.2611,-1);
  10. ShowPlayerDialog(playerid, DIALOG_WELCOME, DIALOG_STYLE_MSGBOX, "TEST", "test\ntest\ntest\ntest\ntest", "closeee", "");
  11. return true;
  12. }
  13.  
  14. public OnPlayerPickUpPickup(playerid, pickupid)
  15. {
  16. if(pickupid == PickUpSystem)
  17. {
  18. GivePlayerMoney(playerid, 50000);
  19. }
  20. return true;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement