IRC restart command - 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: IRC restart command (
/showthread.php?tid=162087)
IRC restart command -
Mojito - 22.07.2010
Hey all,
I was busy adding IRC commands, all went well till i made this. It reloads the gamemode.
Код:
irccmd_restart(conn, channel[], user[], params[])
{
if(!ircIsOp(conn,channel,user)) return false;
printinfo
new strMsg[1000];
format(strMsg, sizeof(strMsg), "changemode 1.8", params);
//ircSay(conn,channel,strMsg);
SendRconCommand(strMsg);
return true;
}
Pawno gives me this:
Код:
C:\Documents and Settings\Martin\Desktop\defserver\gamemodes\1.8.pwn(21244) : warning 203: symbol is never used: "irccmd_restart"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Warning.
For your information, the "IRCbot" does nothing
Thanks!
Re: IRC restart command -
Mojito - 22.07.2010
nvm fixed.