Hallo Community,
Da ich noch am lernen bin, wie man Scriptet, möchte ich euch fragen wie man einen "Realen Chat" Scriptet.
Also mit " XY sagt: " usw.
Ich bedanke mich schonmal vorab
Hallo Community,
Da ich noch am lernen bin, wie man Scriptet, möchte ich euch fragen wie man einen "Realen Chat" Scriptet.
Also mit " XY sagt: " usw.
Ich bedanke mich schonmal vorab
So ungefähr:
public OnPlayerText(playerid, text[])
{
for(new i=0; i < GetMaxPlayers(); i++)
{
new string[128],Float:x,Float:y,Float:z;
if(IsPlayerInRangeOfPoint(i,25,x,y,z))
{
format(string,128,"%s sagt: %s",SpielerName(playerid),text);
SendClientMessage(i,farbe,string);
}
}
return 0;
}