Guest User

WThieves

a guest
Feb 19th, 2010
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. #define FILTERSCRIPT
  2.  
  3. #include <a_samp>
  4.  
  5. #if defined FILTERSCRIPT
  6.  
  7. public OnFilterScriptInit()
  8. {
  9. print("\n--------------------------------------");
  10. print(" Map FS Of W.Thieves");
  11. print("--------------------------------------\n");
  12. return 1;
  13. }
  14.  
  15. public OnFilterScriptExit()
  16. {
  17. return 1;
  18. }
  19.  
  20.  
  21.  
  22. public OnPlayerCommandText(playerid, cmdtext[])
  23. {
  24. //You can better take this and post it in your Commandtext in your GM
  25. if (strcmp("/Takemetoheaven", cmdtext, true, 10) == 0)
  26. {
  27. SetPlayerPos(playerid,5059.361328125, 2899.4123535156, 5.5); //
  28. }
  29. //You can better take this and post it in your Commandtext in your GM
  30. return 0;
  31. }
  32.  
Advertisement
Add Comment
Please, Sign In to add comment