Roleplay Name?
#7

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;
}
Reply


Messages In This Thread
Roleplay Name? - by Reklez - 18.03.2012, 02:44
Re: Roleplay Name? - by antonio112 - 18.03.2012, 02:46
Re: Roleplay Name? - by ReneG - 18.03.2012, 02:47
Re: Roleplay Name? - by Nicholas. - 18.03.2012, 02:49
Re: Roleplay Name? - by Reklez - 18.03.2012, 02:54
Re: Roleplay Name? - by ReneG - 18.03.2012, 03:07
Re: Roleplay Name? - by Reklez - 18.03.2012, 03:12
Re: Roleplay Name? - by Nicholas. - 18.03.2012, 03:23
Re: Roleplay Name? - by Reklez - 18.03.2012, 03:30
Re: Roleplay Name? - by Skribblez - 18.03.2012, 03:42

Forum Jump:


Users browsing this thread: 2 Guest(s)