04.03.2019, 11:46
Vocк pode tentar acho no meio dessas, se nгo encontrar, baixe um MOD de animes, e tente procurar.
PHP код:
CMD:animclothes(playerid, params[])
{
new animid;
if(sscanf(params, "d", animid)) return SCM(playerid, COLOR_ERRO, "| ERRO | Digite: /animclothes [ 1-13 ]");
if(animid < 1 || animid > 13) SCM(playerid, COLOR_ERRO, "| ERRO | Digite: /animclothes [ 1-13 ]");
if(animid == 1) ApplyAnimation(playerid, "CLOTHES", "CLO_Buy", 4.1, 0, 1, 0, 1, 1);
else if(animid == 2) ApplyAnimation(playerid, "CLOTHES", "CLO_In", 4.1, 0, 1, 0, 1, 1);
else if(animid == 3) ApplyAnimation(playerid, "CLOTHES", "CLO_Out", 4.1, 0, 1, 0, 1, 1);
else if(animid == 4) ApplyAnimation(playerid, "CLOTHES", "CLO_Pose_Hat", 4.1, 0, 1, 0, 1, 1);
else if(animid == 5) ApplyAnimation(playerid, "CLOTHES", "CLO_Pose_In", 4.1, 0, 1, 0, 1, 1);
else if(animid == 6) ApplyAnimation(playerid, "CLOTHES", "CLO_Pose_In_O", 4.1, 0, 1, 0, 1, 1);
else if(animid == 7) ApplyAnimation(playerid, "CLOTHES", "CLO_Pose_Legs", 4.1, 0, 1, 0, 1, 1);
else if(animid == 8) ApplyAnimation(playerid, "CLOTHES", "CLO_Pose_Loop", 4.1, 0, 1, 0, 1, 1);
else if(animid == 9) ApplyAnimation(playerid, "CLOTHES", "CLO_Pose_Out", 4.1, 0, 1, 0, 1, 1);
else if(animid == 10) ApplyAnimation(playerid, "CLOTHES", "CLO_Pose_Out_O", 4.1, 0, 1, 0, 1, 1);
else if(animid == 11) ApplyAnimation(playerid, "CLOTHES", "CLO_Pose_Shoes", 4.1, 0, 1, 0, 1, 1);
else if(animid == 12) ApplyAnimation(playerid, "CLOTHES", "CLO_Pose_Torso", 4.1, 0, 1, 0, 1, 1);
else if(animid == 13) ApplyAnimation(playerid, "CLOTHES", "CLO_Pose_Watch", 4.1, 0, 1, 0, 1, 1);
return 1;
}