View Single Post
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 06-24-2008 , 16:47   Re: Bomb Timer Line 0.7
Reply With Quote #4

Forget that :

if(equali(data[11],"P")) show_hud()
else if(equali(data[11],"D")) remove_hud()


Would be better to do :

Code:
switch ( data[11] ) {     case 'P' : show_hud()     case 'D' : remove_hud() }
__________________
Arkshine is offline