07.06.2012, 11:23 
	
	
	
		Listen !!
now I fix the player ..
if player send message : PLAYER : XXXXXXX and he see that
but if the helper send message I see : Player : XXXXXXX
But the friend see : Helper : XXXX
Why I see Player XX
this is the code :
	
	
	
	
now I fix the player ..
if player send message : PLAYER : XXXXXXX and he see that
but if the helper send message I see : Player : XXXXXXX
But the friend see : Helper : XXXX
Why I see Player XX

this is the code :
PHP Code:
if(PlayerChat[id] == 1)
  {
  format(str,sizeof(str),"[HelperChat] Player %s[%d]: %s",GetName(playerid),playerid,text);
  SendClientMessage(Helper,Orange,str);
  format(str,sizeof(str),"[HelperChat] Player %s[%d]: %s",GetName(playerid),playerid,text);
  SendClientMessage(Player,Orange,str);
  if(HelperChat2[playerid] == 1)
  {
  format(str,sizeof(str),"[HelperChat] Helper %s[%d]: %s",GetName(playerid),playerid,text);
  SendClientMessage(Player,Orange,str);
  }
  return 0;
  } 


