hello guys,
can somebody help about this small code-
idea is to constantly show name of the next map under radar:
Code:
#include <amxmodx>
#include <amxmisc>
public plugin_init()
register_plugin("nextmapradar","1.0","author")
{
new nextmap[31]
format(message,255,"Nextmap: %s", nextmap)
set_hudmessage (255, 0, 0, 0.0, 0.14, 0, 6.0, -1)
show_hudmessage(id, message)
}
__________________