AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugins (https://forums.alliedmods.net/forumdisplay.php?f=108)
-   -   [ANY] Simple Discord Link (https://forums.alliedmods.net/showthread.php?t=331468)

XerM 03-22-2021 11:04

[ANY] Simple Discord Link
 
2 Attachment(s)
A simple plugin for send discord link.

sm_discord / !discord


Code:

#include <sourcemod>
#include <sdktools>

#pragma semicolon 1
#pragma newdecls required

public Plugin myinfo =
{
        name = "Discord Link",
        author = "XerM",
        description = "A simple plugin for discord link",
        version = "1.0",
        url = "forums.alliedmods.net"
};

public void OnPluginStart()
{
        RegConsoleCmd("sm_discord", Discord_Link, "Prints discord link to chat");
}

public Action Discord_Link(int client, int args)
{
        if(args > 0)
        {
                ReplyToCommand(client, "[SM] Usage: sm_discord");
                return Plugin_Handled;
        }
       
        ReplyToCommand(client,"\x03yourserverlink");
        return Plugin_Handled;
}


ThatKidWhoGames 03-22-2021 14:44

Re: [ANY] Simple Discord Link
 
Nice plugin! Quick suggestion: the argument amount check is unnecessary, as no arguments need to be supplied anyways.

XerM 03-22-2021 15:09

Re: [ANY] Simple Discord Link
 
Quote:

Originally Posted by ThatKidWhoGames (Post 2741336)
Nice plugin! Quick suggestion: the argument amount check is unnecessary, as no arguments need to be supplied anyways.


Thanks for the suggestion :)

lors02 03-24-2021 18:03

Re: [ANY] Simple Discord Link
 
Hey b.

how do i change the code?

If i change the "yourserverlink" it dosnt change when im ingame? :)

ThatKidWhoGames 03-24-2021 19:43

Re: [ANY] Simple Discord Link
 
1 Attachment(s)
Here is an updated version. Comes with one ConVar:
Code:

sm_discord_link - URL to Discord server

Sarrus 03-28-2021 13:30

Re: [ANY] Simple Discord Link
 
Hey, this already exists : https://github.com/Sarrus1/discord_ad.

You should add color to the plugin and a Cvar to make it easier/more interresting.


All times are GMT -4. The time now is 17:30.

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