←  Szukam pluginu

AMXX.pl: Support AMX Mod X i SourceMod

»

Plugin na czas do wybuchu bomby

Locked

  • +
  • -
DML's Photo DML 03.04.2011

Witam
Szukam pluginu który pukazuje za ile wybuchnie bomba tak jak tutaj - [url=http://img859.imageshack.us/i/beztytuuzz.png/]ImageShack
Quote

T8kme's Photo T8kme 03.04.2011

proszę

Attached Files

Quote

  • +
  • -
DML's Photo DML 04.04.2011

Wrzuciłem do scripting ale nie działa :(
Edited by DeLeTe, 04.04.2011 07:32.
Quote

  • +
  • -
Abes Mapper's Photo Abes Mapper 04.04.2011

A skompilowałeś?
Quote

  • +
  • -
DML's Photo DML 04.04.2011

Nie , a jak to zrobić ?
Quote

Pawlak093's Photo Pawlak093 04.04.2011

Kompilator - AMXX.pl: Support AMX Mod X
Wyślij plik sma z komputera i naciśnij Kompiluj.
Wrzuć amxx do plugins i zmień mapę
Quote

  • +
  • -
Drzanas's Photo Drzanas 04.04.2011

I jeszcze dolisz do plugins.ini nazwę pluginu
Poradniki na forum to od czego? Instalacja Pluginów AMXX - AMXX.pl: Support AMX Mod X
Kompilacja lokalna - AMXX.pl: Support AMX Mod X
Edited by Drzanas, 04.04.2011 11:54.
Quote

  • +
  • -
DML's Photo DML 04.04.2011

Dzięki , działa ale jak zrobić żeby pisało - "Bomba Pierdolnie Za:" bo teraz pisze "C4:"
Quote

  • +
  • -
Drzanas's Photo Drzanas 04.04.2011

Sprawdź to
/* 
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 "Bomb Countdown HUD Timer"
#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 > 13) set_hudmessage(0, 150, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1);
else if(g_c4timer > 7) set_hudmessage(150, 150, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1);
else set_hudmessage(150, 0, 0, -1.0, 0.80, 0, 1.0, 1.0, 0.01, 0.01, -1);

ShowSyncHudMsg(0, g_msgsync, "Bomba pierdolnie za: %d", g_c4timer);

--g_c4timer;
}

}

Edited by Drzanas, 04.04.2011 17:36.
Quote

  • +
  • -
DML's Photo DML 04.04.2011

Nie rozumiem "sprawdź to" co mam tam sprawdzidź ?
Quote

Pawlak093's Photo Pawlak093 04.04.2011

załącznik +

Attached Files

Quote

  • +
  • -
DML's Photo DML 04.04.2011

Działa mi to tylko pisze C4: "tutaj czas do wybuchu bomby" a ja chce żeby pisało Bomba Pierdolnie Za: "tutaj czas do wybuchu bomby"
Quote

  • +
  • -
Drzanas's Photo Drzanas 04.04.2011

A podmieniłeś?
Quote

  • +
  • -
Gufinsky's Photo Gufinsky 04.04.2011

I jeszcze dolisz do plugins.ini

Ja nie umiem lizać wirtualnych rzeczy haha


Tak trudno podać mu już .amxx?

c4.amxx wrzuć do plugins
do plugins.ini dopisz c4.amxx
zmień mape i już

Attached Files

  • Attached File  c4.amxx   2.53KB   39 downloads
Quote

  • +
  • -
DML's Photo DML 04.04.2011

Mi ten plugin działa !!!
Tylko chce zmienić żeby pisało "Bomba Pierdolnie Za:" a nie "C4:"
Powiedzcie jak to zmienić :D
Edited by DeLeTe, 04.04.2011 19:43.
Quote
Locked