Jcvag44800

Système AFK par jcvag44800

Mar 15th, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.26 KB | None | 0 0
  1. // Laisser les crédits pour le respect de l'auteur.
  2.  
  3. #include <a_samp>
  4. #define COLOR_WHITE 0xFFFFFFFF
  5. new jAFK[MAX_PLAYERS];
  6.  
  7. public OnFilterScriptInit()
  8. {
  9.     print("\n--------------------------------------");
  10.     print(" Système AFK par Jcvag44800");
  11.     print("--------------------------------------\n");
  12.     return 1;
  13. }
  14.  
  15.  
  16. public OnPlayerCommandText(playerid, cmdtext[])
  17. {
  18.     if (strcmp("/afk", cmdtext, true, 10) == 0)
  19.     {
  20.         new name[MAX_PLAYER_NAME], string[24+MAX_PLAYER_NAME];
  21.         GetPlayerName(playerid, name, sizeof(name));
  22.         if(jAFK[playerid] == 0)
  23.         {
  24.            SendClientMessage(playerid,COLOR_WHITE,"Vous êtes AFK, pour vous enlever AFK, taper la commande /afk de nouveau.");
  25.            jAFK[playerid] = 1;
  26.            TogglePlayerControllable(playerid,0);
  27.            format(string,sizeof string,"%s est maintenant AFK.",name);
  28.            SendClientMessageToAll(COLOR_WHITE,string);
  29.            PlayerPlaySound(playerid, 1068, 0.0, 0.0, 0.0);
  30.            return 1;
  31.         }
  32.         else
  33.         {
  34.            jAFK[playerid] = 0;
  35.            TogglePlayerControllable(playerid,1);
  36.            format(string,sizeof string,"%s n'est plus AFK.",name);
  37.            SendClientMessageToAll(COLOR_WHITE,string);
  38.            PlayerPlaySound(playerid,1098,0.0,0.0,0.0);
  39.            return 1;
  40.         }
  41.     }
  42.     return 0;
  43. }
Advertisement
Add Comment
Please, Sign In to add comment