(This is for a TSRP server) Hello I'm trying to use this plugin to change the map to mecklenburgv3_b1 whenever it is on ts_lobby. However it makes some errors, here is the plugin:
Code:
#include <amxmodx>
public plugin_init()
{
register_plugin("Map Redirection","1.0","TSRP")
new mapname[32]
get_mapname( mapname, 31 )
if( equali( mapname, "ts_lobby" ) ) server_cmd( "map mecklenburgv3_b1" )
return PLUGIN_HANDLED
}
When the server starts up and it switches to mecklenburgv3_b1, it shows this in the console:
What do these metamod messages mean? And also they are lagging the server when it runs, it makes the ping go all the way in the thousands.