View Single Post
alferd
Veteran Member
Join Date: Dec 2019
Location: Iran is Always Eternal
Old 04-28-2020 , 04:26   Re: what is this plugin
Reply With Quote #2

PHP Code:
#include <amxmodx>
#include <amxmisc>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "AlferD"


public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
    
register_clcmd("say /gg""gg")
    
register_clcmd("say /bg""bg")
    
    
register_clcmd("say_team /gg""gg")
    
register_clcmd("say_team /bg""bg")
}

public 
gg()
{
    
// client_cmd(id, "say Good Game !");
    
client_print(0print_chat"Good Game !");
}

public 
bg()
{
    
// client_cmd(id, "say Bad Game !");
    
client_print(0print_chat"Bad Game !");

alferd is offline