Posiadam owy plugin na blokadę HE.
Teraz moje pytanie, wyglada następująco. Jak zmienić, by informację o blokadzie HE, wyswietlała się na czacie , a nie na HUD.
Wiem, że trzeba zmienić cos w tych linijkach, tylko nie wiem jak to powinno być. Z gory dziekuje za pomoc.
set_hudmessage(0, 0, 255, 0.06, 0.59, 1, 6.0, 1.0)
show_hudmessage(i, "15 sekund minelo !")
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "He na czas"
#define VERSION "1.0"
#define AUTHOR "lisek"
new bool: costam=true
new hejcz[33]=0
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("CurWeapon","switchweapon","be","1=1")
register_logevent("runda",2,"1=Round_Start")
register_logevent("func_round",2,"1=Round_End")
register_event("TextMsg", "restart_round", "a", "2&#Game_will_restart_in")
}
public switchweapon(id)
{
if(costam==true && is_user_alive(id))
{
new ammo, clip, weapon = get_user_weapon(id, ammo, clip)
if(weapon==CSW_HEGRENADE && CSW_KNIFE){
client_cmd(id, "lastinv")
set_hudmessage(255, 0, 0, 0.06, 0.59, 1, 6.0, 1.0)
show_hudmessage(id, "He rzucamy 15 sekund po rozpoczeciu rundy !")
hejcz[id]=1
}
}
}
public runda() set_task(15.0, "bul")
public bul(){
costam=false
for(new i=1; i<=32; i++){
if(hejcz[i]==1 && is_user_connected(i))
{
set_hudmessage(0, 0, 255, 0.06, 0.59, 1, 6.0, 1.0)
show_hudmessage(i, "15 sekund minelo !")
}
}
}
public func_round()
{
costam=true
for(new i=1; i<=32; i++) hejcz[i]=0
}
public restart_round()
{
costam=true
for(new i=1; i<=32; i++) hejcz[i]=0
}


Dodatki SourceMod



Temat jest zamknięty


heblokada.amxx







