Advertisement
Takelot

[FS]Estilos De Luta

Jun 13th, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.69 KB | None | 0 0
  1. /*--------------------------------------------//
  2. # [fs]Mudar Luta By -> [T]akelot
  3.  
  4. HostName: • Equipe Gangs Brasil RJ ® • 2 Anos
  5. Address:  93.188.167.159:2015
  6. Players:  24 / 300
  7. Ping:     230
  8. Mode:     Facçoes
  9. Language: Portugues PT-BR
  10. ---------------------------------------------*/
  11.  
  12.  
  13. #include <a_samp>
  14. #include <zcmd>
  15.  
  16. #define MUDARLUTA  1999 //Coloquei um numero grande para não bugar com outras dialogs
  17. #define InfoTakeFS 2000
  18.  
  19. public OnFilterScriptInit()
  20. {
  21.  print("\n = = == = = = = = = = = = = = = = = = = = = ==");
  22.  print("FILTERSCRIPT: ESTILOS DE LUTA-> BY: [T]AKELOT <-");
  23.  print("= = =  = = = = = == = = = = =  = == =  = = = ==\n");
  24.  return 1;
  25. }
  26.  
  27. CMD:mudarluta(playerid, params[])
  28. {
  29.     new string[100], NomeDoCristao[MAX_PLAYER_NAME];
  30.     GetPlayerName(playerid, NomeDoCristao, MAX_PLAYER_NAME);
  31.     if(IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, -1, "{FF0000}ERRO:Você não pode usar este comando dentro de um veiculo!");
  32.     format(string, sizeof(string), "{FFFFFF}%s {00CC00}está vendo os estilos de luta. {FFFFFF}/MUDARLUTA {00CC00}!", NomeDoCristao);
  33.     SendClientMessageToAll(0x7889C7FF, string);
  34.     ShowPlayerDialog(playerid, MUDARLUTA, DIALOG_STYLE_LIST,"{FF0000}# {FFFFFF}Lutas Disponiveis", "Kongfu\nAgarra e Chuta\nCutuvelada\nSoco e chute (Normal)", "Selecionar", "Cancelar");
  35.     return 1;
  36. }
  37. CMD:ajudalutas(playerid, params[])
  38. {
  39.     ShowPlayerDialog(playerid, InfoTakeFS, DIALOG_STYLE_MSGBOX,"{FFFFFF}# {ffffff}Info FS Modo De Luta", "{a9c4e4}Basta digitar o comando /mudarluta para mudar seu estilo de luta\n\n{FFFF00}CREDITOS: [T]AKELOT", "Fechar", "");
  40.     return 1;
  41. }
  42. public OnPlayerConnect(playerid)
  43. {
  44.     SendClientMessage(playerid,0xFFFF00FF,"{FFFF00}Este servidor possui um Filterscript de mudar o estilo de luta /mudarluta!");
  45.     return 1;
  46. }
  47. public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
  48. {
  49. if(dialogid== MUDARLUTA)
  50.     {
  51.         if(response)
  52.         {
  53.             if(listitem==0)
  54.             {
  55.             SendClientMessage(playerid,0xFFFF00FF,"{00CC00}Você alterou seu estilo de luta para:{FFFFFF} KUNGFU {00CC00}!");
  56.             SetPlayerFightingStyle(playerid, FIGHT_STYLE_KUNGFU);
  57.             GameTextForPlayer(playerid,"~g~~h~voce mudou o seu modo de lutar",5000,5);
  58.             PlayerPlaySound(playerid, 1057, 0.0, 0.0, 0.0);
  59.             }
  60.             if(listitem==1)
  61.             {
  62.             SendClientMessage(playerid,0xFFFF00FF,"{00CC00}Você alterou seu estilo de luta para:{FFFFFF} Agarra e Chuta {00CC00}!");
  63.             SetPlayerFightingStyle(playerid, FIGHT_STYLE_KNEEHEAD);
  64.             GameTextForPlayer(playerid,"~g~~h~voce mudou o seu modo de lutar",5000,5);
  65.             PlayerPlaySound(playerid, 1057, 0.0, 0.0, 0.0);
  66.             }
  67.             if(listitem==2)
  68.             {
  69.             SendClientMessage(playerid,0xFFFF00FF,"{00CC00}Você alterou seu estilo de luta para:{FFFFFF} Cutuvelada {00CC00}!");
  70.             SetPlayerFightingStyle (playerid, FIGHT_STYLE_ELBOW);
  71.             GameTextForPlayer(playerid,"~g~~h~voce mudou o seu modo de lutar",5000,5);
  72.             PlayerPlaySound(playerid, 1057, 0.0, 0.0, 0.0);
  73.             }
  74.             if(listitem==3)
  75.             {
  76.             SendClientMessage(playerid,0xFFFF00FF,"{00CC00}Você alterou seu estilo de luta para:{FFFFFF} Normal {00CC00}!");
  77.             PlayerPlaySound(playerid, 1057, 0.0, 0.0, 0.0);
  78.             GameTextForPlayer(playerid,"~r~~h~voce mudou o seu modo de lutar",5000,5);
  79.             SetPlayerFightingStyle(playerid, FIGHT_STYLE_GRABKICK);
  80.             }
  81.  
  82.         }
  83.    }
  84. return 1;
  85. }
  86. /*--------------------------------------------//
  87. # [fs]Mudar Luta By -> [T]akelot
  88.  
  89. HostName: • Equipe Gangs Brasil RJ ® • 2 Anos
  90. Address:  93.188.167.159:2015
  91. Players:  24 / 300
  92. Ping:     230
  93. Mode:     Facçoes
  94. Language: Portugues PT-BR
  95. ---------------------------------------------*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement