AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   New Plugin Submissions (https://forums.alliedmods.net/forumdisplay.php?f=26)
-   -   AMXX Chat Relay [Discord <=> Ingame] (https://forums.alliedmods.net/showthread.php?t=318610)

OciXCrom 09-30-2019 05:32

Re: AMXX Chat Relay [Discord <=> Ingame]
 
Being new doesn't mean you can't read. I'm pretty sure there are hundreds of tutorials on how to install a simple plugin, so please search for them. Every plugin is installed in the exact same way.

rautamiekka 10-01-2019 08:15

Re: AMXX Chat Relay [Discord <=> Ingame]
 
Found 1 typo: in
Code:

public authenticate() {
you've
Code:

authenticacion
.

OciXCrom 10-01-2019 09:25

Re: AMXX Chat Relay [Discord <=> Ingame]
 
Quote:

Originally Posted by rautamiekka (Post 2668482)
Found 1 typo: in
Code:

public authenticate() {
you've
Code:

authenticacion
.

What?!

RumbleFrog 10-07-2019 10:34

Re: AMXX Chat Relay [Discord <=> Ingame]
 
Quote:

Originally Posted by hckr (Post 2668396)
It's also good to read that I mentioned that I'm new at this and so far I've only used amxx plugins to copy and paste, and the guide to this is a little difficult for me, this message goes with !the best energy!


pd_ I know it's a lot to ask before such work done, but if someone makes a video guide how to install these great files would appreciate =D

Documentation is available at https://rumblefrog.me/source-chat-relay/

Note that it talks about the Sourcemod plugin, so you have to switch it in your case for the AMXX variant.

RaZ_HU 10-13-2019 08:54

Re: AMXX Chat Relay [Discord <=> Ingame]
 
Feature request: add a file where we can list phrases to be ignored.

Also please ignore messages starting with " / " (commands) and whitespace:
Code:

public handleSay(id)
{
        new sMessage[MAX_COMMAND_LENGTH];
        read_argv(1, sMessage, charsmax(sMessage));

        if (strlen(sMessage) == 0 || sMessage[0] == '/' || sMessage[0] == ' ')
        {
                return PLUGIN_CONTINUE;
        }

Plugins and the relay bot are both awesome, thank you guys.

Edit:
@endnch I have changed your SMA code to support exclusive list, if needed I can send it to you and check it (I am sure there are stuff that could be done better in it).

RumbleFrog 10-14-2019 02:52

Re: AMXX Chat Relay [Discord <=> Ingame]
 
Quote:

Originally Posted by RaZ_HU (Post 2669652)
Feature request: add a file where we can list phrases to be ignored.

Also please ignore messages starting with " / " (commands) and whitespace:
Code:

public handleSay(id)
{
        new sMessage[MAX_COMMAND_LENGTH];
        read_argv(1, sMessage, charsmax(sMessage));

        if (strlen(sMessage) == 0 || sMessage[0] == '/' || sMessage[0] == ' ')
        {
                return PLUGIN_CONTINUE;
        }

Plugins and the relay bot are both awesome, thank you guys.

Edit:
@endnch I have changed your SMA code to support exclusive list, if needed I can send it to you and check it (I am sure there are stuff that could be done better in it).

Those already can be done on the server-side: https://rumblefrog.me/source-chat-relay/filters

RaZ_HU 10-14-2019 07:20

Re: AMXX Chat Relay [Discord <=> Ingame]
 
Quote:

Originally Posted by RumbleFrog (Post 2669711)
Those already can be done on the server-side: https://rumblefrog.me/source-chat-relay/filters

Wow, I missed that somehow. Thank you :D

Mark.uG 10-20-2019 13:55

Re: AMXX Chat Relay [Discord <=> Ingame]
 
1 Attachment(s)
On 1.8 does not seem to work after mapchange unless you restart the bot then works as normal


I ran a log alone side the bot. Heres the file I removed some personal info from it but anyone know what this is saying lol.

RumbleFrog 10-21-2019 19:08

Re: AMXX Chat Relay [Discord <=> Ingame]
 
Quote:

Originally Posted by Mark.uG (Post 2670402)
On 1.8 does not seem to work after mapchange unless you restart the bot then works as normal


I ran a log alone side the bot. Heres the file I removed some personal info from it but anyone know what this is saying lol.

Should be fixed in v2.1.1

SERGE90 10-29-2019 18:06

Re: AMXX Chat Relay [Discord <=> Ingame]
 
Hello!
Thank you for your plugin. It works great in CS 1.6 server, but Could you adapt it for Half-Life 1? :up:

https://thumb.cloud.mail.ru/weblink/...ssia%40mail.ru


All times are GMT -4. The time now is 06:51.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.