←  Szukam pluginu

AMXX.pl: Support AMX Mod X i SourceMod

»

Szukam Pluginu na interp.

Zablokowany

  • +
  • -
Ciemny^^ - zdjęcie Ciemny^^ 24.08.2009

Tak jak w temacie szukam pluginu na interp,niemoge znależć :/
proszę o pomoc ^^ .
Odpowiedz

  • +
  • -
zer0. - zdjęcie zer0. 24.08.2009

1. http://amxx.pl/topic...-10-vt17531.htm
2. http://amxx.pl/topic...terp-vt1023.htm
3. http://amxx.pl/topic...terp-vt9989.htm
4.
/* 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")
}
}
}
Odpowiedz
Zablokowany