Allied Modders en español

Versión completa: BUSCO PLUGINS
Actualmente estas viendo una versión simplificada de nuestro contenido. Ver la versión completa con el formato correcto.
HOLA BUENAS A TODOS , SOY NUEVO , COMO VERA , TENGO VARIOS PROBLEMAS PERO ESTOY TRATANDO DE RESOLVERLO MEDIANTE BUSQUEDAS , ALGUNOS PUDE RESOLVER OTROS NO , NECESITO SABER SI HAY PLUGINS PARA LOS SIGUIENTES TEMAS , ME PASA LO SIGUIENTE EN EL SERVER QUE ESTOY INICIANDO ,EN MAPS DE_ , EL C4 TIMER LO UTILIZO EN 35 , SI YO PLANTO CUANDO QUEDAN 20 SEGUNDOS PARA QUE FINALICE LA RONDA NO ME DEJA CONTINUAR LA PARTIDA , SIENDO TT , SE TERMINAN ESOS 20 SEGUNDOS ,(CUANDO AUN RESTAN 15 PARA QE DETONE C4) , Y LES DA POR GANADA LA RONDA A LOS CT, QUERIA SABER SI HAY UN PLUGIN , PARA SOLUCIONAR ESO
OTRO ES EL PROBLEMA AL SER ADMIN PUEDO VER EL SAY TEAM , CUANDO YO EN VERDAD NO QUIERO VERLO NI TAMPCO ESCUCHAR , YA QUE SI ARMO UN MIX , NO ME SERVIRIA , ESTOS PLUGINS SON LOS QUE TENGO , ALGUNOS ESTAN DESACTIVADOS YA QUE NO ME SIRVEN SI QUIERO JUGAR MIX , O PUBLICO ,

YA DEPASO QUERIA CONSULTAR SI ALGUIEN TIENE ALGUN PLUGINS QUE CUANDO SE PLANTE C4 HAGA UN CONTEO HUD , SIN SONIDO , QUE POR EJEMPLO DIGA PLANTARON C4 , CUANDO QEDEN 5 SEG QUE DIGA YA NO LLEGAS A DEFUSEAR Y OTRAS COSAS MAS GRACUAS ESPERO HABER ECHO LO CORRECTO



GHW_GHR.amxx
GHW_Message_Disp.amxx
GHW_Connect.amxx
counter.amxx
;adminhook.amxx
;GHW_Disco.amxx
;adminchat.amxx
;amx_parachute.amxx
; cheat.amxx
weaponmenu.amxx
galileo.amxx
autoteambalance.amxx
camera.amxx
PingFake.amxx
statsx.amxx
ultimate_sounds.amxx
admin_connect.amxx
speclist.amxx
sxe_screen.amxx
server_connect_message.amxx
c4timer.amxx
mutemenu.amxx
horaserver.amxx
admin_check.amxx
;grenade_trail.amxx
abd.amxx
Untitled.amxx
c4.amxx
;deathbones.amxx
admin_chat_colors.amxx
descriptive_fire_in_the_hole.amxx
clock.amxx
auto_restart.amxx
admin_vs_all.amxx
;c4_timer_hud_sound.amxx
QuakeSounds.amxx
automatic_knife_duel.amxx
Rates_Menu_v1.5.amxx
resetscore.amxx
_________________________
amx_super.amxx
amx_super_menu.amxx
Mix_Maker.amxx
amx_destroy.amxx
amx_super_nospeed.amxx
; admin_cheat.amxx
-------------------------
;advanced_tracers.amxx
bullet_damage.amxx
;bunnyhop.amxx
;hs_slowmo.amxx
weapon_icon.amxx
gamenamechanger.amxx
cs_team_semiclip.amxx
(23/05/2020, 03:16 AM)alexis90 escribió: [ -> ]GHW_GHR.amxx
GHW_Message_Disp.amxx
GHW_Connect.amxx
counter.amxx
;adminhook.amxx
;GHW_Disco.amxx
;adminchat.amxx
;amx_parachute.amxx
; cheat.amxx
weaponmenu.amxx
galileo.amxx
autoteambalance.amxx
camera.amxx
PingFake.amxx
statsx.amxx
ultimate_sounds.amxx
admin_connect.amxx
speclist.amxx
sxe_screen.amxx
server_connect_message.amxx
c4timer.amxx
mutemenu.amxx
horaserver.amxx
admin_check.amxx
;grenade_trail.amxx
abd.amxx
Untitled.amxx
c4.amxx
;deathbones.amxx
admin_chat_colors.amxx
descriptive_fire_in_the_hole.amxx
clock.amxx
auto_restart.amxx
admin_vs_all.amxx
;c4_timer_hud_sound.amxx
QuakeSounds.amxx
automatic_knife_duel.amxx
Rates_Menu_v1.5.amxx
resetscore.amxx
_________________________
amx_super.amxx
amx_super_menu.amxx
Mix_Maker.amxx
amx_destroy.amxx
amx_super_nospeed.amxx
; admin_cheat.amxx
-------------------------
;advanced_tracers.amxx
bullet_damage.amxx
;bunnyhop.amxx
;hs_slowmo.amxx
weapon_icon.amxx
gamenamechanger.amxx
cs_team_semiclip.amxx

Con respecto al problema de la C4 probá desactivando plugin por plugin hasta que des con el que está causando ese problema (yo empezaría con el c4.amxx).

Yo uso este plug para el hud de c4, no sé si te servirá
Código PHP:
/* 
 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_c4timerpointnum;
new 
bool:b_planted false;

new 
g_msgsyncg_MsgSync2;
 
 
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();
    g_MsgSync2 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 13set_hudmessage(02550, -1.00.8001.01.00.010.01, -1);
        else if(g_c4timer 7set_hudmessage(2552550, -1.00.8001.01.00.010.01, -1);
            else set_hudmessage(25500, -1.00.8001.01.00.010.01, -1);
        
        ShowSyncHudMsg
(0g_msgsync"--[ Tiempo de Detonacion ]--^n --[ C4: %d ]--"g_c4timer);
        set_hudmessage(2552550, -1.00.0806.012.0)
        ShowSyncHudMsg(0g_MsgSync2"Argen-Zone MIX")
        --g_c4timer;
    }
    

Te armo uno personalizado al privado Gran sonrisa
(23/05/2020, 04:12 AM)Farid escribió: [ -> ]Con respecto al problema de la C4 probá desactivando plugin por plugin hasta que des con el que está causando ese problema (yo empezaría con el c4.amxx).

Yo uso este plug para el hud de c4, no sé si te servirá
Código PHP:
/* 
 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_c4timerpointnum;
new 
bool:b_planted false;

new 
g_msgsyncg_MsgSync2;
 
 
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();
    g_MsgSync2 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 13set_hudmessage(02550, -1.00.8001.01.00.010.01, -1);
        else if(g_c4timer 7set_hudmessage(2552550, -1.00.8001.01.00.010.01, -1);
            else set_hudmessage(25500, -1.00.8001.01.00.010.01, -1);
        
        ShowSyncHudMsg
(0g_msgsync"--[ Tiempo de Detonacion ]--^n --[ C4: %d ]--"g_c4timer);
        set_hudmessage(2552550, -1.00.0806.012.0)
        ShowSyncHudMsg(0g_MsgSync2"Argen-Zone MIX")
        --g_c4timer;
    }
    

MUCHAS GRACIAS , SI EH PROBADO DESACTIVANDO LA MAYORIA DE LOS QUE COMIENCEN CON C4, EL TEMA ES QUE AVECES JUEGO EN SV , DONDE SE PLANTA EL C4 FALTANDO POCOS SEGUNDOS PARA FINALIZAR LA RONDA , CUANDO SE PLANTA C4, TERMINAN LOS 5 SEGUNDOS QUE FALTABAN PARA FINALIAR , Y SIGUE LA RONDA HASTA QUE NO DEFUSEEN O DETONE C4, RECIEN AHI FINALIZA, LO QUE ME PASA A MI CASO CONTRARIO , ES QUE PLANTAS C4 FALTANDO 5 10 20 25 30 , Y YO TENGO CONFIG EL C4 A 40 SEG, SIN UN TT PLANTA , SE LE DA POR GANADA LA RONDA A LOS CT, YA QUE NO DEJA QUE DETONE LA C4, SINO QUE SI LA C4 NO DETONO EN ESOS SEGUNDOS AL FINALIZAR LA RONDA , SE DA POR GANADA IGUALMENTE A LOS CTS

(23/05/2020, 09:26 AM)alexiways escribió: [ -> ]Te armo uno personalizado al privado Gran sonrisa
GENIAAAL !
Como "configuraste" para que fueran 40 segundos?
Prueba a desactivar todos los plugins que no sepas específicamente que hacen, los que tengan algo que ver con reinicios de ronda y ese untitled que con ese nombre quien sabe que hará xD