View Single Post
HamletEagle
AMX Mod X Plugin Approver
Join Date: Sep 2013
Location: Romania
Old 03-17-2015 , 13:32   Re: [DM] Frags, HS, Rank
Reply With Quote #3

Quote:
Originally Posted by joshknifer View Post
Too many similar plugins have been made like this already.
+

1. Your coding style is horrible, too many spaces.
2. new FRAGS[32], HS[32]; it should be 33.
3.

PHP Code:
  if ( headshot )
    {
        
HS[killer]++;
        
FRAGS[killer]++;
    }
    else
    {
        
FRAGS[killer]++;
    } 
You can short it to:
PHP Code:
  if ( headshot )
    {
        
HS[killer]++;
}
FRAGS[killer]++; 
4. In fw_ShowHud vars should be static.
__________________
HamletEagle is offline