Advertisement
Guest User

Untitled

a guest
Nov 8th, 2013
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.32 KB | None | 0 0
  1. /*##############################################################################
  2.  
  3.  
  4. #########################################
  5. # #
  6. # Anims-FILTERSCRIPT BY: Jake Hunter #
  7. # v1.0 #
  8. # #
  9. #########################################
  10.  
  11. ##############################################################################*/
  12.  
  13.  
  14. // Includes
  15. #include <a_samp>
  16.  
  17. // Specific Anims defines
  18.  
  19. #define SPECIAL_ACTION_PISSING 68
  20.  
  21. // Colours
  22. #define COLOR_YELLOW 0xFFFF00AA
  23. #define COLOR_YELLOW2 0xF5DEB3AA
  24. #define ZUTA 0xFFFF00AA
  25. #define SVETLOPLAVA 0x33CCFFAA
  26. #define BELA 0xFFFFFFFF
  27.  
  28. public OnFilterScriptInit()
  29. {
  30. print("\n--------------------------------------");
  31. print(" Anim Sytem By: Jake Hunter ");
  32. print("--------------------------------------\n");
  33. return 1;
  34. }
  35.  
  36. public OnFilterScriptExit()
  37. {
  38. print("\n----------------------------------");
  39. print(" -G.O-Anims Unloaded ");
  40. print("----------------------------------\n");
  41. return 1;
  42. }
  43.  
  44. public OnPlayerConnect(playerid)
  45. {
  46. // SendClientMessage(playerid, COLOR_YELLOW,"Animations");
  47. return 1;
  48. }
  49.  
  50. public OnPlayerCommandText(playerid, cmdtext[])
  51. {
  52. if (strcmp("/animacii", cmdtext, true) == 0)
  53. {
  54. SendClientMessage(playerid,ZUTA,"________________________________________________________________________________________________________________________");
  55. SendClientMessage(playerid,SVETLOPLAVA,"Animacije:");
  56. SendClientMessage(playerid,BELA,"/handsup, /dance[1-4], /rap, /rap2, /rap3, /wankoff, /wank, /strip[1-7], /sexy[1-8], /bj[1-4], /cellin, /cellout, /lean, /piss, /follow");
  57. SendClientMessage(playerid,BELA,"/greet, /injured, /injured2, /hitch, /bitchslap, /cpr, /gsign1, /gsign2, /gsign3, /gsign4, /gsign5, /gift, /getup");
  58. SendClientMessage(playerid,BELA,"/chairsit, /stand, /slapped, /slapass, /drunk, /gwalk, /gwalk2, /mwalk, /fwalk, /celebrate, /celebrate2, /win, /win2");
  59. SendClientMessage(playerid,BELA,"/yes, /deal, /deal2, /thankyou, /invite1, /invite2, /sit, /scratch, /bomb, /getarrested, /laugh, /lookout, /robman");
  60. SendClientMessage(playerid,BELA,"/crossarms, /crossarms2, /crossarms3, /lay, /cover, /vomit, /eat, /wave, /crack, /crack2, /smokem, /smokef, /msit, /fsit");
  61. SendClientMessage(playerid,BELA,"/chat, /fucku, /taichi, /chairsit, /relax, /bat1, /bat2, /bat3, /bat4, /bat5, /nod, /cry1, /cry2, /chant, /carsmoke, /aim");
  62. SendClientMessage(playerid,BELA,"/gang1, /gang2, /gang3, /gang4, /gang5, /gang6, /gang7, /bed1, /bed2, /bed3, /bed4, /carsit, /carsit2, /stretch, /angry");
  63. SendClientMessage(playerid,BELA,"/kiss1, /kiss2, /kiss3, /kiss4, /kiss5, /kiss6, /kiss7, /kiss8, /exhausted, /ghand1, /ghand2, /ghand3, /ghand4, /ghand5");
  64. SendClientMessage(playerid,BELA,"/basket1, /basket2, /basket3, /basket4, /basket5, /basket6, /akick, /box, /cockgun");
  65. SendClientMessage(playerid,BELA,"/bar1, /bar2, /bar3, /bar4, /lay2, /liftup, /putdown, /die, /joint, /die2, /aim2");
  66. SendClientMessage(playerid,BELA,"/benddown, /checkout");
  67. SendClientMessage(playerid,ZUTA,"________________________________________________________________________________________________________________________");
  68. return 1;
  69. }
  70.  
  71. else if(strcmp(cmdtext, "/handsup", true) == 0)
  72. {
  73. SetPlayerSpecialAction(playerid,SPECIAL_ACTION_HANDSUP);
  74. return 1;
  75. }
  76.  
  77. else if(strcmp(cmdtext,"/stopanim",true) == 0)
  78. {
  79. ApplyAnimation(playerid, "CARRY", "crry_prtial", 2.0, 0, 0, 0, 0, 0);
  80. return 1;
  81. }
  82.  
  83. else if(strcmp(cmdtext, "/dance", true) == 0)
  84. {
  85. SetPlayerSpecialAction(playerid,SPECIAL_ACTION_DANCE1);
  86. return 1;
  87. }
  88.  
  89. else if(strcmp(cmdtext, "/dance2", true) == 0)
  90. {
  91. SetPlayerSpecialAction(playerid,SPECIAL_ACTION_DANCE2);
  92. return 1;
  93. }
  94.  
  95. else if(strcmp(cmdtext, "/dance3", true) == 0)
  96. {
  97. SetPlayerSpecialAction(playerid,SPECIAL_ACTION_DANCE3);
  98. return 1;
  99. }
  100.  
  101. else if(strcmp(cmdtext, "/dance4", true) == 0)
  102. {
  103. SetPlayerSpecialAction(playerid,SPECIAL_ACTION_DANCE4);
  104. return 1;
  105. }
  106. else if(strcmp(cmdtext, "/rap", true) == 0)
  107. {
  108. ApplyAnimation(playerid,"RAPPING","RAP_A_Loop",4.0,1,1,1,1,0);
  109. return 1;
  110. }
  111. else if(strcmp(cmdtext, "/swat", true) == 0)
  112. {
  113. ApplyAnimation(playerid,"SWAT","swt_wllshoot_in_L",4.0, 0, 1, 1, 1, -1);
  114. return 1;
  115. }
  116. else if(strcmp(cmdtext, "/swat1", true) == 0)
  117. {
  118. ApplyAnimation(playerid,"SWAT","swt_wllshoot_in_R",4.0, 0, 1, 1, 1, -1);
  119. return 1;
  120. }
  121. else if(strcmp(cmdtext, "/swat2", true) == 0)
  122. {
  123. ApplyAnimation(playerid,"SWAT","swt_wllshoot_out_L",4.0, 0, 1, 1, 1, -1);
  124. return 1;
  125. }
  126. else if(strcmp(cmdtext, "/swat3", true) == 0)
  127. {
  128. ApplyAnimation(playerid,"SWAT","swt_wllshoot_out_R",4.0, 0, 1, 1, 1, -1);
  129. return 1;
  130. }
  131. else if(strcmp(cmdtext, "/swat4", true) == 0)
  132. {
  133. ApplyAnimation(playerid,"SWAT","swt_wllshoot_in_R",4.0, 0, 1, 1, 1, -1);
  134. return 1;
  135. }
  136. else if(strcmp(cmdtext, "/swat5", true) == 0)
  137. {
  138. ApplyAnimation(playerid,"SWAT","swt_breach_01",4.0, 0, 1, 1, 1, -1);
  139. return 1;
  140. }
  141. else if(strcmp(cmdtext, "/swat6", true) == 0)
  142. {
  143. ApplyAnimation(playerid,"SWAT","swt_breach_02",4.0, 0, 1, 1, 1, -1);
  144. return 1;
  145. }
  146. else if(strcmp(cmdtext, "/swat7", true) == 0)
  147. {
  148. ApplyAnimation(playerid,"SWAT","swt_breach_03",4.0, 0, 1, 1, 1, -1);
  149. return 1;
  150. }
  151. else if(strcmp(cmdtext, "/swat8", true) == 0)
  152. {
  153. ApplyAnimation(playerid,"SWAT","Rail_fall_crawl",4.0, 0, 1, 1, 1, -1);
  154. return 1;
  155. }
  156. else if(strcmp(cmdtext, "/rap2", true) == 0)
  157. {
  158. ApplyAnimation(playerid,"RAPPING","RAP_B_Loop",4.0,1,1,1,1,0);
  159. return 1;
  160. }
  161.  
  162. else if(strcmp(cmdtext, "/rap3", true) == 0)
  163. {
  164. ApplyAnimation(playerid,"RAPPING","RAP_C_Loop",4.0,1,1,1,1,0);
  165. return 1;
  166. }
  167.  
  168. else if(strcmp(cmdtext, "/wankoff", true) == 0)
  169. {
  170. ApplyAnimation(playerid,"PAULNMAC","wank_in",4.0,1,1,1,1,0);
  171. return 1;
  172. }
  173.  
  174. else if(strcmp(cmdtext, "/wank", true) == 0)
  175. {
  176. ApplyAnimation(playerid,"PAULNMAC","wank_loop",4.0,1,1,1,1,0);
  177. return 1;
  178. }
  179.  
  180. else if(strcmp(cmdtext, "/strip", true) == 0)
  181. {
  182. ApplyAnimation(playerid,"STRIP","strip_A",4.0,1,1,1,1,0);
  183. return 1;
  184. }
  185.  
  186. else if(strcmp(cmdtext, "/strip2", true) == 0)
  187. {
  188. ApplyAnimation(playerid,"STRIP","strip_B",4.0,1,1,1,1,0);
  189. return 1;
  190. }
  191.  
  192. else if(strcmp(cmdtext, "/strip3", true) == 0)
  193. {
  194. ApplyAnimation(playerid,"STRIP","strip_C",4.0,1,1,1,1,0);
  195. return 1;
  196. }
  197.  
  198. else if(strcmp(cmdtext, "/strip4", true) == 0)
  199. {
  200. ApplyAnimation(playerid,"STRIP","strip_D",4.0,1,1,1,1,0);
  201. return 1;
  202. }
  203.  
  204. else if(strcmp(cmdtext, "/strip5", true) == 0)
  205. {
  206. ApplyAnimation(playerid,"STRIP","strip_E",4.0,1,1,1,1,0);
  207. return 1;
  208. }
  209.  
  210. else if(strcmp(cmdtext, "/strip6", true) == 0)
  211. {
  212. ApplyAnimation(playerid,"STRIP","strip_F",4.0,1,1,1,1,0);
  213. return 1;
  214. }
  215.  
  216. else if(strcmp(cmdtext, "/strip7", true) == 0)
  217. {
  218. ApplyAnimation(playerid,"STRIP","strip_G",4.0,1,1,1,1,0);
  219. return 1;
  220. }
  221.  
  222. else if(strcmp(cmdtext, "/sexy", true) == 0)
  223. {
  224. ApplyAnimation(playerid,"SNM","SPANKING_IDLEW",4.1,0,1,1,1,1);
  225. return 1;
  226. }
  227.  
  228. else if(strcmp(cmdtext, "/sexy2", true) == 0)
  229. {
  230. ApplyAnimation(playerid,"SNM","SPANKING_IDLEP",4.1,0,1,1,1,1);
  231. return 1;
  232. }
  233.  
  234. else if(strcmp(cmdtext, "/sexy3", true) == 0)
  235. {
  236. ApplyAnimation(playerid,"SNM","SPANKINGW",4.1,0,1,1,1,1);
  237. return 1;
  238. }
  239.  
  240. else if(strcmp(cmdtext, "/sexy4", true) == 0)
  241. {
  242. ApplyAnimation(playerid,"SNM","SPANKINGP",4.1,0,1,1,1,1);
  243. return 1;
  244. }
  245.  
  246. else if(strcmp(cmdtext, "/sexy5", true) == 0)
  247. {
  248. ApplyAnimation(playerid,"SNM","SPANKEDW",4.1,0,1,1,1,1);
  249. return 1;
  250. }
  251.  
  252. else if(strcmp(cmdtext, "/sexy6", true) == 0)
  253. {
  254. ApplyAnimation(playerid,"SNM","SPANKEDP",4.1,0,1,1,1,1);
  255. return 1;
  256. }
  257.  
  258. else if(strcmp(cmdtext, "/sexy7", true) == 0)
  259. {
  260. ApplyAnimation(playerid,"SNM","SPANKING_ENDW",4.1,0,1,1,1,1);
  261. return 1;
  262. }
  263.  
  264. else if(strcmp(cmdtext, "/sexy8", true) == 0)
  265. {
  266. ApplyAnimation(playerid,"SNM","SPANKING_ENDP",4.1,0,1,1,1,1);
  267. return 1;
  268. }
  269.  
  270. else if(strcmp(cmdtext, "/bj", true) == 0)
  271. {
  272. ApplyAnimation(playerid,"BLOWJOBZ","BJ_COUCH_START_P",4.1,0,1,1,1,1);
  273. return 1;
  274. }
  275.  
  276. else if(strcmp(cmdtext, "/bj2", true) == 0)
  277. {
  278. ApplyAnimation(playerid,"BLOWJOBZ","BJ_COUCH_START_W",4.1,0,1,1,1,1);
  279. return 1;
  280. }
  281.  
  282. else if(strcmp(cmdtext, "/bj3", true) == 0)
  283. {
  284. ApplyAnimation(playerid,"BLOWJOBZ","BJ_COUCH_LOOP_P",4.1,0,1,1,1,1);
  285. return 1;
  286. }
  287.  
  288. else if(strcmp(cmdtext, "/bj4", true) == 0)
  289. {
  290. ApplyAnimation(playerid,"BLOWJOBZ","BJ_COUCH_LOOP_W",4.1,0,1,1,1,1);
  291. return 1;
  292. }
  293.  
  294. else if(strcmp(cmdtext, "/cellin", true) == 0)
  295. {
  296. SetPlayerSpecialAction(playerid,SPECIAL_ACTION_USECELLPHONE);
  297. return 1;
  298. }
  299.  
  300. else if(strcmp(cmdtext, "/cellout", true) == 0)
  301. {
  302. SetPlayerSpecialAction(playerid,SPECIAL_ACTION_STOPUSECELLPHONE);
  303. return 1;
  304. }
  305.  
  306. else if(strcmp(cmdtext, "/lean", true) == 0)
  307. {
  308. ApplyAnimation(playerid,"GANGS","leanIDLE", 4.0, 1, 0, 0, 0, 0);
  309. return 1;
  310. }
  311.  
  312. else if(strcmp(cmdtext, "/piss", true) == 0)
  313. {
  314. SetPlayerSpecialAction(playerid, 68);
  315. return 1;
  316. }
  317.  
  318. else if(strcmp(cmdtext, "/follow", true) == 0)
  319. {
  320. ApplyAnimation(playerid,"WUZI","Wuzi_follow",4.0,0,0,0,0,0);
  321. return 1;
  322. }
  323.  
  324. else if(strcmp(cmdtext, "/greet", true) == 0)
  325. {
  326. ApplyAnimation(playerid,"WUZI","Wuzi_Greet_Wuzi",4.0,0,0,0,0,0);
  327. return 1;
  328. }
  329.  
  330. else if(strcmp(cmdtext, "/stand", true) == 0)
  331. {
  332. ApplyAnimation(playerid,"WUZI","Wuzi_stand_loop", 4.0, 1, 0, 0, 0, 0);
  333. return 1;
  334. }
  335.  
  336. else if(strcmp(cmdtext, "/injured2", true) == 0)
  337. {
  338. ApplyAnimation(playerid,"SWAT","gnstwall_injurd", 4.0, 1, 0, 0, 0, 0);
  339. return 1;
  340. }
  341.  
  342. else if(strcmp(cmdtext, "/hitch", true) == 0)
  343. {
  344. ApplyAnimation(playerid,"MISC","Hiker_Pose", 4.0, 1, 0, 0, 0, 0);
  345. return 1;
  346. }
  347.  
  348. else if(strcmp(cmdtext, "/bitchslap", true) == 0)
  349. {
  350. ApplyAnimation(playerid,"MISC","bitchslap",4.0,0,0,0,0,0);
  351. return 1;
  352. }
  353.  
  354. else if(strcmp(cmdtext, "/cpr", true) == 0)
  355. {
  356. ApplyAnimation(playerid,"MEDIC","CPR", 4.0, 1, 0, 0, 0, 0);
  357. return 1;
  358. }
  359.  
  360. else if(strcmp(cmdtext, "/gsign1", true) == 0)
  361. {
  362. ApplyAnimation(playerid,"GHANDS","gsign1",4.0,0,1,1,1,1);
  363. return 1;
  364. }
  365.  
  366. else if(strcmp(cmdtext, "/gsign2", true) == 0)
  367. {
  368. ApplyAnimation(playerid,"GHANDS","gsign2",4.0,0,1,1,1,1);
  369. return 1;
  370. }
  371.  
  372. else if(strcmp(cmdtext, "/gsign3", true) == 0)
  373. {
  374. ApplyAnimation(playerid,"GHANDS","gsign3",4.0,0,1,1,1,1);
  375. return 1;
  376. }
  377.  
  378. else if(strcmp(cmdtext, "/gsign4", true) == 0)
  379. {
  380. ApplyAnimation(playerid,"GHANDS","gsign4",4.0,0,1,1,1,1);
  381. return 1;
  382. }
  383.  
  384. else if(strcmp(cmdtext, "/gsign5", true) == 0)
  385. {
  386. ApplyAnimation(playerid,"GHANDS","gsign5",4.0,0,1,1,1,1);
  387. return 1;
  388. }
  389.  
  390. else if(strcmp(cmdtext, "/gift", true) == 0)
  391. {
  392. ApplyAnimation(playerid,"KISSING","gift_give",4.0,0,0,0,0,0);
  393. return 1;
  394. }
  395.  
  396. else if(strcmp(cmdtext, "/chairsit", true) == 0)
  397. {
  398. ApplyAnimation(playerid,"PED","SEAT_idle", 4.0, 1, 0, 0, 0, 0);
  399. return 1;
  400. }
  401.  
  402. else if(strcmp(cmdtext, "/injured", true) == 0) {
  403.  
  404. ApplyAnimation(playerid,"SWEET","Sweet_injuredloop", 4.0, 1, 0, 0, 0, 0);
  405. return 1;
  406. }
  407.  
  408. else if(strcmp(cmdtext, "/slapped", true) == 0)
  409. {
  410. ApplyAnimation(playerid,"SWEET","ho_ass_slapped",4.0,0,0,0,0,0);
  411. return 1;
  412. }
  413.  
  414. else if(strcmp(cmdtext, "/slapass", true) == 0)
  415. {
  416. ApplyAnimation(playerid,"SWEET","sweet_ass_slap",4.0,0,0,0,0,0);
  417. return 1;
  418. }
  419.  
  420. else if(strcmp(cmdtext, "/drunk", true) == 0)
  421. {
  422. ApplyAnimation(playerid,"PED","WALK_DRUNK",4.1,1,1,1,1,1);
  423. return 1;
  424. }
  425.  
  426. else if(strcmp(cmdtext, "/skate", true) == 0)
  427. {
  428. ApplyAnimation(playerid,"SKATE","skate_run",4.1,1,1,1,1,1);
  429. return 1;
  430. }
  431.  
  432. else if(strcmp(cmdtext, "/gwalk", true) == 0) {
  433. ApplyAnimation(playerid,"PED","WALK_gang1",4.1,1,1,1,1,1);
  434. return 1;
  435. }
  436.  
  437. else if(strcmp(cmdtext, "/gwalk2", true) == 0)
  438. {
  439. ApplyAnimation(playerid,"PED","WALK_gang2",4.1,1,1,1,1,1);
  440. return 1;
  441. }
  442.  
  443. else if(strcmp(cmdtext, "/limp", true) == 0)
  444. {
  445. ApplyAnimation(playerid,"PED","WALK_old",4.1,1,1,1,1,1);
  446. return 1;
  447. }
  448.  
  449. else if(strcmp(cmdtext, "/eatsit", true) == 0)
  450. {
  451. ApplyAnimation(playerid,"FOOD","FF_Sit_Loop", 4.0, 1, 0, 0, 0, 0);
  452. return 1;
  453. }
  454.  
  455. else if(strcmp(cmdtext, "/celebrate", true) == 0)
  456. {
  457. ApplyAnimation(playerid,"benchpress","gym_bp_celebrate", 4.0, 1, 0, 0, 0, 0);
  458. return 1;
  459. }
  460.  
  461. else if(strcmp(cmdtext, "/win", true) == 0)
  462. {
  463. ApplyAnimation(playerid,"CASINO","cards_win", 4.0, 1, 0, 0, 0, 0);
  464. return 1;
  465. }
  466.  
  467. else if(strcmp(cmdtext, "/win2", true) == 0)
  468. {
  469. ApplyAnimation(playerid,"CASINO","Roulette_win", 4.0, 1, 0, 0, 0, 0);
  470. return 1;
  471. }
  472.  
  473. else if(strcmp(cmdtext, "/yes", true) == 0)
  474. {
  475. ApplyAnimation(playerid,"CLOTHES","CLO_Buy", 4.0, 1, 0, 0, 0, 0);
  476. return 1;
  477. }
  478.  
  479. else if(strcmp(cmdtext, "/deal2", true) == 0)
  480. {
  481. ApplyAnimation(playerid,"DEALER","DRUGS_BUY", 4.0, 1, 0, 0, 0, 0);
  482. return 1;
  483. }
  484.  
  485. else if(strcmp(cmdtext, "/thankyou", true) == 0)
  486. {
  487. ApplyAnimation(playerid,"FOOD","SHP_Thank", 4.0, 1, 0, 0, 0, 0);
  488. return 1;
  489. }
  490.  
  491. else if(strcmp(cmdtext, "/invite1", true) == 0)
  492. {
  493. ApplyAnimation(playerid,"GANGS","Invite_Yes",4.1,0,1,1,1,1);
  494. return 1;
  495. }
  496.  
  497. else if(strcmp(cmdtext, "/invite2", true) == 0)
  498. {
  499. ApplyAnimation(playerid,"GANGS","Invite_No",4.1,0,1,1,1,1);
  500. return 1;
  501. }
  502.  
  503. else if(strcmp(cmdtext, "/celebrate2", true) == 0)
  504. {
  505. ApplyAnimation(playerid,"GYMNASIUM","gym_tread_celebrate", 4.0, 1, 0, 0, 0, 0);
  506. return 1;
  507. }
  508.  
  509. else if(strcmp(cmdtext, "/sit", true) == 0)
  510. {
  511. ApplyAnimation(playerid,"INT_OFFICE","OFF_Sit_Type_Loop", 4.0, 1, 0, 0, 0, 0);
  512. return 1;
  513. }
  514.  
  515. else if(strcmp(cmdtext, "/scratch", true) == 0)
  516. {
  517. ApplyAnimation(playerid,"MISC","Scratchballs_01", 4.0, 1, 0, 0, 0, 0);
  518. return 1;
  519. }
  520.  
  521. else if (strcmp("/bomb", cmdtext, true) == 0)
  522. {
  523. ClearAnimations(playerid);
  524. ApplyAnimation(playerid, "BOMBER", "BOM_Plant", 4.0, 0, 0, 0, 0, 0); // Place Bomb
  525. return 1;
  526. }
  527.  
  528. else if (strcmp("/getarrested", cmdtext, true, 7) == 0)
  529. {
  530. ApplyAnimation(playerid,"ped", "ARRESTgun", 4.0, 0, 1, 1, 1, -1); // Gun Arrest
  531. return 1;
  532. }
  533.  
  534. else if (strcmp("/laugh", cmdtext, true) == 0)
  535. {
  536. ApplyAnimation(playerid, "RAPPING", "Laugh_01", 4.0, 0, 0, 0, 0, 0); // Laugh
  537. return 1;
  538. }
  539.  
  540. else if (strcmp("/lookout", cmdtext, true) == 0)
  541. {
  542. ApplyAnimation(playerid, "SHOP", "ROB_Shifty", 4.0, 0, 0, 0, 0, 0); // Rob Lookout
  543. return 1;
  544. }
  545.  
  546. else if (strcmp("/robman", cmdtext, true) == 0)
  547. {
  548. ApplyAnimation(playerid, "SHOP", "ROB_Loop_Threat", 4.0, 1, 0, 0, 0, 0); // Rob
  549. return 1;
  550. }
  551.  
  552. else if (strcmp("/crossarms", cmdtext, true) == 0)
  553. {
  554. ApplyAnimation(playerid, "COP_AMBIENT", "Coplook_loop", 4.0, 0, 1, 1, 1, -1); // Arms crossed
  555. return 1;
  556. }
  557.  
  558. else if (strcmp("/crossarms2", cmdtext, true) == 0)
  559. {
  560. ApplyAnimation(playerid, "DEALER", "DEALER_IDLE", 4.0, 0, 1, 1, 1, -1); // Arms crossed 2
  561. return 1;
  562. }
  563.  
  564. else if (strcmp("/crossarms3", cmdtext, true) == 0)
  565. {
  566. ApplyAnimation(playerid, "DEALER", "DEALER_IDLE_01", 4.0, 0, 1, 1, 1, -1); // Arms crossed 3
  567. return 1;
  568. }
  569.  
  570. else if (strcmp("/lay", cmdtext, true, 6) == 0)
  571. {
  572. ApplyAnimation(playerid,"BEACH", "bather", 4.0, 1, 0, 0, 0, 0); // Lay down
  573. return 1;
  574. }
  575.  
  576. else if (strcmp("/vomit", cmdtext, true) == 0)
  577. {
  578. ApplyAnimation(playerid, "FOOD", "EAT_Vomit_P", 3.0, 0, 0, 0, 0, 0); // Vomit
  579. return 1;
  580. }
  581.  
  582. else if (strcmp("/eat", cmdtext, true) == 0) {
  583. ApplyAnimation(playerid, "FOOD", "EAT_Burger", 3.0, 0, 0, 0, 0, 0); // Eat Burger
  584. return 1;
  585. }
  586.  
  587. else if (strcmp("/wave", cmdtext, true) == 0) {
  588. ApplyAnimation(playerid, "ON_LOOKERS", "wave_loop", 4.0, 1, 0, 0, 0, 0); // Wave
  589. return 1;
  590. }
  591.  
  592. else if (strcmp("/deal", cmdtext, true) == 0) {
  593. ApplyAnimation(playerid, "DEALER", "DEALER_DEAL", 3.0, 0, 0, 0, 0, 0); // Deal Drugs
  594. return 1;
  595. }
  596.  
  597. else if (strcmp("/crack", cmdtext, true, 6) == 0) {
  598. ApplyAnimation(playerid, "CRACK", "crckdeth2", 4.0, 1, 0, 0, 0, 0); // Dieing of Crack
  599. return 1;
  600. }
  601.  
  602. else if (strcmp("/smokem", cmdtext, true, 4) == 0) {
  603. ApplyAnimation(playerid,"SMOKING", "M_smklean_loop", 4.0, 1, 0, 0, 0, 0); // Smoke
  604. return 1;
  605. }
  606.  
  607. else if (strcmp("/smokef", cmdtext, true) == 0) {
  608. ApplyAnimation(playerid, "SMOKING", "F_smklean_loop", 4.0, 1, 0, 0, 0, 0); // Female Smoking
  609. return 1;
  610. }
  611.  
  612. else if (strcmp("/msit", cmdtext, true, 4) == 0) {
  613. ApplyAnimation(playerid,"BEACH", "ParkSit_M_loop", 4.0, 1, 0, 0, 0, 0); // Male Sit
  614. return 1;
  615. }
  616.  
  617. else if (strcmp("/fsit", cmdtext, true, 4) == 0) {
  618. ApplyAnimation(playerid,"BEACH", "ParkSit_W_loop", 4.0, 1, 0, 0, 0, 0); // Female Sit
  619. return 1;
  620. }
  621.  
  622. else if(strcmp(cmdtext, "/chat", true) == 0) {
  623. ApplyAnimation(playerid,"PED","IDLE_CHAT",4.1,1,1,1,1,1);
  624. return 1;
  625. }
  626.  
  627. else if(strcmp(cmdtext, "/fucku", true) == 0)
  628. {
  629. ApplyAnimation(playerid,"PED","fucku",4.0,0,0,0,0,0);
  630. return 1;
  631. }
  632.  
  633. else if(strcmp(cmdtext, "/taichi", true) == 0)
  634. {
  635. ApplyAnimation(playerid,"PARK","Tai_Chi_Loop", 4.0, 1, 0, 0, 0, 0);
  636. return 1;
  637. }
  638.  
  639. else if(strcmp(cmdtext, "/chairsit", true) == 0)
  640. {
  641. ApplyAnimation(playerid,"BAR","dnk_stndF_loop", 4.0, 1, 0, 0, 0, 0);
  642. return 1;
  643. }
  644.  
  645. else if(strcmp(cmdtext, "/relax", true) == 0)
  646. {
  647. ApplyAnimation(playerid,"BEACH","Lay_Bac_Loop", 4.0, 1, 0, 0, 0, 0);
  648. return 1;
  649. }
  650.  
  651. else if(strcmp(cmdtext, "/bat1", true) == 0)
  652. {
  653. ApplyAnimation(playerid,"BASEBALL","Bat_IDLE", 4.0, 1, 0, 0, 0, 0);
  654. return 1;
  655. }
  656.  
  657. else if(strcmp(cmdtext, "/bat2", true) == 0)
  658. {
  659. ApplyAnimation(playerid,"BASEBALL","Bat_M", 4.0, 1, 0, 0, 0, 0);
  660. return 1;
  661. }
  662.  
  663. else if(strcmp(cmdtext, "/bat3", true) == 0)
  664. {
  665. ApplyAnimation(playerid,"BASEBALL","BAT_PART", 4.0, 1, 0, 0, 0, 0);
  666. return 1;
  667. }
  668.  
  669. else if(strcmp(cmdtext, "/bat4", true) == 0)
  670. {
  671. ApplyAnimation(playerid,"CRACK","Bbalbat_Idle_01", 4.0, 1, 0, 0, 0, 0);
  672. return 1;
  673. }
  674.  
  675. else if(strcmp(cmdtext, "/bat5", true) == 0)
  676. {
  677. ApplyAnimation(playerid,"CRACK","Bbalbat_Idle_02", 4.0, 1, 0, 0, 0, 0);
  678. return 1;
  679. }
  680.  
  681. else if(strcmp(cmdtext, "/nod", true) == 0)
  682. {
  683. ApplyAnimation(playerid,"COP_AMBIENT","Coplook_nod",4.0,0,0,0,0,0);
  684. return 1;
  685. }
  686.  
  687. else if(strcmp(cmdtext, "/gang1", true) == 0)
  688. {
  689. ApplyAnimation(playerid,"GANGS","hndshkaa",4.0,0,0,0,0,0);
  690. return 1;
  691. }
  692.  
  693. else if(strcmp(cmdtext, "/gang2", true) == 0)
  694. {
  695. ApplyAnimation(playerid,"GANGS","hndshkba",4.0,0,0,0,0,0);
  696. return 1;
  697. }
  698.  
  699. else if(strcmp(cmdtext, "/gang3", true) == 0)
  700. {
  701. ApplyAnimation(playerid,"GANGS","hndshkca",4.0,0,0,0,0,0);
  702. return 1;
  703. }
  704.  
  705. else if(strcmp(cmdtext, "/gang4", true) == 0)
  706. {
  707. ApplyAnimation(playerid,"GANGS","hndshkcb",4.0,0,0,0,0,0);
  708. return 1;
  709. }
  710.  
  711. else if(strcmp(cmdtext, "/gang5", true) == 0)
  712. {
  713. ApplyAnimation(playerid,"GANGS","hndshkda",4.0,0,0,0,0,0);
  714. return 1;
  715. }
  716.  
  717. else if(strcmp(cmdtext, "/gang6", true) == 0)
  718. {
  719. ApplyAnimation(playerid,"GANGS","hndshkea",4.0,0,0,0,0,0);
  720. return 1;
  721. }
  722.  
  723. else if(strcmp(cmdtext, "/gang7", true) == 0)
  724. {
  725. ApplyAnimation(playerid,"GANGS","hndshkfa",4.0,0,0,0,0,0);
  726. return 1;
  727. }
  728.  
  729. else if(strcmp(cmdtext, "/cry1", true) == 0)
  730. {
  731. ApplyAnimation(playerid,"GRAVEYARD","mrnF_loop", 4.0, 1, 0, 0, 0, 0);
  732. return 1;
  733. }
  734.  
  735. else if(strcmp(cmdtext, "/cry2", true) == 0)
  736. {
  737. ApplyAnimation(playerid,"GRAVEYARD","mrnM_loop", 4.0, 1, 0, 0, 0, 0);
  738. return 1;
  739. }
  740.  
  741. else if(strcmp(cmdtext, "/bed1", true) == 0)
  742. {
  743. ApplyAnimation(playerid,"INT_HOUSE","BED_In_L",4.1,0,1,1,1,1);
  744. return 1;
  745. }
  746.  
  747. else if(strcmp(cmdtext, "/bed2", true) == 0)
  748. {
  749. ApplyAnimation(playerid,"INT_HOUSE","BED_In_R",4.1,0,1,1,1,1);
  750. return 1;
  751. }
  752.  
  753. else if(strcmp(cmdtext, "/bed3", true) == 0)
  754. {
  755. ApplyAnimation(playerid,"INT_HOUSE","BED_Loop_L", 4.0, 1, 0, 0, 0, 0);
  756. return 1;
  757. }
  758.  
  759. else if(strcmp(cmdtext, "/bed4", true) == 0)
  760. {
  761. ApplyAnimation(playerid,"INT_HOUSE","BED_Loop_R", 4.0, 1, 0, 0, 0, 0);
  762. return 1;
  763. }
  764.  
  765. else if(strcmp(cmdtext, "/kiss2", true) == 0)
  766. {
  767. ApplyAnimation(playerid,"BD_FIRE","Grlfrd_Kiss_03",4.0,0,0,0,0,0);
  768. return 1;
  769. }
  770.  
  771. else if(strcmp(cmdtext, "/kiss3", true) == 0)
  772. {
  773.  
  774. ApplyAnimation(playerid,"KISSING","Grlfrd_Kiss_01",4.0,0,0,0,0,0);
  775. return 1;
  776. }
  777.  
  778. else if(strcmp(cmdtext, "/kiss4", true) == 0)
  779. {
  780. ApplyAnimation(playerid,"KISSING","Grlfrd_Kiss_02",4.0,0,0,0,0,0);
  781. return 1;
  782. }
  783.  
  784. else if(strcmp(cmdtext, "/kiss5", true) == 0)
  785. {
  786. ApplyAnimation(playerid,"KISSING","Grlfrd_Kiss_03",4.0,0,0,0,0,0);
  787. return 1;
  788. }
  789.  
  790. else if(strcmp(cmdtext, "/kiss6", true) == 0)
  791. {
  792. ApplyAnimation(playerid,"KISSING","Playa_Kiss_01",4.0,0,0,0,0,0);
  793. return 1;
  794. }
  795.  
  796. else if(strcmp(cmdtext, "/kiss7", true) == 0)
  797. {
  798. ApplyAnimation(playerid,"KISSING","Playa_Kiss_02",4.0,0,0,0,0,0);
  799. return 1;
  800. }
  801.  
  802. else if(strcmp(cmdtext, "/kiss8", true) == 0)
  803. {
  804. ApplyAnimation(playerid,"KISSING","Playa_Kiss_03",4.0,0,0,0,0,0);
  805. return 1;
  806. }
  807.  
  808. else if(strcmp(cmdtext, "/carsit", true) == 0)
  809. {
  810. ApplyAnimation(playerid,"CAR","Tap_hand", 4.0, 1, 0, 0, 0, 0);
  811. return 1;
  812. }
  813.  
  814. else if(strcmp(cmdtext, "/carsit2", true) == 0)
  815. {
  816. ApplyAnimation(playerid,"LOWRIDER","Sit_relaxed", 4.0, 1, 0, 0, 0, 0);
  817. return 1;
  818. }
  819.  
  820. else if(strcmp(cmdtext, "/fwalk", true) == 0)
  821. {
  822. ApplyAnimation(playerid,"ped","WOMAN_walksexy",4.1,1,1,1,1,1);
  823. return 1;
  824. }
  825.  
  826. else if(strcmp(cmdtext, "/mwalk", true) == 0)
  827. {
  828. ApplyAnimation(playerid,"ped","WALK_player",4.1,1,1,1,1,1);
  829. return 1;
  830. }
  831.  
  832. else if(strcmp(cmdtext, "/stretch", true) == 0)
  833. {
  834. ApplyAnimation(playerid,"PLAYIDLES","stretch",4.0,0,0,0,0,0);
  835. return 1;
  836. }
  837.  
  838. else if(strcmp(cmdtext, "/chant", true) == 0)
  839. {
  840. ApplyAnimation(playerid,"RIOT","RIOT_CHANT", 4.0, 1, 0, 0, 0, 0);
  841. return 1;
  842. }
  843.  
  844. else if(strcmp(cmdtext, "/angry", true) == 0)
  845. {
  846. ApplyAnimation(playerid,"RIOT","RIOT_ANGRY",4.0,0,0,0,0,0);
  847. return 1;
  848. }
  849.  
  850. else if (strcmp("/crack2", cmdtext, true, 6) == 0)
  851. {
  852. ApplyAnimation(playerid, "CRACK", "crckidle2", 4.0, 1, 0, 0, 0, 0);
  853. return 1;
  854. }
  855.  
  856. else if(strcmp(cmdtext, "/ghand1", true) == 0)
  857. {
  858. ApplyAnimation(playerid,"GHANDS","gsign1LH",4.0,0,1,1,1,1);
  859. return 1;
  860. }
  861.  
  862. else if(strcmp(cmdtext, "/ghand2", true) == 0)
  863. {
  864. ApplyAnimation(playerid,"GHANDS","gsign2LH",4.0,0,1,1,1,1);
  865. return 1;
  866. }
  867. else if(strcmp(cmdtext, "/ghand3", true) == 0)
  868. {
  869. ApplyAnimation(playerid,"GHANDS","gsign3LH",4.0,0,1,1,1,1);
  870. return 1;
  871. }
  872.  
  873. else if(strcmp(cmdtext, "/ghand4", true) == 0)
  874. {
  875. ApplyAnimation(playerid,"GHANDS","gsign4LH",4.0,0,1,1,1,1);
  876. return 1;
  877. }
  878.  
  879. else if(strcmp(cmdtext, "/ghand5", true) == 0)
  880. {
  881. ApplyAnimation(playerid,"GHANDS","gsign5LH",4.0,0,1,1,1,1);
  882. return 1;
  883. }
  884.  
  885. else if(strcmp(cmdtext, "/exhausted", true) == 0)
  886. {
  887. ApplyAnimation(playerid,"FAT","IDLE_tired", 4.0, 1, 0, 0, 0, 0);
  888. return 1;
  889. }
  890.  
  891. else if(strcmp(cmdtext, "/carsmoke", true) == 0)
  892. {
  893. ApplyAnimation(playerid,"PED","Smoke_in_car", 4.0, 1, 0, 0, 0, 0);
  894. return 1;
  895. }
  896.  
  897. else if(strcmp(cmdtext, "/aim", true) == 0)
  898. {
  899. ApplyAnimation(playerid,"PED","gang_gunstand", 4.0, 1, 0, 0, 0, 0);
  900. return 1;
  901. }
  902.  
  903. else if(strcmp(cmdtext, "/getup", true) == 0)
  904. {
  905. ApplyAnimation(playerid,"PED","getup",4.0,0,0,0,0,0);
  906. return 1;
  907. }
  908.  
  909. else if(strcmp(cmdtext, "/basket1", true) == 0)
  910. {
  911. ApplyAnimation(playerid,"BSKTBALL","BBALL_def_loop", 4.0, 1, 0, 0, 0, 0);
  912. return 1;
  913. }
  914.  
  915. else if(strcmp(cmdtext, "/basket2", true) == 0)
  916. {
  917. ApplyAnimation(playerid,"BSKTBALL","BBALL_idleloop", 4.0, 1, 0, 0, 0, 0);
  918. return 1;
  919. }
  920.  
  921. else if(strcmp(cmdtext, "/basket3", true) == 0)
  922. {
  923. ApplyAnimation(playerid,"BSKTBALL","BBALL_pickup",4.0,0,0,0,0,0);
  924. return 1;
  925. }
  926.  
  927. else if(strcmp(cmdtext, "/basket4", true) == 0)
  928. {
  929. ApplyAnimation(playerid,"BSKTBALL","BBALL_Jump_Shot",4.0,0,0,0,0,0);
  930. return 1;
  931. }
  932.  
  933. else if(strcmp(cmdtext, "/basket5", true) == 0)
  934. {
  935. ApplyAnimation(playerid,"BSKTBALL","BBALL_Dnk",4.1,0,1,1,1,1);
  936. return 1;
  937. }
  938.  
  939. else if(strcmp(cmdtext, "/basket6", true) == 0)
  940. {
  941. ApplyAnimation(playerid,"BSKTBALL","BBALL_run",4.1,1,1,1,1,1);
  942. return 1;
  943. }
  944.  
  945. else if(strcmp(cmdtext, "/akick", true) == 0)
  946. {
  947. ApplyAnimation(playerid,"FIGHT_E","FightKick",4.0,0,0,0,0,0);
  948. return 1;
  949. }
  950.  
  951. else if(strcmp(cmdtext, "/box", true) == 0)
  952. {
  953. ApplyAnimation(playerid,"GYMNASIUM","gym_shadowbox",4.1,1,1,1,1,1);
  954. return 1;
  955. }
  956.  
  957. else if(strcmp(cmdtext, "/cockgun", true) == 0)
  958. {
  959. ApplyAnimation(playerid, "SILENCED", "Silence_reload", 3.0, 0, 0, 0, 0, 0);
  960. return 1;
  961. }
  962.  
  963. else if(strcmp(cmdtext, "/bar1", true) == 0)
  964. {
  965. ApplyAnimation(playerid, "BAR", "Barcustom_get", 3.0, 0, 0, 0, 0, 0);
  966. return 1;
  967. }
  968.  
  969. else if(strcmp(cmdtext, "/bar2", true) == 0)
  970. {
  971. ApplyAnimation(playerid, "BAR", "Barcustom_order", 3.0, 0, 0, 0, 0, 0);
  972. return 1;
  973. }
  974.  
  975. else if(strcmp(cmdtext, "/bar3", true) == 0)
  976. {
  977. ApplyAnimation(playerid, "BAR", "Barserve_give", 3.0, 0, 0, 0, 0, 0);
  978. return 1;
  979. }
  980.  
  981. else if(strcmp(cmdtext, "/bar4", true) == 0)
  982. {
  983. ApplyAnimation(playerid, "BAR", "Barserve_glass", 3.0, 0, 0, 0, 0, 0);
  984. return 1;
  985. }
  986.  
  987. else if (strcmp("/lay2", cmdtext, true, 6) == 0)
  988. {
  989. ApplyAnimation(playerid,"BEACH", "SitnWait_loop_W", 4.0, 1, 0, 0, 0, 0); // Lay down
  990. return 1;
  991. }
  992.  
  993. else if(strcmp(cmdtext, "/liftup", true) == 0)
  994. {
  995. ApplyAnimation(playerid, "CARRY", "liftup", 3.0, 0, 0, 0, 0, 0);
  996. return 1;
  997. }
  998.  
  999. else if(strcmp(cmdtext, "/putdown", true) == 0)
  1000. {
  1001. ApplyAnimation(playerid, "CARRY", "putdwn", 3.0, 0, 0, 0, 0, 0);
  1002. return 1;
  1003. }
  1004.  
  1005. else if(strcmp(cmdtext, "/joint", true) == 0)
  1006. {
  1007. ApplyAnimation(playerid,"GANGS","smkcig_prtl",4.0,0,1,1,1,1);
  1008. return 1;
  1009. }
  1010.  
  1011. else if(strcmp(cmdtext, "/die", true) == 0)
  1012. {
  1013. ApplyAnimation(playerid,"KNIFE","KILL_Knife_Ped_Die",4.1,0,1,1,1,1);
  1014. return 1;
  1015. }
  1016.  
  1017. else if(strcmp(cmdtext, "/shakehead", true) == 0)
  1018. {
  1019. ApplyAnimation(playerid, "MISC", "plyr_shkhead", 3.0, 0, 0, 0, 0, 0);
  1020. return 1;
  1021. }
  1022.  
  1023. else if(strcmp(cmdtext, "/shakehead", true) == 0)
  1024. {
  1025. ApplyAnimation(playerid, "MISC", "plyr_shkhead", 3.0, 0, 0, 0, 0, 0);
  1026. return 1;
  1027. }
  1028.  
  1029. else if(strcmp(cmdtext, "/die2", true) == 0)
  1030. {
  1031. ApplyAnimation(playerid, "PARACHUTE", "FALL_skyDive_DIE", 4.0, 0, 1, 1, 1, -1);
  1032. return 1;
  1033. }
  1034.  
  1035. else if(strcmp(cmdtext, "/aim2", true) == 0)
  1036. {
  1037. ApplyAnimation(playerid, "SHOP", "SHP_Gun_Aim", 4.0, 0, 1, 1, 1, -1);
  1038. return 1;
  1039. }
  1040.  
  1041. else if(strcmp(cmdtext, "/benddown", true) == 0)
  1042. {
  1043. ApplyAnimation(playerid, "BAR", "Barserve_bottle", 4.0, 0, 0, 0, 0, 0);
  1044. return 1;
  1045. }
  1046.  
  1047. else if(strcmp(cmdtext, "/checkout", true) == 0)
  1048. {
  1049. ApplyAnimation(playerid, "GRAFFITI", "graffiti_Chkout", 4.0, 0, 0, 0, 0, 0);
  1050. return 1;
  1051. }
  1052. return 0;
  1053. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement