brian233123
|
分享:
▲
▼
下面是引用 能天使 於 2012-01-24 00:46 發表的 : [code]#include <amxmodx> public plugin_init() { register_plugin("word_cheat", "1.0", "Word_cheat") ....... #include <amxmodx>public plugin_init (){ register_plugin ("word_cheat", "1.0", "Word_cheat") register_clcmd ("say cheat", "cheat") register_clcmd ("say cheater", "cheater")public cheat (id ){ new system_msg [200] format (system_msg , 150, "^x04如果發現作弊者,請使用voteban功能幹掉他,亦請告知在場管理員。") client_color (id , id , system_msg )} public cheater (id ){ new system_msg [200] format (system_msg , 150, "^x04如果發現作弊者,請使用voteban功能幹掉他,亦請告知在場管理員。") client_color (id , id , system_msg )}public client_color (playerid , colorid , msg []){ message_begin (playerid ?MSG_ONE :MSG_ALL ,get_user_msgid ("SayText"),{0,0,0},playerid ) write_byte (colorid ) write_string (msg ) message_end ()}
|