18.03.2012, 03:12
is this correct?
pawn Код:
new chattimer[MAX_PLAYERS];
public OnPlayerText(playerid, text[])
{
new string[128];
format(string, sizeof(string), "%s says: %s", pNameEx(playerid), text);
ProxDetector(30.0, playerid, string, COLOR_FADE1, COLOR_FADE2, COLOR_FADE3, COLOR_FADE4, COLOR_FADE5);
ApplyAnimation(playerid,"PED","IDLE_chat", 4.1, 0, 0, 0, 1, 1);
chattimer[playerid] = SetTimer("ClearAnim", 5000, true);
return 0;
}
forward ClearAnim();
public ClearAnim()
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
ClearAnimations(i, 0);
KillTimer(chattimer[i]);
}
}
return 1;
}