Help with radio
#1

How can I make it so if I type '@hi' everyone sees 'Jack_Rocker Radio: hi' in chat?

Thanks,

Jack_Rocker
Reply
#2

To use the symbol like that, use OnPlayerText and something like this:

pawn Код:
public OnPlayerText(playerid, text[])
{
     if(text[0] == '@')
     {
              //Send your message here
             return 0;
     }
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)