Guest User

[FS]Sistema de JetPack - 3.0

a guest
Aug 7th, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.89 KB | None | 0 0
  1. #include <a_samp>
  2.  
  3. #if defined FILTERSCRIPT
  4.  
  5. public OnFilterScriptInit()
  6. {
  7.     print("\n--------------------------------------");
  8.     print(" [FS]Sistema de JetPack - 3.0 - Kwerb - ON");
  9.     print("--------------------------------------\n");
  10.     return 1;
  11. }
  12.  
  13. public OnFilterScriptExit()
  14. {
  15.     print("\n--------------------------------------");
  16.     print(" [FS]Sistema de JetPack - 3.0 - Kwerb - OFF");
  17.     print("--------------------------------------\n");
  18.     return 1;
  19. }
  20.  
  21.  
  22. #endif
  23.  
  24.  
  25.  
  26. public OnPlayerCommandText(playerid, cmdtext[])
  27. {
  28.     if (strcmp("/Jetpack", cmdtext, true, 10) == 0)
  29.     {
  30.         SetPlayerSpecialAction(playerid, 2);
  31.         new pname[MAX_PLAYER_NAME], string[256];
  32.         GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
  33.         format(string, sizeof(string), "{FF0000}[INFO]{FFFFFF} %s Esta usando Jetpack ( /jetpack )", pname);
  34.         SendClientMessageToAll( 0xFFFFF , string);
  35.         return 1;
  36.     }
  37.     return 0;
Advertisement
Add Comment
Please, Sign In to add comment