Hello guys, I'm trying to create a HudMessage script, saying the name of the first level. However, it's not working; I had watched Chubzdoomer's tutorial teaching how to do it, it was the video ZDoom ACS Scripting Tutorial #8 - HudMessage. I did exactly the way he did it, just changing the name, but it didn't work. Why is this happening?
This is the script that isn't working:
#include "zcommon.acs"
script 1 OPEN
{
//void HudMessage (text; in type, int id, int color, fixed x, fixed y, fixed holdTime [, fixed alpha]);
Question
Johnny_Vicc_007
Hello guys, I'm trying to create a HudMessage script, saying the name of the first level. However, it's not working; I had watched Chubzdoomer's tutorial teaching how to do it, it was the video ZDoom ACS Scripting Tutorial #8 - HudMessage. I did exactly the way he did it, just changing the name, but it didn't work. Why is this happening?
This is the script that isn't working:
#include "zcommon.acs"
script 1 OPEN
{
//void HudMessage (text; in type, int id, int color, fixed x, fixed y, fixed holdTime [, fixed alpha]);
SetFont("BIGFONT");
HudMessage(s:"Enchanted Lagoons Zone - Act 1"; HUDMSG_PLAIN, 1, CR_WHITE, 0.5, 0.1, 4.0);
}
Share this post
Link to post
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.