Advertisement
Guest User

[FS] Animes

a guest
May 14th, 2012
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 4.75 KB | None | 0 0
  1. // pessoal do vicioemsamp.blogspot.com.br, eu estava sem ideia pra fazer FS e resolvir criar uma FS de anime pra galera
  2. // é simples mais é boa.
  3.  
  4. #include <a_samp>
  5.  
  6. #if defined FILTERSCRIPT
  7.  
  8. public OnFilterScriptInit()
  9. {
  10.     print("\n--------------------------------------");
  11.     print(" [FS]animes ON ! by Sr_Trojan");
  12.     print("--------------------------------------\n");
  13.     return 1;
  14. }
  15.  
  16. public OnFilterScriptExit()
  17. {
  18.     return 1;
  19. }
  20.  
  21. #else
  22.  
  23. main()
  24. {
  25.     print("\n----------------------------------");
  26.     print(" [FS]animes OFF ! by Sr_Trojan");
  27.     print("----------------------------------\n");
  28. }
  29.  
  30. #endif
  31.  
  32. public OnGameModeInit()
  33. {
  34.     SetGameModeText("Este server tem o FS de animes feito por Sr_Trojan, visitem vicioemsamp.blogspot.com.br/");
  35.     return 1;
  36. }
  37.  
  38.  
  39. public OnPlayerCommandText(playerid, cmdtext[])
  40. {
  41. new cmd[256];
  42. if(strcmp("/handsup", cmd, true) == 0)
  43. {
  44. SetPlayerSpecialAction(playerid, 10);
  45. return 1;
  46. }
  47. if(strcmp("/ligar", cmd, true) == 0)
  48. {
  49. SetPlayerSpecialAction(playerid, 11);
  50. return 1;
  51. }
  52. if(strcmp("/desligar", cmd, true) == 0)
  53. {
  54. SetPlayerSpecialAction(playerid, 13);
  55. return 1;
  56. }
  57. if(strcmp("/bebado", cmd, true) == 0)
  58. {
  59. ApplyAnimation(playerid, "PED", "WALK_DRUNK", 4.0, 1, 1, 1, 1, 0);
  60. return 1;
  61. }
  62. if(strcmp("/apontar", cmd, true) == 0)
  63. {
  64. ApplyAnimation(playerid, "ped", "ARRESTgun", 4.0, 0, 1, 1, 1, -1);
  65. return 1;
  66. }
  67. if(strcmp("/merda", cmd, true) == 0)
  68. {
  69. ApplyAnimation(playerid, "RAPPING", "Laugh_01", 4.0, 0, 0, 0, 0, 0);
  70. return 1;
  71. }
  72. if(strcmp("/mascararse", cmd, true) == 0)
  73. {
  74. ApplyAnimation(playerid, "SHOP", "ROB_Shifty", 4.0, 0, 0, 0, 0, 0);
  75. return 1;
  76. }
  77. if(strcmp("/roubar", cmd, true) == 0)
  78. {
  79. ApplyAnimation(playerid, "SHOP", "ROB_Loop_Threat", 4.0, 1, 0, 0, 0, 0);
  80. return 1;
  81. }
  82. if(strcmp("/cruzarb", cmd, true) == 0)
  83. {
  84. ApplyAnimation(playerid, "COP_AMBIENT", "Coplook_loop", 4.0, 0, 1, 1, 1, -1);
  85. return 1;
  86. }
  87. if(strcmp("/deitar", cmd, true) == 0)
  88. {
  89. ApplyAnimation(playerid, "BEACH", "bather", 4.0, 1, 0, 0, 0, 0);
  90. return 1;
  91. }
  92. if(strcmp("/abaixar", cmd, true) == 0)
  93. {
  94. ApplyAnimation(playerid, "ped", "cower", 3.0, 1, 0, 0, 0, 0);
  95. return 1;
  96. }
  97. if(strcmp("/vomitar", cmd, true) == 0)
  98. {
  99. ApplyAnimation(playerid, "FOOD", "EAT_Vomit_P", 3.0, 0, 0, 0, 0, 0);
  100. return 1;
  101. }
  102. if(strcmp("/comer", cmd, true) == 0)
  103. {
  104. ApplyAnimation(playerid, "FOOD", "EAT_Burger", 3.0, 0, 0, 0, 0, 0);
  105. return 1;
  106. }
  107. if(strcmp("/rap", cmd, true) == 0)
  108. {
  109. ApplyAnimation(playerid, "ON_LOOKERS", "wave_loop", 4.0, 1, 0, 0, 0, 0);
  110. return 1;
  111. }
  112. if(strcmp("/passaramao", cmd, true) == 0)
  113. {
  114. ApplyAnimation(playerid, "SWEET", "sweet_ass_slap", 4.0, 0, 0, 0, 0, 0);
  115. return 1;
  116. }
  117. if(strcmp("/cobrar", cmd, true) == 0)
  118. {
  119. ApplyAnimation(playerid, "DEALER", "DEALER_DEAL", 4.0, 0, 0, 0, 0, 0);
  120. return 1;
  121. }
  122. if(strcmp("/overdose", cmd, true) == 0)
  123. {
  124. ApplyAnimation(playerid, "CRACK", "crckdeth2", 4.0, 1, 0, 0, 0, 0);
  125. return 1;
  126. }
  127. if(strcmp("/fumar", cmd, true) == 0)
  128. {
  129. ApplyAnimation(playerid, "SMOKING", "M_smklean_loop", 4.0, 1, 0, 0, 0, 0);
  130. return 1;
  131. }
  132. if(strcmp("/fumar2", cmd, true) == 0)
  133. {
  134. ApplyAnimation(playerid, "SMOKING", "F_smklean_loop", 4.0, 1, 0, 0, 0, 0);
  135. return 1;
  136. }
  137. if(strcmp("/sentar", cmd, true) == 0)
  138. {
  139. ApplyAnimation(playerid, "BEACH", "ParkSit_M_loop", 4.0, 1, 0, 0, 0, 0);
  140. return 1;
  141. }
  142. if(strcmp("/conversar", cmd, true) == 0)
  143. {
  144. ApplyAnimation(playerid, "PED", "IDLE_CHAT", 4.0, 0, 0, 0, 0, 0);
  145. return 1;
  146. }
  147. if(strcmp("/fodase", cmd, true) == 0)
  148. {
  149. ApplyAnimation(playerid, "PED", "fucku", 4.0, 0, 0, 0, 0, 0);
  150. return 1;
  151. }
  152. if(strcmp("/taichi", cmd, true) == 0)
  153. {
  154. ApplyAnimation(playerid, "PARK", "Tai_Chi_Loop", 4.0, 1, 0, 0, 0, 0);
  155. return 1;
  156. }
  157. if(strcmp("/observar", cmd, true) == 0)
  158. {
  159. ApplyAnimation(playerid, "BAR", "dnk_stndF_loop", 4.0, 1, 0, 0, 0, 0);
  160. return 1;
  161. }
  162. //---------------------Lista Animações------------------------------------
  163. if(strcmp("/animes", cmd, true) == 0)
  164. {
  165. SendClientMessage(playerid, 0xFFA500AA, "_________________________________________________ __________________________________________");
  166. SendClientMessage(playerid, 0xFF0000AA, "Lista de Animes :");
  167. SendClientMessage(playerid, 0xFFFFFFAA, "/handsup /ligar /desligar /bebado /apontar /merda /mascararse /creditoanimes");
  168. SendClientMessage(playerid, 0xFFFFFFAA, "/roubar /cruzarb /deitar /abaixar /vomitar /comer /rap /passaramao");
  169. SendClientMessage(playerid, 0xFFFFFFAA, "/cobrar /overdose /fumar /fumar2 /sentar /conversar /fodase /taichi /observar");
  170. SendClientMessage(playerid, 0xFFA500AA, "_________________________________________________ __________________________________________");
  171. return true;
  172. }
  173. if(strcmp("/creditoanimes", cmd, true) == 0)
  174. {
  175. SendClientMessage(playerid, 0xFFA500AA, "Criado por: Sr_Trojan");
  176. SendClientMessage(playerid, 0xFFA500AA, "Site: http://vicioemsamp.blogspot.com.br/");
  177. return 1;
  178. }
  179. return 0;
  180. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement