Śpiąca Królewna.
OPIS:
Plugin co rundê ustawia interp 0.01 oraz powiadamia o tym graczy informacja w hudzie Serwer ustawil ci ex_interp 0.01 + rate 25000. INSTALACJA: Standardowa #include #define PLUGIN "Nowy Plugin" #define VERSION "1.0" #define AUTHOR "Wayne" public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR); register_event("ResetHUD", "eResetHUD", "be"); } public eResetHUD(id) { client_cmd(id, "cl_updaterate 101;wait;cl_cmdrate 101;wait;rate 25000;wait;ex_interp 0.01"); set_hudmessage(0, 170, 255, 0.08, 0.68, 0, 6.0, 5.0) show_hudmessage(id, "Serwer ustawil ci ex_interp 0.01 + rate 25000.") } |