Advertisement
Guest User

Animation Lists. By G4M3Ov3r

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