|
Author
|
Message
|
|
Veteran Member
|

06-18-2010
, 05:44
Re: Continuous hud message?
|
#1
|
Quote:
Originally Posted by DragosHh
You must create a task to make this.
Code:
#include <amxmodx>
#define PLUGIN "Continuous HUD Message"
#define VERSION "1.0"
#define AUTHOR "U"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
set_task(1.0,"message",_,_,_,"b")
}
public message(){
set_hudmessage(255, 255, 255, 0.6, 0.02, 0, 6.0, 4.0)
show_hudmessage(0,"Continuous HUD Message")
}
|
Already thought of that, didn't know if there was a different way. Thanks.
__________________
Currently accepting payment US DOLLARS ONLY for custom plugins, contact me through PM.
|
|
|
|