SA-MP Forums Archive
How I Can Give Commands From IRC To Server - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: How I Can Give Commands From IRC To Server (/showthread.php?tid=614326)



How I Can Give Commands From IRC To Server - CarRamper - 07.08.2016

Helllo Guys I Have Done Make Commands Of IRC In My Game-mode But I Am Having That Who i Can Link My Server To My IRC Channel.And To Give Commands In IRC And Will Work In Server.


Re: How I Can Give Commands From IRC To Server - xTURBOx - 07.08.2016

if you are using this(https://sampforum.blast.hk/showthread.php?tid=98803) here is an example
PHP Code:
IRCCMD:say(botidchannel[], user[], host[], params[])
{
    new
        
tString[128];
 
        if(!
strlen(params))  return 1;
 
        
format(tString,sizeof(tString), "<< %s On IRC %s: %s>>"userparams);
        
SendClientMessageToAll(0xFFFFFFAAtString);