SA-MP Forums Archive
how to echo cmds back to irc - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: how to echo cmds back to irc (/showthread.php?tid=99984)



how to echo cmds back to irc - [HKS]dlegend - 02.10.2009

i was wondring wat the public is to send the cmds done in the server back to irc


Re: how to echo cmds back to irc - ilikepie2221 - 02.10.2009

You mean the server console?

print and printf

https://sampwiki.blast.hk/wiki/Print
https://sampwiki.blast.hk/wiki/Printf


Re: how to echo cmds back to irc - dice7 - 02.10.2009

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
  IrcSay(cmdtext); //the function to say stuff to the irc channel. can be different
}
In your irc filterscript


Re: how to echo cmds back to irc - [HKS]dlegend - 02.10.2009

i know its ircsay but what is the text to make the cmd echo back or is that it

bit of a noob sorry