Well, there's no ID being passed through the task hooked to revertBack so if it's not displaying the HUD message, that's why.
Also, you need to do length-1 in these functions:
Code:
new map[64]
get_mapname(map, 64)
new directory[60]
get_configsdir(directory, 60)
// etc.
So it'd be:
Code:
new map[64]
get_mapname(map, 63)
new directory[60]
get_configsdir(directory, 59)
// etc.
__________________