06.05.2020, 08:23
For example, change this;
public IRC_OnJoinChannel(botid, channel[])
to this;
public IRC_OnJoinChannel(botid, const channel[])
Change this;
public IRC_OnLeaveChannel(botid, channel[], message[]) {
to this;
public IRC_OnLeaveChannel(botid, const channel[], const message[]) {
do it for all of the lines that you getting error
public IRC_OnJoinChannel(botid, channel[])
to this;
public IRC_OnJoinChannel(botid, const channel[])
Change this;
public IRC_OnLeaveChannel(botid, channel[], message[]) {
to this;
public IRC_OnLeaveChannel(botid, const channel[], const message[]) {
do it for all of the lines that you getting error