SA-MP Forums Archive
What do i do-IRC- - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP (https://sampforum.blast.hk/forumdisplay.php?fid=3)
+--- Forum: General (https://sampforum.blast.hk/forumdisplay.php?fid=13)
+--- Thread: What do i do-IRC- (/showthread.php?tid=83437)



What do i do-IRC- - will_92 - 25.06.2009

what do i do when it asks for -chanserv- You Must First Authenticate with AuthServ. ,, what do i do ? i use mIRC


Re: What do i do-IRC- - Chaprnks - 25.06.2009

/ns identify [pass]


Re: What do i do-IRC- - will_92 - 25.06.2009

How do i create and make an IRC Function on my Server.


Re: What do i do-IRC- - lavamike - 25.06.2009

Assuming you are using jacobs IRC plugin..

pawn Код:
public ircOnConnect(conn)
{
  SetTimer("500msDelay",500,0);
  return 1;
}

public 500msDelay()
{
  ircSendRawData(EchoConnection, "PRIVMSG NickServ IDENTIFY Password");
  ircJoinChan(EchoConnection, "#channel");
}