1.Szukam takiego pluginu ze jak jest podłozona paka to odlicza pisze takie cos na zielono Bomba wybuchnie za : 30s
2.Szukam takiego pluginu ze jak sie zmieni mapa to na poczatku mapy jest runda rozgrzewkowa czy jak ktos zginie to sie odradza i dostaje jakąś bron
Pozdrawiam
Witamy w Nieoficjalnym polskim support'cie AMX Mod X
Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
|
Guest Message by DevFuse
Plugin
Temat rozp. tazuna, 11.07.2009 08:44
5 odpowiedzi w tym temacie
#1
Napisano 11.07.2009 08:44
#2
Napisano 11.07.2009 09:00
#4
Napisano 11.07.2009 09:16
/*
Bomb Countdown HUD Timer v0.2 by SAMURAI
* Plugin Details
With this plugin enabled, you can see an colored Hud Message with the c4 time left, until explode
Remeber : if until explode remains less than 8 seconds, hudmessage color will be red, if > 7 will be yellow and > 13 will be green.
* Required Modules:
- CSX
* Credits:
- Emp` for various indicates
- Alka for full tests
* Changelog
- Fixed Events problems
- Pcvars
- Fixed any bug on plugin
*/
#include <amxmodx>
#include <csx>
#define PLUGIN "c4"
#define VERSION "0.2"
#define AUTHOR "SAMURAI"
new g_c4timer, pointnum;
new bool:b_planted = false;
new g_msgsync;
public plugin_init()
{
register_plugin(PLUGIN,VERSION,AUTHOR);
pointnum = get_cvar_pointer("mp_c4timer");
register_logevent("newRound", 2, "1=Round_Start");
register_logevent("endRound", 2, "1=Round_End");
register_logevent("endRound", 2, "1&Restart_Round_");
g_msgsync = CreateHudSyncObj();
}
public newRound()
{
g_c4timer = -1;
remove_task(652450);
b_planted = false;
}
public endRound()
{
g_c4timer = -1;
remove_task(652450);
}
public bomb_planted()
{
b_planted = true;
g_c4timer = get_pcvar_num(pointnum);
dispTime()
set_task(1.0, "dispTime", 652450, "", 0, "b");
}
public bomb_defused()
{
if(b_planted)
{
remove_task(652450);
b_planted = false;
}
}
public bomb_explode()
{
if(b_planted)
{
remove_task(652450);
b_planted = false;
}
}
public dispTime()
{
if(!b_planted)
{
remove_task(652450);
return;
}
if(g_c4timer >= 0)
{
if(g_c4timer > 37) set_hudmessage(28, 134, 238, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 34) set_hudmessage(0, 238, 0, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 31) set_hudmessage(238, 154, 0, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 28) set_hudmessage(28, 134, 238, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 25) set_hudmessage(0, 238, 0, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 22) set_hudmessage(238, 154, 0, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 19) set_hudmessage(28, 134, 238, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 17) set_hudmessage(0, 238, 0, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 14) set_hudmessage(238, 154, 0, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 11) set_hudmessage(28, 134, 238, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 9) set_hudmessage(0, 238, 0, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 7) set_hudmessage(238, 154, 0, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 4) set_hudmessage(28, 134, 238, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
else set_hudmessage(255, 0, 0, -1.0, 0.60, 0, 1.0, 1.0, 0.01, 0.01, -1);
ShowSyncHudMsg(0, g_msgsync, "|====www.Cs-Bytow.pl====|^n| C4 Wywali Za: %d |^n|====www.Cs-Bytow.pl====|", g_c4timer);
--g_c4timer;
}
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{ rtf1 ansi deff0{ fonttbl{ f0 fnil Tahoma;}}n viewkind4 uc1 pard lang1033 f0 fs16 n par }
*/
#5
Napisano 11.07.2009 09:16
ALe o ten co wybucha bomba to chodzi mi o inny plugin o taki ze pisze na zielono Bomba Wybuchnie: czas
#6
Napisano 11.07.2009 17:46
to jest ten moj plugin
uzyj kompilatora ;]
Użytkownicy przeglądający ten temat: 1
0 użytkowników, 1 gości, 0 anonimowych


Dodatki SourceMod



Temat jest zamknięty









