Hud msg on sv_restart 5?
I dont know if this is possible, but after server executes "sv_restart 5" is their a way to pop up a HUD MSG for like 10 seconds after the sv_restart 5 is executed.. So I execute lo3.cfg
sv_restart 3 sv_restart 3 sv_restart 5 HUD MSG |
Re: Hud msg on sv_restart 5?
After the line put amx_csay command.
|
Re: Hud msg on sv_restart 5?
Oh ... wow that was simple lmaoo thanks
|
Re: Hud msg on sv_restart 5?
public endoh()
{ continue_gen_forward(forward_id) } What would I put for it to be a BLUE hudmsg for like 5-10 seconds |
Re: Hud msg on sv_restart 5?
|
Re: Hud msg on sv_restart 5?
set_hudmessage ( red=0, green=0, blue=200, Float:x=-1.0, Float:y=0.35, effects=0, Float:fxtime=5.0, Float:holdtime=10.0, Float:fadeintime=0.1, Float:fadeouttime=0.2, channel=4 )
that would be a blue hud that takes 5 seconds to pop up and stays for 10 seconds? |
Re: Hud msg on sv_restart 5?
Don't put in the parameter names.
They are only there to show you what they are. set_hudmessage(0, 0, 200, -1.0, 0.35, 0, 5.0, 10.0, 0.1, 0.2, 4) That should be used instead of what you did. Also, no, you used the time argument wrong. fxtime is the time for the effects, holdtime is the time it is displayed. |
Re: Hud msg on sv_restart 5?
Code:
set_hudmessage(0, 0, 200, -1.0, 0.35, 0, 5.0, 10.0, 0.1, 0.2, 4) |
Re: Hud msg on sv_restart 5?
Quote:
|
Re: Hud msg on sv_restart 5?
show_hudmessage(0, "BLAH")
that is to show the hud to everyone right? |
| All times are GMT -4. The time now is 14:36. |
Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.