Guest User

Money-Bag

a guest
Sep 9th, 2011
978
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. // Money-bag by !LukniS!
  2.  
  3. #define FILTERSCRIPT
  4.  
  5. #include <a_samp>
  6.  
  7. #if defined FILTERSCRIPT
  8.  
  9. public OnFilterScriptInit()
  10. {
  11. print("\n--------------------------------------");
  12. print(" Money-Bag by !LukniS!");
  13. print("--------------------------------------\n");
  14. return 1;
  15. }
  16. public OnPlayerCommandText(playerid, cmdtext[])
  17. {
  18. if (strcmp("/bag", cmdtext, true, 10) == 0)
  19. {
  20. SetPlayerAttachedObject(playerid, 3, 1550, 1, 0.1, -0.3, 0, 0, 40, 0, 1, 1, 1);
  21. return 1;
  22. }
  23. return 0;
  24. }
  25. #endif
Advertisement
Add Comment
Please, Sign In to add comment