Proszę bardzo jakby ktoś mógłby wgrać +5dmg w inte obrażeń z M4 do tej klasy (tak jak ma np, "Amadeusz") :
#include <amxmodx> #include <amxmisc> #include <codmod> #include <engine> #include <fakemeta> #include <fun> #include <hamsandwich> new const nazwa[] = "Kucacz [P]"; new const opis[] = "Jak kucnie to go nie widac, 5dmg z m4."; new const bronie = (1<<CSW_HEGRENADE)|(1<<CSW_USP)|(1<<CSW_M4A1); new const zdrowie = 0; new const kondycja = 80; new const inteligencja = 200; new const wytrzymalosc = 50; new ma_klase[33]; public plugin_init() { register_plugin(nazwa, "1.0", "by szalony53"); cod_register_class(nazwa, opis, bronie, zdrowie, kondycja, inteligencja, wytrzymalosc); register_forward(FM_PlayerPreThink, "fwPrethink_Niewidzialnosc", 1); } public cod_class_enabled(id) { if(!(get_user_flags(id) & ADMIN_LEVEL_D)) { client_print(id, print_chat, "[Kucacz [P]] Nie masz uprawnien, aby uzywac tej klasy.") return COD_STOP; } give_item(id, "weapon_hegrenade"); ma_klase[id] = true; return COD_CONTINUE; } public cod_class_disabled(id) { set_rendering(id,kRenderFxNone, 0, 0, 0, kRenderTransAlpha, 255); ma_klase[id] = false; } //Przy kucaniu public fwPrethink_Niewidzialnosc(id) { if(!ma_klase[id]) return; new button = get_user_button(id); if( button & IN_DUCK ) { set_rendering(id,kRenderFxNone, 0, 0, 0, kRenderTransAlpha, 1); } else { set_rendering(id,kRenderFxNone, 0, 0, 0, kRenderTransAlpha, 255); } }Bardzo proszę o szybkie wgranie !