Spec Bot İstk
Gönderilme zamanı: Pzr Tem 14, 2019 10:03 pm
serverde ılk el botlar specte kalıyor sonrası hep t de boyle bır pulgın varmı ya
Kod: Tümünü seç
#include <amxmodx>
#include <cstrike>
#define PLUGIN "Oto Spec"
#define VERSION "1.0"
#define AUTHOR "OmerTas"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("EventRoundStart", 2, "1=Round_Start");
}
public EventRoundStart(id){
for(new i = 1;i<=get_maxplayers();i++){
if(is_user_bot(i))
cs_set_user_team(i,CS_TEAM_SPECTATOR);}}