Raised This Month: $51 Target: $400
 12% 

C4 Count Down


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
soumyadip77
Senior Member
Join Date: Jul 2017
Location: INDIA,KOLKATA
Old 07-16-2018 , 22:22   C4 Count Down
Reply With Quote #1

Anyone can fix this plugin

PHP Code:
/* 
 Bomb Countdown HUD Timer without CSX Version
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.

 
        * Credits:
- Emp` for various indicates
- Alka for full tests 


    * Changelog
 - Fixed Events problems
 - Pcvars
 - Fixed any bug on plugin

*/


#include <amxmodx>

#define PLUGIN "Bomb Countdown HUD Timer"
#define VERSION "0.2"
#define AUTHOR "SAMURAI"
 
new g_c4timerpointnum;
new 
bool:b_planted false;

new 
g_msgsync;
 
public 
plugin_init()
{
    
register_plugin(PLUGIN,VERSION,AUTHOR);
 
    
pointnum get_cvar_pointer("mp_c4timer");
 
    
register_logevent("bomb_planted" "2=Planted_The_Bomb");
    
register_logevent("bomb_defused" "2=Defused_The_Bomb");
    
register_logevent("bomb_explode" "3=Target_Bombed");
    
    
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 13set_hudmessage(01500, -1.00.8001.01.00.010.01, -1);
        else if(
g_c4timer 7set_hudmessage(1501500, -1.00.8001.01.00.010.01, -1);
        else 
set_hudmessage(15000, -1.00.8001.01.00.010.01, -1);
 
        
ShowSyncHudMsg(0g_msgsync"C4: %d"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 }
*/ 
soumyadip77 is offline
Send a message via Skype™ to soumyadip77
CrAzY MaN
Senior Member
Join Date: Mar 2017
Location: India
Old 07-16-2018 , 23:37   Re: C4 Count Down
Reply With Quote #2

What's the problem?
Try using while(g_c4timer > 0)
__________________
CrAzY MaN is offline
instinctpt1
Senior Member
Join Date: Dec 2016
Location: Chandigarh, India
Old 07-17-2018 , 03:23   Re: C4 Count Down
Reply With Quote #3

( OFF TOPIC )

MiscStats already have HUDTimer
So, Why another plugin for same purpose ??
instinctpt1 is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 07-17-2018 , 07:23   Re: C4 Count Down
Reply With Quote #4

https://forums.alliedmods.net/showthread.php?t=278600
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
soumyadip77
Senior Member
Join Date: Jul 2017
Location: INDIA,KOLKATA
Old 07-17-2018 , 08:06   Re: C4 Count Down
Reply With Quote #5

Quote:
Originally Posted by ocixcrom View Post
love you <3
soumyadip77 is offline
Send a message via Skype™ to soumyadip77
Reply



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 20:23.


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