|
|
|
|
Xercis
Obcykany Ziomuś
Dołączył: 30 Sty 2010
Posty: 148
Przeczytał: 0 tematów
Ostrzeżeń: 1/5 Skąd: Suwałki
|
|
|
|
|
|
Wysłany: Wto 18:43, 15 Cze 2010 Temat postu: plugin wymuszenia interpu rate |
|
|
mam tutaj plugin ktory wymusza interp nna 0.01 i rate 25000
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Interp 0.01 Forever"
#define VERSION "1.0"
#define AUTHOR "Ever"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("HLTV","interp","a", "1=0", "2=0")
register_cvar("amx_interp_style", "1")
}
public interp()
{
new players[32],count;
get_players(players,count)
new style = get_cvar_num("amx_interp_style")
if(style == 1 )
{
for (new i = 1; i <= count; i++)
console_cmd (i,"rate 25000; wait; wait; cl_updaterate 101; wait; wait; cl_cmdrate 101; wait; wait; ex_interp 0.01")
}
else
{
for (new i = 1; i <= count; i++)
{
console_cmd (i,"rate 25000")
server_cmd("wait")
console_cmd (i,"cl_updaterate 101")
server_cmd("wait")
console_cmd (i,"cl_cmdrate 101")
server_cmd("wait")
console_cmd (i,"ex_interp 0.01")
}
}
}
przydatny plugin
Post został pochwalony 0 razy
|
|