script dont work
#1

Код:
  	if(text[0] == '#')
	{
    if(ClanLevel(playerid) == 10)
  	{
    
     new string[128];
     format(string,sizeof(string),"CLANCHAT %s: %s",PlayerName(playerid),text[1]);
	 SendMessageToClan(LIGHTBLUE,string);
	}
	else
	{
	return 0;
}
dont work
Reply
#2

Try this :

Код:
if(text[0] == '#' && ClanLevel(playerid) == 10)
{
 new string[128]; 
 GetPlayerName(playerid,string,sizeof(string));
 format(string,sizeof(string),"ClanChat: %s: %s",string,text[1]);
 SendMessageToClan(green,string);
 return 0;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)