29.11.2012, 11:46
Try this
UNTESTED
UNTESTED
pawn Code:
if(IsPlayerInRangeOfPoint(i, radi, x, y, z))
{
new j=0;
new temp[121];
for(;string[j]!='\0';)
{
for(new i=0;i<=119 && string[j]!='\0';++i)
{
temp[i]=string[j];
++j;
}
temp[120]='-';
SendClientMessage(i, color,temp);
}
}