View Single Post
Hawk552
AMX Mod X Moderator
Join Date: Aug 2005
Old 09-22-2009 , 19:52   Re: Surf Simpsons Pro
Reply With Quote #5

Changes have been requested via PM.

For starters, inconsistent use of semicolons.

PHP Code:
new const MDL[MaxMDL][0] = 
I'm surprised this works. You should use [] or a constant that will store all of the strings properly.

PHP Code:
    new mapname[32]
    
get_mapname(mapname,31)
    
    if(
equali(mapname,"surf_simpsons_final")) 
Unnecessarily long mapname variable. Shorten it to 20 characters and then pass 19 as the max length for get_mapname().

PHP Code:
new mdl
Avoid creating variables in loops.

PHP Code:
    return FMRES_IGNORED
Meaningless return; this isn't even an FM forward.
__________________
Hawk552 is offline
Send a message via AIM to Hawk552