Advertisement
Guest User

Untitled

a guest
Aug 26th, 2014
531
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. #include <a_samp>
  2. #include <sscanf2>
  3. #include <YCMD>
  4.  
  5. #if defined FILTERSCRIPT
  6.  
  7. public OnFilterScriptInit()
  8. {
  9. print("\n--------------------------------------");
  10. print("Teleport to coords by jeevanjyothish ");
  11. print("--------------------------------------\n");
  12. return 1;
  13. }
  14. #endif
  15.  
  16. public OnFilterScriptExit()
  17. {
  18. return 1;
  19. }
  20.  
  21. public OnFilterScriptInit()
  22.  
  23. {
  24. new Float:x, Float:y, Float:z;
  25. if(sscanf(params, "fff", x, y, z)) return SendClientMessage(playerid, 0xFF0000FF, "/tp (X/Y/Z)");
  26. SetPlayerPos(playerid, x, y, z);
  27. return 1;
  28. }
  29.  
  30. {
  31.  
  32.  
  33. return 1;
  34.  
  35.  
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement