←  Szukam pluginu

AMXX.pl: Support AMX Mod X i SourceMod

»

Plugin na 3 restarty na początku każdej mapy

Zablokowany

Gość_brutalny tampon_* 29.10.2010

Witam, otóż szukam pluginu, który zamiast rozgrzewki dawał by na początku mapy wyłącznie 3 restarty i potem normalna runda. Nie szukam pluginów z muzyką, nożówkami itd.
Odpowiedz

CiapeR Cs-Fifka - zdjęcie CiapeR Cs-Fifka 29.10.2010

To nie jest plugin tylko COnfig wpisz w google live.cfg do cs
Odpowiedz

hardbot - zdjęcie hardbot 29.10.2010

Łap

Spoiler
Odpowiedz

Gość_brutalny tampon_* 29.10.2010

Dzięki, a mógłbyś go zmodyfikować tak żeby wyświetlał jeszcze takie info jak w tym pluginie. Ja znalazłem coś takiego"

/* AMXMOD X script.
*
* © Copyright 2009
, GoToPrO
* This file is provided as is (no warranties).
*
*
*/

#include <amxmodx>
#include <amxmisc>

public plugin_init()
{
register_plugin("Restart","0.9","GoToPrO")
set_task(1.0,"amx_restartgame",0)
}
public amx_restartgame(id,level,cid)
{
set_hudmessage(0, 200, 0, -1.0, 0.40, 0, 6.0, 6.0, 0.1, 0.1, 1)
show_hudmessage(0,"Live on Three Restarts")
set_task(3.0, "rround")
set_task(6.0, "rround")
set_task(9.0, "rround")
set_task(11.0, "lmessage")
return PLUGIN_HANDLED
}

public rround()
{
server_cmd("sv_restartround 1")
}

public lmessage()
{
new sv_pass[32], players[32], playernum
set_hudmessage(0, 200, 0, -1.0, 0.40, 0, 6.0, 6.0, 0.1, 0.1, 3)
show_hudmessage(0,"Live on CsPasja.pl Team Play")
get_cvar_string("sv_password",sv_pass,32)
set_hudmessage(255, 255, 255, -1.0, 0.80, 0, 6.0, 6.0, 0.1, 0.1, 4)
get_players(players,playernum)
for(new a = 1; a < playernum; ++a)
{
if ( get_user_team(players[a]) < 3 )
{
show_hudmessage(players[a],"Server Password: %s",sv_pass)
}
}
}
Odpowiedz

hardbot - zdjęcie hardbot 29.10.2010

#include <amxmodx>
#include <amxmisc>

public plugin_init()
{
register_plugin("Restart","0.9","GoToPrO")
set_task(1.0,"amx_restartgame")
}
public amx_restartgame(id)
{
set_hudmessage(0, 200, 0, -1.0, 0.40, 0, 6.0, 6.0, 0.1, 0.1, 1)
show_hudmessage(0,"Live on Three Restarts")

set_task(3.0, "RestartR")
set_task(6.0, "RestartR")
set_task(9.0, "RestartR")
set_task(11.0, "Message")
return PLUGIN_HANDLED;
}
public RestartR()
{
server_cmd("sv_restar 1")
}
public Message()
{
set_hudmessage(0, 200, 0, -1.0, 0.40, 0, 6.0, 6.0, 0.1, 0.1, 3)
show_hudmessage(0,"Live on *SWEAR* Team Play")
}
Odpowiedz
Zablokowany