[Plugin] IRC Plugin - 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: Plugin Development (
https://sampforum.blast.hk/forumdisplay.php?fid=18)
+--- Thread: [Plugin] IRC Plugin (
/showthread.php?tid=98803)
Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Re: IRC Plugin -
Gnik - 10.03.2017
Quote:
Originally Posted by Nubik
When using SSL version
Code:
Loading plugin: irc.so
Failed (libcrypto.so.0.9.8: cannot open shared object file: No such file or directory)
Debian 8 64bit
|
you have openssl and openssl-dev installed?
Re: IRC Plugin -
Lightning[SV] - 10.03.2017
Quote:
Originally Posted by Nubik
When using SSL version
Code:
Loading plugin: irc.so
Failed (libcrypto.so.0.9.8: cannot open shared object file: No such file or directory)
Debian 8 64bit
|
Debian 7+ only has the libssl1.0.0 package so you will need to compile the plugin from source on your server.
Respuesta: IRC Plugin -
NitroZeth - 11.06.2017
i have this error
IRC_Connect: Expecting 8 parameter(s), but found 7
[19:46:10] *** IRC_Connect: Expecting 8 parameter(s), but found 7
Re: IRC Plugin -
iLearner - 11.06.2017
Update your plugin.
Re: IRC Plugin -
Bernadeath - 12.06.2017
Nice
Re: IRC Plugin -
Eoussama - 11.09.2017
Your answer was literally in front of you in the release post, are you so lazy to even read up the whole content?
PHP Code:
IRC_IsVoice(botid, channel[], user[]);
IRC_IsHalfop(botid, channel[], user[]);
IRC_IsOp(botid, channel[], user[]);
IRC_IsAdmin(botid, channel[], user[]);
IRC_IsOwner(botid, channel[], user[]);
Re: IRC Plugin -
HideAmbush - 02.06.2019
I get error25: function heading differs from prototype
Re: IRC Plugin -
Cexaxl - 06.05.2020
Quote:
Originally Posted by HideAmbush
I get error25: function heading differs from prototype
|
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