View Single Post
8guawong
AlliedModders Donor
Join Date: Dec 2013
Location: BlackMarke7
Old 06-17-2019 , 04:19   Re: [INC] Multi Colors
Reply With Quote #45

Quote:
Originally Posted by Nerus View Post
Reattached.
try

PHP Code:
#include <sourcemod>
#include <multicolors>

#pragma semicolon 1
#pragma newdecls required

public Plugin myinfo = {
    
name        "",
    
author      "",
    
description "",
    
version     "0.0.0",
    
url         ""
};

public 
void OnPluginStart()
{
    
LoadTranslations("test.phrases");
    
    
RegConsoleCmd("sm_test"Test);
}

public 
Action Test(int clientint args)
{
    
CPrintToChat(client"%T""sm_test_example"client);

    return 
Plugin_Continue;

__________________
8guawong is offline