Oyun içi Say / kapama
Gönderilme zamanı: Pzt Eyl 19, 2016 5:30 pm
Arkadaşlar oyunda sayde / işaretiyle başlayan yazıların görünmesini istemiyorum. Örn: /redbull görünmesin bunu nasıl yapabilirim
Kod: Tümünü seç
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#define PLUGIN "/ Gizle"
#define VERSION "1.0"
#define AUTHOR "By Deh$eT"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say", "CmdSay" );
register_clcmd("say_team", "CmdSay" );
}
public CmdSay( id ) {
new szArg[192];
read_args( szArg, charsmax( szArg ) );
if(containi(szArg[0],"/"))
{
remove_quotes( szArg );
}
}