CMD:k(playerid, params[])
{
if(IsLogged[playerid] == 1)
{
new str1[200];
new Float:x, Float:y, Float:z;
if(sscanf(params, \"s[200]\", str1)) SendClientMessage(playerid, COLOR_WHITE, \"Használat: /k [sZÖVEG]\");
{
for(new i; i <= PLAYERS; i ++)
{
if(IsLogged == 1)
{
GetPlayerPos(playerid, x, y, z);
if(IsPlayerInRangeOfPoint(i, 7, x, y, z))
{
format(str1, 200, \"%s mondja: %s\", PlrName(playerid), str1);
SetPlayerChatBubble(playerid,str1,COLOR_WHITE, 80.0, 10000);
SendClientMessage(i, COLOR_WHITE,str1);
return 1;
}
}
}
}
}
else
{
SendClientMessage(playerid, COLOR_WHITE, \"Nem vagy bejelentkezve!\");
}
return 1;
}
Az a gond hogy ha beírom hogy /k asd akkor a másik látja mit irok(chatboxba), de én nem. Mi a baj?