 |
|
Senior Member
|

08-29-2004
, 00:30
|
#5
|
Quote:
|
Originally Posted by Peli
Here is the code for a hud message in red that says "TEST" for 5 seconds at the start of the round :
Code:
public plugin_init()
{
register_plugin("Test","0.1","DarlD")
register_event("ResetHUD","new_round","b")
}
public new_round(id)
{
set_hudmessage(255, 0, 0, -1.0, -1.0, 0, 6.0, 5.0, 0.5, 1.5, 4)
show_hudmessage(0, "TEST")
return PLUGIN_HANDLED
}

|
i dont get the end, the new_rround thing, i searched for it on WIKI but i cant find it. could i remplace the new round by a death?
|
|
|
|