Hello guys, what is the problem with my code?

sorry if it is the wrong thread!
PHP Code:
/* Script generated by Pawn Studio */
#include < amxmodx >
#include < dodx.inc >
enum {
XMF_DAMAGE = 0,
XMF_DEATH,
XMF_SCORE,
};
public plugin_init( )
{
register_plugin( "Timeleft & Team Score", "b0.1", "Shinya." );
set_task(1.0, "SHOW_HUD", _, _, _, "a");
}
public SHOW_HUD( id )
{
new szTimeLeft = get_timeleft( );
new szTeamScore = dod_get_user_score( id );
set_hudmessage(165, 165, 165, 0.34, 0.02, 0, 6.0, 1.0)
show_hudmessage(id, "Time's Left: %i", szTimeLeft)
set_hudmessage(255, 0, 0, 0.16, 0.07, 0, 6.0, 1.0)
show_hudmessage(id, "Score: %d", szTeamScore)
}