Raised This Month: $ Target: $400
 0% 

[REQ] Modification ...


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
TedMan
Senior Member
Join Date: Oct 2012
Old 11-23-2012 , 17:47   [REQ] Modification ...
Reply With Quote #1

PHP Code:
#include <amxmodx>
#include <csx>
 
#define PLUGIN "Bomb Countdown HUD Timer"
#define VERSION "0.2"
#define AUTHOR "SAMURAI&Bocard" 
 
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("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 35set_hudmessage(102051, -1.00.8001.01.00.010.01, -1); 
        else if(
g_c4timer 30set_hudmessage(15351255, -1.00.8001.01.00.010.01, -1); 
        else if(
g_c4timer 25set_hudmessage(00255, -1.00.8001.01.00.010.01, -1);  
        else if(
g_c4timer 20set_hudmessage(2550255, -1.00.8001.01.00.010.01, -1);  
        else if(
g_c4timer 15set_hudmessage(02550, -1.00.8001.01.00.010.01, -1); 
        else if(
g_c4timer 10set_hudmessage(2552550, -1.00.8001.01.00.010.01, -1); 
        else if(
g_c4timer 5set_hudmessage(25500, -1.00.8001.01.00.010.01, -1); 
        else 
set_hudmessage(255255255, -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 }
*/ 
Can somebody fix the warnings from this plugin ?

Quote:
bomb_timer.sma(89) : warning 217: loose indentation
bomb_timer.sma(91) : warning 217: loose indentation

Last edited by TedMan; 11-23-2012 at 17:48.
TedMan is offline
 



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 05:07.


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