Nabend Breadfishler,
Ich habe da mal eine frage an euch und wollte euch fragen wie man ein Megaphone System erstellt ich hätte gedacht das ich es so mache (OnPlayerCommand):
if (strcmp("/m", cmdtext, true, 10) == 0)
{
new mText[145], name[MAX_PLAYER_NAME], Float:x, Float:y, Float:z;
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
GetPlayerPos(playerid, x, y, z);
format(mText, sizeof (mText), "%s o<: %s", name, text);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && IsPlayerInRangeOfPoint(i,60.0, x, y, z))
{
SendClientMessage(i, 0xEBFF00FF, mText);
}
}
return 0;
}
Oder wie soll ich das sonst machen?