Need help with ProxDetector
#1

Hello, buddies. I am using this Prox Detector

Код:
stock ProxDetector(Float:radi, playerid, string[],color)
{
    new Float:x,Float:y,Float:z;
    GetPlayerPos(playerid,x,y,z);
    foreach(Player,i)
    {
        if(IsPlayerInRangeOfPoint(i,radi,x,y,z))
        {
            SendClientMessage(i,color,string);
        }
    }
}
and this is my OnPlayerText

Код:
	new message[128];
	format(message, sizeof(message), "%s Says: %s", GetName(playerid), text);
 	ProxDetector(30.0, playerid, message, COLOR_WHITE);
	ProxDetector(60.0, playerid, message, COLOR_GREY);
How I can make when someone is close to me and I am writing in the chat, to show him the text in white, but when he is a little further to appear the same text in gray?
Reply
#2

Bump..
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)