In case where you don't need to remove prefix map, you can do something like:
Code:
sMap[ contain( sMap, "_" ) + 1 ];
E.g.: you want to display map without prefix, you can do directly :
Code:
client_print( id, print_chat, "Current Map : %s", sMap[ contain( sMap, "_" ) + 1 ] );
contain() returns position of '_'. And +1, because we want to display all characters after '_'.
That's why I've said it depends how you code after.
__________________