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

[REQ] Modification ...


Post New Thread Reply   
 
Thread Tools Display Modes
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
xOscar
BANNED
Join Date: Nov 2012
Old 11-23-2012 , 17:51   Re: [REQ] Modification ...
Reply With Quote #2

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 }
*/ 
xOscar is offline
TedMan
Senior Member
Join Date: Oct 2012
Old 11-23-2012 , 18:45   Re: [REQ] Modification ...
Reply With Quote #3

Quote:
bomb_timer.sma( 88 ) : warning 217: loose indentation

Last edited by TedMan; 11-23-2012 at 18:46.
TedMan is offline
xOscar
BANNED
Join Date: Nov 2012
Old 11-23-2012 , 19:01   Re: [REQ] Modification ...
Reply With Quote #4

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 }
*/ 
xOscar is offline
wickedd
Veteran Member
Join Date: Nov 2009
Old 11-23-2012 , 19:01   Re: [REQ] Modification ...
Reply With Quote #5

You can ignore it.
__________________
Just buy the fucking game!!!!
I hate No-Steamers and lazy ass people.
wickedd is offline
xOscar
BANNED
Join Date: Nov 2012
Old 11-23-2012 , 19:04   Re: [REQ] Modification ...
Reply With Quote #6

Quote:
Originally Posted by wickedd View Post
You can ignore it.
Yeah, it's just a warning, but always good to solve them.
xOscar is offline
mabaclu
Senior Member
Join Date: Jun 2010
Location: Portugal
Old 11-23-2012 , 19:06   Re: [REQ] Modification ...
Reply With Quote #7

Press CTRL + I
__________________
mabaclu is offline
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 11-23-2012 , 19:28   Re: [REQ] Modification ...
Reply With Quote #8

Quote:
Originally Posted by mabaclu View Post
Press CTRL + I
Doesn't do anything for me. What does it do?
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).
YamiKaitou is offline
pokemonmaster
princess milk
Join Date: Nov 2010
Location: Somewhere in this world
Old 11-24-2012 , 04:05   Re: [REQ] Modification ...
Reply With Quote #9

Quote:
Originally Posted by YamiKaitou View Post
Doesn't do anything for me. What does it do?
In AMXX Studio, it's the auto indentation feature.
__________________
اَشْهَدُ اَنْ لَّآ اِلٰهَ اِلَّا اللہُ وَحْدَه لَا شَرِيْكَ لَه وَ اَشْهَدُ اَنَّ مُحَمَّدًا عَبْدُه وَرَسُوْلُه
No longer active in AMXX. Sorry.
pokemonmaster is offline
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 11-24-2012 , 07:22   Re: [REQ] Modification ...
Reply With Quote #10

Quote:
Originally Posted by pokemonmaster View Post
In AMXX Studio, it's the auto indentation feature.
Then people need to say what program it applies to when they suggest it, it is not a universal feature.
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).
YamiKaitou is offline
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 14:55.


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