[pawn](
: error 018: initialization data exceeds declared size[/pawn]
Thats because the text length exceeds the declared cells length and the warnings are caused because you are using a old version of pawno.
[pawn]static szGameModeName[ 11 ] = "GUPS v1.16";[/pawn]
Change the cells used length according to the length of your text eg
[pawn]static szGameModeName[ 12 ] = "RockS v1.57a"; [/pawn]
Note: I am not sure about these because i forgot pawn.