04.02.2010, 17:17
Quote:
|
Originally Posted by Rubennnnn
|
Pretty simple
in your /me command
pawn Код:
strcmp......
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
for(new p=0; p<GetMaxPlayers(); p++)
{
//replace 10 with the radius you want
If(IsPlayerConnected(p) && IsPlayerInRangeOfPoint(p, 10, X, Y, Z)) SendClientMessage(p, 0xAAAAAAAA, "your message here");
}
.....

