1. sayfa (Toplam 1 sayfa)

Model eklentisi istek

Gönderilme zamanı: Cmt Şub 02, 2019 10:38 pm
gönderen Takariz
Rcon kodu verilince Oyuncuya model gelmesi eklentisi yapabilecek?

Model eklentisi istek

Gönderilme zamanı: Pzr Şub 03, 2019 8:53 pm
gönderen Emre Gezer
Buyrun.

Kod: Tümünü seç

#include <amxmodx>
#include <cstrike>

new const ADMINMODEL[] = "models/ModelYolu/ModelYolu.mdl";

public plugin_init() {
	register_plugin("Eklenti", "1.0", "eg")
	register_event("ResetHUD", "gonder", "b")

	return PLUGIN_CONTINUE;
}

public plugin_precache() {
	precache_model(ADMINMODEL)

	return PLUGIN_CONTINUE;
}

public gonder(id) {
	if (get_user_flags(id) & ADMIN_RCON) {
	cs_set_user_model(id, "ADMINMODEL");
	}
	return PLUGIN_HANDLED;
}