I'm using the below dhudmessage, and I'm trying to make a plugin that shows my messages to dead players who have the admin flag "A" only. But I don't want it to show every time a person dies, just like every 5 minutes to all dead players at that time.
Could anyone help, here's the code of course..
Code:
#include <amxmodx>
#include <dhudmessage>
public plugin_init()
{
register_plugin( "Test", "", "" );
}
public ClientCommand_Test( client )
{
set_dhudmessage( 0, 160, 0, -1.0, 0.25, 2, 6.0, 3.0, 0.1, 1.5 );
show_dhudmessage( client, "Join our forum." );
show_dhudmessage( client, "Website." );
show_dhudmessage( client, ":)" );
}