Szerző Téma: Kianims  (Megtekintve 1933 alkalommal)

Kianims
« Dátum: 2013. Március 07. - 19:55:49 »
+7 Show voters
Sziasztok, látom törölték a data.hu-ról a szkriptem és sokan kérték ezért a code tag-ek közé illesztését a szkriptemnek, azoknak üzenem, hogy bocsi, nem minden nap vagyok aktív.
Ezt én kreáltam, hát úgy néz ki ahogy ( folyamatosan alakítgatom, mert 1-2 anim tré vagy nem kell), de egyszerû, szabadon alakítható, terjeszthetõ :D
Animokat tud lehívni és van hozzá egy /animhelp parancs is :)
A használatához kell a ZCMD include is, amit a forumon tuti megtaláltok.
(Moderátorok, kérlek nézzétek el, hogy új témát nyitottam ugyanarra, általában telefonról vagyok fenn, azzal meg nehéz másolni géprõl)
 
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#include <zcmd>
#define COLOR_WHITE   0xffffffAA
#define COLOR_GREY      0xc4c4c4AA
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
print(\"\\n--------------------------------------\");
print(\" Animations by Kiakovi\");
print(\"--------------------------------------\\n\");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
#else
main()
{
print(\"\\n----------------------------------\");
print(\" Animations by Kiakovi\");
print(\"----------------------------------\\n\");
}
#endif
CMD:animhelp(playerid, params[])
{
SendClientMessage(playerid, COLOR_GREY, \"Elérhetõ animok: ( /stopanim paranccsal fejezheted be)\");
SendClientMessage(playerid, COLOR_GREY, \"Esteleg, ha nem mûködne valamelyik, írd be újra a parancsot! :)\");
SendClientMessage(playerid, COLOR_GREY, \"/tamaszbeszed /keresztkezek /btartas /rosszullet /kezenallas /cigi1 /cigi2 /cigi3 /korbenez /bilincs\");
SendClientMessage(playerid, COLOR_GREY, \"/integet /fedezek /rafog /korulnez /reszeg /elzavar /idehiv /megallit /nevet /kezekfel /haldoklik\");
SendClientMessage(playerid, COLOR_GREY, \"/afizet /eszik /iszik /beszel /kezetfog /apofoz /asegit /vakar /tuntet1 /tuntet2 /bemutat /seta\");
SendClientMessage(playerid, COLOR_GREY, \"/felvefizet /megserult /ul1 /ul2 /ul3 /lefegyverez /elugrik /elugrik2 /osszeesik /sprint /hanyik\");
SendClientMessage(playerid, COLOR_GREY, \"/stoppol1 /stoppol2 /gondolkodik /fekszik1 /fekszik2 /pisil /tanc1 /tanc2 /tanc3 /tanc4 /telobe /teloki\");
return 1;
}
CMD:stopanim(playerid, params[])
{
ClearAnimations(playerid);
return 1;
}
CMD:tamaszbeszed(playerid, params[])
{
ApplyAnimation(playerid, \"CAR_CHAT\", \"car_talkm_loop\", 4.1, 1, 0, 0, 0, 0, 1); //playerid, típus, név, sebesség, ismétlõdik-e, visszax, visszay, meddig(ms), látszódjon-e
return 1;
}
CMD:keresztkezek(playerid, params[])
{
ApplyAnimation(playerid, \"COP_AMBIENT\", \"Coplook_loop\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:btartas(playerid, params[])
{
ApplyAnimation(playerid, \"CRACK\", \"Bbalbat_Idle_02\", 4.1, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:rosszullet(playerid, params[])
{
ApplyAnimation(playerid, \"CRACK\", \"crckidle1\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:kezenallas(playerid, params[])
{
ApplyAnimation(playerid, \"DAM_JUMP\", \"DAM_Dive_Loop\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:cigi1(playerid, params[])
{
ApplyAnimation(playerid, \"GANGS\", \"smkcig_prtl\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:cigi2(playerid, params[])
{
ApplyAnimation(playerid, \"LOWRIDER\", \"M_smklean_loop\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:cigi3(playerid, params[])
{
ApplyAnimation(playerid, \"LOWRIDER\", \"M_smkstnd_loop\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:korbenez(playerid, params[])
{
ApplyAnimation(playerid, \"ON_LOOKERS\", \"lkaround_loop\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:integet(playerid, params[])
{
ApplyAnimation(playerid, \"ON_LOOKERS\", \"wave_loop\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:fedezek(playerid, params[])
{
ApplyAnimation(playerid, \"ped\", \"DUCK_cower\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:rafog(playerid, params[])
{
ApplyAnimation(playerid, \"ped\", \"gang_gunstand\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:korulnez(playerid, params[])
{
ApplyAnimation(playerid, \"ped\", \"roadcross\", 4.1, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:reszeg(playerid, params[])
{
ApplyAnimation(playerid, \"ped\", \"WALK_drunk\", 4.1, 1, 1, 1, 0, 0, 1);
return 1;
}
CMD:elzavar(playerid, params[])
{
ApplyAnimation(playerid, \"POLICE\", \"coptraf_Away\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:idehiv(playerid, params[])
{
ApplyAnimation(playerid, \"POLICE\", \"coptraf_Come\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:megallit(playerid, params[])
{
ApplyAnimation(playerid, \"POLICE\", \"coptraf_Stop\", 4.1, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:nevet(playerid, params[])
{
ApplyAnimation(playerid, \"RAPPING\", \"Laugh_01\", 4.1, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:kezekfel(playerid, params[])
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_HANDSUP);
return 1;
}
CMD:pisil(playerid, params[])
{
SetPlayerSpecialAction(playerid,68);
return 1;
}
CMD:haldoklik(playerid, params[])
{
ApplyAnimation(playerid, \"WUZI\", \"CS_Dead_Guy\", 4.1, 1, 1, 1, 0, 0, 1);
return 1;
}
CMD:afizet(playerid, params[])
{
ApplyAnimation(playerid, \"DEALER\", \"shop_pay\", 4.1, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:eszik(playerid, params[])
{
ApplyAnimation(playerid, \"FOOD\", \"EAT_Burger\", 4.1, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:iszik(playerid, params[])
{
ApplyAnimation(playerid, \"GANGS\", \"drnkbr_prtl\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:beszel(playerid, params[])
{
ApplyAnimation(playerid, \"GANGS\", \"prtial_gngtlkA\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:kezetfog(playerid, params[])
{
ApplyAnimation(playerid, \"GANGS\", \"prtial_hndsk_biz_01\", 4.1, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:apofoz(playerid, params[])
{
ApplyAnimation(playerid, \"MISC\", \"bitchslap\", 4.1, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:vakar(playerid, params[])
{
ApplyAnimation(playerid, \"MISC\", \"Svratchballs_01\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:tuntet1(playerid, params[])
{
ApplyAnimation(playerid, \"ON_LOOKERS\", \"shout_02\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:tuntet2(playerid, params[])
{
ApplyAnimation(playerid, \"RIOT\", \"RIOT_shout\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:maszti(playerid, params[])
{
ApplyAnimation(playerid, \"PAULNMAC\", \"wank_loop\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:bemutat(playerid, params[])
{
ApplyAnimation(playerid, \"ped\", \"fucku\", 4.1, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:seta(playerid, params[])
{
ApplyAnimation(playerid, \"ped\", \"WALK_civi\", 4.1, 1, 1, 1, 0, 0, 1);
return 1;
}
CMD:felvefizet(playerid, params[])
{
ApplyAnimation(playerid, \"SHOP\", \"SHP_Rob_GiveCash\", 4.1, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:megserult(playerid, params[])
{
ApplyAnimation(playerid, \"SWEET\", \"Sweet_injuredloop\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:ul1(playerid, params[])
{
ApplyAnimation(playerid, \"ped\", \"SEAT_idle\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:ul2(playerid, params[])
{
ApplyAnimation(playerid, \"MISC\", \"SEAT_LR\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:ul3(playerid, params[])
{
ApplyAnimation(playerid, \"BEACH\", \"ParkSit_M_loop\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:lefegyverez(playerid, params[])
{
ApplyAnimation(playerid, \"ped\", \"ARRESTgun\", 2, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:elugrik(playerid, params[])
{
ApplyAnimation(playerid, \"ped\", \"EV_dive\", 4.1, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:elugrik2(playerid, params[])
{
ApplyAnimation(playerid, \"ped\", \"EV_step\", 4.1, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:osszeesik(playerid, params[])
{
ApplyAnimation(playerid, \"ped\", \"KO_shot_stom\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:sprint(playerid, params[])
{
ApplyAnimation(playerid, \"ped\", \"sprint_civi\", 4.1, 1, 1, 1, 0, 0, 1);
return 1;
}
CMD:hanyik(playerid, params[])
{
ApplyAnimation(playerid, \"FOOD\", \"EAT_Vomit_P\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:stoppol1(playerid, params[])
{
ApplyAnimation(playerid, \"MISC\", \"Hiker_Pose\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:stoppol2(playerid, params[])
{
ApplyAnimation(playerid, \"MISC\", \"Hiker_Pose_L\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:gondolkodik(playerid, params[])
{
ApplyAnimation(playerid, \"COP_AMBIENT\", \"Coplook_think\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:fekszik1(playerid, params[])
{
ApplyAnimation(playerid, \"INT_HOUSE\", \"Bed_Loop_L\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:fekszik2(playerid, params[])
{
ApplyAnimation(playerid, \"INT_HOUSE\", \"Bed_Loop_R\", 4.1, 1, 0, 0, 0, 0, 1);
return 1;
}
CMD:asegit(playerid, params[])
{
ApplyAnimation(playerid, \"MEDIC\", \"CPR\", 4.1, 0, 0, 0, 0, 0, 1);
return 1;
}
CMD:tanc1(playerid, params[])
{
SetPlayerSpecialAction(playerid,5);
return 1;
}
CMD:tanc2(playerid, params[])
{
SetPlayerSpecialAction(playerid,6);
return 1;
}
CMD:tanc3(playerid, params[])
{
SetPlayerSpecialAction(playerid,7);
return 1;
}
CMD:tanc4(playerid, params[])
{
SetPlayerSpecialAction(playerid,8);
return 1;
}
/*CMD:telobe(playerid, params[])
{
SetPlayerSpecialAction(playerid,11);
return 1;
}
CMD:teloki(playerid, params[])
{
SetPlayerSpecialAction(playerid,13);
return 1;
}
CMD:bilincs(playerid, params[])
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_CUFFED); //bugos
return 1;
}*/
« Utoljára szerkesztve: 2013. Március 07. - 20:15:20 írta kiakovi »

Kianims
« Válasz #1 Dátum: 2013. Március 07. - 20:09:19 »
0 Show voters
A modot én készítettem[/quote]
Most Filterscript vagy, mód ?

De mondjuk jó és tetszik.

Nem elérhető Sramm

  • 596
    • Profil megtekintése
Kianims
« Válasz #2 Dátum: 2013. Március 08. - 11:15:01 »
0 Show voters
Nekem bejön, szépen kigyûjtötted.  :thumbsup:

Kianims
« Válasz #3 Dátum: 2013. Március 08. - 15:23:36 »
0 Show voters
Köszi :)

xD1999

  • Vendég
Kianims
« Válasz #4 Dátum: 2013. Április 20. - 10:08:54 »
0 Show voters
Szép lett megy a +

Nem elérhető EnterR

  • Globális moderátor
  • 4223
  • dawg
    • Profil megtekintése
Kianims
« Válasz #5 Dátum: 2013. Április 20. - 10:30:47 »
0 Show voters
Na ez jól néz ki, felhasználtam, ment a +

Nem elérhető Lofoli

  • 296
    • Profil megtekintése
Kianims
« Válasz #6 Dátum: 2013. November 29. - 15:53:45 »
0 Show voters
:D  ;D kiri let ment a +

 

SimplePortal 2.3.7 © 2008-2024, SimplePortal