I want a script to make it reload on startup. Some files that I have
require a restart to be activated.
I tried doing this, but it reloads over and over, a loop, even though I'd think it shouldn't.
Code:
#include <amxmodx>
new RELOAD_YES 0
public plugin_init() {
if ( RELOAD_YES == 0) {
server_cmd( "reload" )
RELOAD_YES = 1
}
}