Cant Use Chat
#10

Quote:
Originally Posted by AfiqIqbal
Посмотреть сообщение
thanks but .. players can use admin chat and vip chat . the only problem is the main chat is not working, maybe i return 0; at the wrong bracket or what?
yes, you're preventing this in wrong bracket. can you show me the whole OnPlayerText?
by the way, you can prevent player with this code if(Account[playerid][Admin] < 1) return SendClientMessage(playerid,-1,"You aren't an admin.");

PHP код:
    if(strcmp(text[0],"@",false,1) == 0
    { 
        if(
Account[playerid][Admin] < 1) return SendClientMessage(playerid,-1,"You aren't an admin");// prevent normal player from typing in admin chat.
        
text[0] = 25//removes '@' from text. (replaces with space) 
        
format(text,256"** |Admin Chat| %s:%s **"IsPlayerName(playerid),text);  
        for(new 
0GetPlayerPoolSize(); <= ji++) 
        { 
            if(
Account[i][Admin] >= && IsPlayerConnected(i)) 
            { 
                
SendClientMessage(i0x0AFFC9FFtext); 
            } 
        } 
        
format(text,256,""); // clears formatting of 'text' (it's importat for later callback, otherwise players texts will be messed-up) 
        
return 0// to prevent default text from sending. 
    

Reply


Messages In This Thread
Cant Use Chat - by AfiqIqbal - 07.04.2018, 18:56
Re: Cant Use Chat - by ForCop - 07.04.2018, 19:23
Re: Cant Use Chat - by AfiqIqbal - 07.04.2018, 19:32
Re: Cant Use Chat - by ForCop - 07.04.2018, 19:39
Re: Cant Use Chat - by AdamsLT - 07.04.2018, 20:03
Re: Cant Use Chat - by AfiqIqbal - 08.04.2018, 03:23
Re: Cant Use Chat - by Mugala - 08.04.2018, 03:34
Re: Cant Use Chat - by Threshold - 08.04.2018, 03:41
Re: Cant Use Chat - by AfiqIqbal - 08.04.2018, 03:44
Re: Cant Use Chat - by Mugala - 08.04.2018, 03:50

Forum Jump:


Users browsing this thread: 1 Guest(s)