Animations
#2

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


Messages In This Thread
Animations - by Dziugsas - 17.05.2014, 14:10
Re: Animations - by Spartaaaaa - 17.05.2014, 14:18
Re: Animations - by Dziugsas - 17.05.2014, 14:32
Re : Animations - by yusei - 17.05.2014, 14:42
Re: Animations - by Dziugsas - 17.05.2014, 14:46
Re: Animations - by Dziugsas - 17.05.2014, 15:04
Re: Animations - by Rittik - 17.05.2014, 15:11
Re: Animations - by Dziugsas - 17.05.2014, 15:16
Re: Animations - by Dziugsas - 18.05.2014, 12:05

Forum Jump:


Users browsing this thread: 1 Guest(s)