Important
Plugin compatibility
This plugin is only compatible with amxmodx 1.9 or higher. Support for older versions has been discontinued for ALL my plugins.
- Download amxmodx 1.9 or amxmodx 1.10
An easy to use include file that allows you send delayed chat messages to players
#include <amxmodx>
#include <dcc>
public plugin_init()
{
register_clcmd("say /dcc", "TestDelayedMessage");
}
public TestDelayedMessage(id)
{
new Float:messageDelay = 2.0;
DColorChat(id, print_team_default, messageDelay, fmt("Printed message for ^3%i ^1after ^4%f seconds", id, messageDelay));
}Please refer to this link as to why i created this in the first place. You might also be interested in the original version of this. Please let me know if any issues occur.
Version list
- 1.0.0: Initial release [Current version]