 |
|
Senior Member
Join Date: Sep 2005
Location: Calgary, Alberta
|

04-26-2007
, 00:19
Re: HUD message to appear forever
|
#6
|
ok ima stick with this code cause its works.
the only problem is it doesnt stay on forever like it disappears wen another hud message is displayed and reappears wen it goes away. even wen its in a totally different place.
how do i fix that?
Quote:
Originally Posted by styles
i would just do a thing like...
Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "test"
#define VERSION "1.0"
#define AUTHOR "test"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
set_task(10.0,"funtime",69,"",0,"b");
}
public funtime()
{
set_hudmessage(57, 199, 71, -1.0, 0.23, 0, 6.0, 12.0)
show_hudmessage(0, "Lets have sexy funtime!")
}
|
__________________
Loved by Many ....
Hated by Some ....
Respected by All !!!!
|
|
|
|