SA-MP Forums Archive
Nub IRC Help - 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: Nub IRC Help (/showthread.php?tid=242036)



Nub IRC Help - [KSF]Badboy - 19.03.2011

Код:
IRCCMD:say(botid, channel[], user[], host[], params[])
{
	// Check if the user has at least voice in the channel
	if (IRC_IsVoice(botid, channel, user))
	{
		// Check if the user entered any text
		if (!isnull(params))
		{
			new
				msg[128];
			// Echo the formatted message
			format(msg, sizeof(msg), "02*** %s on IRC: %s", user, params);
			IRC_GroupSay(gGroupID, channel, msg);
			format(msg, sizeof(msg), "* %s on IRC: %s", user, params);
			SendClientMessageToAll(green, msg);
		}
	}
	return 1;
}
Only registered members can use it but i want that guests can also use it


Re: Nub IRC Help - [KSF]Badboy - 19.03.2011

Still waiting


Re: Nub IRC Help - Biesmen - 19.03.2011

No bumping within 48 hours. You bumped in 24 minutes, good job.
https://sampforum.blast.hk/showthread.php?tid=45235