Şöyle basit bir eklenti istiyorum. /specbot yazınca spec botlarını oyundan kicklesin.
Konu
PHP Kod:
#include <amxmodx>
new const PLUGIN[] = "Botlari_At";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";
public plugin_init() register_plugin(PLUGIN, VERSION, AUTHOR), register_clcmd("say /specbot", "Botlari_At");
public Botlari_At()
{
new Players[32], Num_All, New_ID, Name[33]; get_players(Players, Num_All);
for(new i; i < Num_All; i++)
{
New_ID = Players[i];
if(is_user_bot(New_ID)) get_user_name(New_ID, Name, 32), server_cmd("amx_kick ^"%s^"", Name);
}
}
Benzer Konular
Yorum
11.872
Okunma
19-09-2024, 03:38
)

