PHP Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Reminder"
#define VERSION "1.0"
#define AUTHOR "HalfLife"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
if( get_gametime () > 600.0 ) )
{
client_print( 0, print_chat, "10 minutes have passed, now Admins can Vote For Mod." );
return PLUGIN_HANDLED
}
This is my plugin, I made so when 600 seconds have passed,
PHP Code:
client_print( 0, print_chat, "10 minutes have passed, now Admins can Vote For Mod." );
but it doesn't compile and gives errors (see the picture)