Guten Abend Community,
ich habe en Problem undzwar wen ich schreibe wird alles 2 mal gesendet:
public OnPlayerText(playerid, text[])
{
new string[258];
format(string, sizeof(string), "%s sagt: %s", SpielerName(playerid), text);
for(new i = 0; i < MAX_PLAYERS; i++)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
if(IsPlayerInRangeOfPoint(i, 10.0, x, y, z))
{
if(GetPlayerScore(playerid) <= 25)
{
SendClientMessage(i, Weis, string);
}
if(GetPlayerScore(playerid) >= 25)
{
SendClientMessage(i, Blau, string);
}
}
}
return 0;
}
Kann mir wer helfen ?