Hey habe ein Problem ich hab schon das versucht was ich weiß aber ich krieg den Error einfach nicht weg
C:\Users\Dustin\Desktop\SA-MP Server\gamemodes\selfmade.pwn(1839) : error 001: expected token: ";", but found "-identifier-"
public OnPlayerText(playerid, text[])
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid, x, y, z);
new string[128];
format(string,sizeof(string), "%s sagt: %s", SpielerName(playerid), text);
for(new i=0; i<MAX_PLAYERS; i++)
{
if(!IsPlayerConnected(i))continue;
if(!IsPlayerInRangeOfPoint(i, CHAT_RADIUS, x, y, z))continue
SendClientMessage(i, WEISS, string); //1389
}
return 0;
}