IRC HELP PLS - 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: IRC HELP PLS (
/showthread.php?tid=546366)
IRC HELP PLS -
Adarsh007 - 15.11.2014
Hello,I want to know how to Chat on IRC means IRC to Game.
I Can See Player Chat on my channel but i don't know how do i send a msg to them ?
I tried-
/say
!msg
@msg
#msg <= stupid but i tried
etc
Any Help ?
I Keep Hunting in my GM but I failed to Found the CMD but Its Possible that my GM already have that CMD.
How do I know ?
Re: IRC HELP PLS -
Skully82 - 15.11.2014
Try downloading an irc plugin..
Re: IRC HELP PLS -
Team_PRO - 15.11.2014
Mabye you didn't script yet your irc Commands.
Re: IRC HELP PLS -
Adarsh007 - 15.11.2014
Yep ! I Have to Script a IRC Chat Command.
Re: IRC HELP PLS -
biker122 - 15.11.2014
pawn Код:
IRCCMD:msg(botid, channel[], user[], host[], params[])
{
// Check if the user entered any text
if (!isnull(params))
{
// Echo the formatted message
new msg[112];
format(msg,sizeof(msg), "(IRC) %s: %s", user, params);
SendClientMessageToAll(COLOR_LIGHTBLUE, msg);
format(msg, sizeof(msg),"(IRC) %s: %s", user, params);
Say(channel,msg);
}
return 1;
}
- SFCRRPG compatible.