Raised This Month: $32 Target: $400
 8% 

Help, C4 Timer


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Soriente
New Member
Join Date: Jul 2020
Old 07-27-2020 , 20:54   Help, C4 Timer
Reply With Quote #1

Hello, I need help with the C4Timer plugin, I want to hide the timer and just leave the C4 Sprite.
Excuse my English, I use Google Translate.


PHP Code:
#include <amxmodx>

#define PLUGIN     "c4 timer"
#define VERSION "1.1"
#define AUTHOR     "cheap_suit"

new g_c4timer
new mp_c4timer

new cvar_showteam
new cvar_flash
new cvar_sprite
new cvar_msg

new g_msg_showtimer
new g_msg_roundtime
new g_msg_scenario

#define MAX_SPRITES    2
new const g_timersprite[MAX_SPRITES][] = { "bombticking""bombticking1" }
new const 
g_message[] = "Detonation time intiallized....."

public plugin_init() 
{
    
register_plugin(PLUGINVERSIONAUTHOR)
    
register_cvar(PLUGINVERSIONFCVAR_SPONLY|FCVAR_SERVER)

    
cvar_showteam     register_cvar("amx_showc4timer""3")
    
cvar_flash     register_cvar("amx_showc4flash""0")
    
cvar_sprite     register_cvar("amx_showc4sprite""1")
    
cvar_msg     register_cvar("amx_showc4msg""0")
    
mp_c4timer     get_cvar_pointer("mp_c4timer")

    
g_msg_showtimer    get_user_msgid("ShowTimer")
    
g_msg_roundtime    get_user_msgid("RoundTime")
    
g_msg_scenario    get_user_msgid("Scenario")
    
    
register_event("HLTV""event_hltv""a""1=0""2=0")
    
register_logevent("logevent_plantedthebomb"3"2=Planted_The_Bomb")
}

public 
event_hltv()
    
g_c4timer get_pcvar_num(mp_c4timer)

public 
logevent_plantedthebomb()
{
    new 
showtteam get_pcvar_num(cvar_showteam)
    
    static 
players[32], numi
    
switch(showtteam)
    {
        case 
1get_players(playersnum"ace""TERRORIST")
        case 
2get_players(playersnum"ace""CT")
        case 
3get_players(playersnum"ac")
        default: return
    }
    for(
0num; ++iset_task(1.0"update_timer"players[i])
}

public 
update_timer(id)
{
    
message_begin(MSG_ONE_UNRELIABLEg_msg_showtimer_id)
    
message_end()
    
    
message_begin(MSG_ONE_UNRELIABLEg_msg_roundtime_id)
    
write_short(g_c4timer)
    
message_end()
    
    
message_begin(MSG_ONE_UNRELIABLEg_msg_scenario_id)
    
write_byte(1)
    
write_string(g_timersprite[clamp(get_pcvar_num(cvar_sprite), 0, (MAX_SPRITES 1))])
    
write_byte(150)
    
write_short(get_pcvar_num(cvar_flash) ? 20 0)
    
message_end()
    
    if(
get_pcvar_num(cvar_msg))
    {
        
set_hudmessage(25518000.440.8726.06.0)
        
show_hudmessage(idg_message)
    }

Soriente is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 07-28-2020 , 07:05   Re: Help, C4 Timer
Reply With Quote #2

configs/amxx.cfg => amx_showc4msg "0"
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
Soriente
New Member
Join Date: Jul 2020
Old 07-28-2020 , 18:39   Re: Help, C4 Timer
Reply With Quote #3

Quote:
Originally Posted by OciXCrom View Post
configs/amxx.cfg => amx_showc4msg "0"

Keep checking the time using that command
Soriente is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 17:31.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode