Advertisement
Guest User

[FilterScript] Fightstyle Changer

a guest
Aug 23rd, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 2.47 KB | None | 0 0
  1. /*          _______________________
  2.            |                       |
  3.            |     DETONA SAMP       |
  4.            |                       |
  5.            |_______________________|
  6.                       | |
  7.                       | |
  8.                       | |
  9.                       |_|
  10.  
  11. http://detonasa-mp.blogspot.com.br/
  12. */
  13.  
  14. if (strcmp ("/ fightstyle", cmdtext, true, 11) == 0)
  15.     {
  16.         ShowPlayerDialog (playerid, 3, DIALOG_STYLE_LIST, "O que é que você quer?", "Normal \ nBoxing \ nKungfu \ nKneeHead \ nGrabKick \ nElbow", "Change", "Cancelar");
  17.         retornar 1;
  18.     }
  19.  
  20.  
  21. público OnDialogResponse (playerid, DialogID, resposta, listitem, inputText [])
  22. {
  23. if (resposta) / / Eles apertaram o botão primeiro.
  24.     {
  25.     switch (DialogID) / / Se você tiver apenas um diálogo, então esta não é necessária, mas é mais limpo para quando você implementar mais diálogos.
  26.         {
  27.         case 3 :/ / Nosso diálogo!
  28.             {
  29.             switch (listitem) / / Verificando que listitem foi selecionado
  30.             {
  31.                 case 0 :/ / O primeiro item listado
  32.                 {
  33.                     SetPlayerFightingStyle (playerid, FIGHT_STYLE_NORMAL);
  34.                     SendClientMessage (playerid, 0xFFFFFFAA, "Você mudou seu estilo de luta ao estilo de luta normal!");
  35.                 }
  36.                 case 1: / / O segundo item listado
  37.                 {
  38.                     SetPlayerFightingStyle (playerid, FIGHT_STYLE_BOXING);
  39.                     SendClientMessage (playerid, 0xFFFFFFAA, "Você mudou seu estilo de luta ao estilo de luta de boxe!");
  40.                 }
  41.                 case 2: / / O terceiro item listado
  42.                 {
  43.                     SetPlayerFightingStyle (playerid, FIGHT_STYLE_KUNGFU);
  44.                     SendClientMessage (playerid, 0xFFFFFFAA, "Você mudou seu estilo de luta ao estilo de luta Kung Fu!");
  45.                 }
  46.                 case 3:
  47.                 {
  48.                     SetPlayerFightingStyle (playerid, FIGHT_STYLE_KNEEHEAD);
  49.                     SendClientMessage (playerid, 0xFFFFFFAA, "Você mudou seu estilo de luta ao estilo de luta KneeHead!");
  50.                 }
  51.                 case 4:
  52.                 {
  53.                     SetPlayerFightingStyle (playerid, FIGHT_STYLE_GRABKICK);
  54.                     SendClientMessage (playerid, 0xFFFFFFAA, "Você mudou seu estilo de luta ao estilo de luta GrabKick!");
  55.                 }
  56.                 case 5:
  57.                 {
  58.                     SetPlayerFightingStyle (playerid, FIGHT_STYLE_ELBOW);
  59.                     SendClientMessage (playerid, 0xFFFFFFAA, "Você mudou seu estilo de luta ao estilo de luta do cotovelo!");
  60.                 }
  61.             }
  62.             }
  63.         }
  64.     }
  65.  
  66.             retornar 1;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement