Hey, nice plugin. On a rapid view into the code, I'd say that I'd use
Code:
if( containi( szMap, "surf_ski_2" ) != -1 )
Instead of
Code:
if( equali( szMap, "surf_ski_2" ) )
With this you are checking the name of the map without checking if it contains uppercases. You can forget this of course, but I think it's annoying for those admins who change the map like:
amx_map SurF_SkI_2
__________________