17.05.2014, 14:10
Hello guys.
Why any animations aren't playing?
Why any animations aren't playing?
PHP Code:
new Length = strlen(text);
new aTime = Length*200;
new name[MAX_PLAYER_NAME],string[150],Float:X,Float:Y,Float:Z;
GetPlayerName(playerid, name, sizeof(name));
GetPlayerPos(playerid, X, Y, Z);
format(string, sizeof(string), ""TCWHITE"["TCRED"%s"TCRED"]: "TCCYAN"%s", name, text[0]);
strreplace(name, '_', ' ');
for(new i = 0; i < MAX_PLAYERS; ++i)
{
if(IsPlayerInRangeOfPoint(i, 5, X, Y, Z))
{
if(PlayerInfo[playerid][pAdmin] >= 1)
{
SetPlayerChatBubble(playerid, text, COL_ADMINGREEN, 50.0, 4000);
SendClientMessage(i,COL_ADMINGREEN,string);
if(!IsPlayerInAnyVehicle(playerid))
{
ApplyAnimation(playerid,"PED","IDLE_CHAT",4.1,1,1,1,0,aTime);
}
else
{
ApplyAnimation(playerid,"PED","car_talkm_in ",4.1,1,1,1,0,aTime);
}
return 1;
}
else if(PlayerInfo[playerid][pAdmin] == 0)
{
SetPlayerChatBubble(playerid, text, COL_WHITE, 50.0, 4000);
SendClientMessage(i,COL_WHITE,string);
if(!IsPlayerInAnyVehicle(playerid))
{
ApplyAnimation(playerid,"PED","IDLE_CHAT",4.1,1,1,1,0,aTime);
}
else
{
ApplyAnimation(playerid,"PED","car_talkm_in ",4.1,1,1,1,0,aTime);
}
return 1;
}
}
}