Raised This Month: $51 Target: $400
 12% 

FPDNM


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
BOTPL
New Member
Join Date: May 2020
Old 04-09-2024 , 12:39   FPDNM
Reply With Quote #1

Code:
#define DEBUG
#define PLUGIN_NAME           "test"
#define PLUGIN_AUTHOR         ""
#define PLUGIN_DESCRIPTION    ""
#define PLUGIN_VERSION        "1.0"
#define PLUGIN_URL            ""

#include <sourcemod>
#include <sdktools>

#pragma semicolon 1


public Plugin myinfo = 
{
	name = PLUGIN_NAME, 
	author = PLUGIN_AUTHOR, 
	description = PLUGIN_DESCRIPTION, 
	version = PLUGIN_VERSION, 
	url = PLUGIN_URL
};

public void OnPluginStart()
{
	RegConsoleCmd("sm_discord", discord_cmd),
	RegConsoleCmd("sm_regulamin", reg_cmd),
	RegConsoleCmd("sm_vipinfo", Vipinfo_cmd);
}

public Action discord_cmd(int client)
{
	ReplyToCommand(client, "‎‎‎‎‎‎‎‎ㅤ");
	ReplyToCommand(client, "\x0C[Discord] \x08▷ \x04discord:");
	ReplyToCommand(client, "‎‎‎‎‎‎‎‎ㅤ");
	return Plugin_Handled;
}

public Action reg_cmd(int client)
{
	ReplyToCommand(client, "‎‎‎‎‎‎‎‎ㅤ");
	ReplyToCommand(client, "\x0C[Regulamin] \x08▷ \x04LINK: ");
	ReplyToCommand(client, "‎‎‎‎‎‎‎‎ㅤ");
	return Plugin_Handled;
}

public Action Vipinfo_cmd(int client)
{
	ReplyToCommand(client, "‎‎‎‎‎‎‎‎ㅤ");
	ReplyToCommand(client, "\x09[VIP] \x08▷ \x04LINK:");
	ReplyToCommand(client, "‎‎‎‎‎‎‎‎ㅤ");
	return Plugin_Handled;
}


Any ideas why?

Last edited by BOTPL; 04-09-2024 at 12:40.
BOTPL is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 13:01.


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