|
Author
|
Message
|
|
Member
|

08-01-2011
, 05:49
no_hack_yes_noob
|
#1
|
this is a simple plugin
command:
say hack //the plugin say: Despised him, and continued your game
say noob //the plugin say: Hah not Despise may become better than you
Quote:
#include <amxmodx>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"
public plugin_init() {
register_plugin("No haCk YeS nOOB", "1.0", "pingplug")
register_clcmd("say hack", "hack")
register_clcmd("say noob", "noob")
}
public hack(id) {
new userName[32]
get_user_name(id, userName, 31)
client_print(0, print_chat, "%s say : Despised him, and continued your game", userName)
}
public noob(id) {
new userName[32]
get_user_name(id, userName, 31)
client_print(0, print_chat, "%s say : Hah not Thakrh may become better than you ", userName)
}
|
__________________
Working on:
[AMXX] Scripting
Last edited by Arkshine; 08-01-2011 at 06:00.
|
|
|
|