|
Author
|
Message
|
|
Senior Member
|

07-29-2008
, 21:17
help with round end plugin
|
#1
|
what's wrong with this?
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Round end"
#define VERSION "1.0"
#define AUTHOR ""
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("logevent_round_end", 2, "1=Round_End")
.
}
public logevent_round_end()
{
set_hudmessage(178, 14, 41, -1.0, -0.4, 1, 0.5, 1.7, 0.2, 0.2,5);
show_hudmessage(id, "Round ended.^nStarting next round" );
}
|
|
|
|