Advertisement
Guest User

[GM DEMOSTRAÇÃO]

a guest
May 19th, 2012
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #include a_samp
  2. #include atmcreator
  3. #pragma tabsize 0
  4. public OnGameModeInit()
  5. {
  6.  
  7. return 1;
  8. }
  9. public OnPlayerCommandText(playerid, cmdtext[])
  10. {
  11. if(strcmp("/addatm",cmdtext,true) == 0)
  12. {
  13. new Float:x,Float:y,Float:z;
  14. GetPlayerPos(playerid, x, y, z);
  15. CriarAtm(x,y,z-0.4);
  16. return 1;
  17. }
  18. if(strcmp("destruiratm",cmdtext,true) == 0)
  19. {
  20. return 1;
  21. }
  22. return 1;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement