Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
DoomBunny

How to edit quit messages [ZDoom SLADE]

Recommended Posts

1. Make a new entry with type: "Empty (Marker)" and call it "LANGUAGE"
2. Paste the code from below
3. Replace the text with whatever text you want (example: "HOW TO EDIT QUIT MESSAGES?!?!")

Your message will be shown as one of the random quit messages
image.png.e424160747182dcb8b59b8975c8f8030.png

that's all! you can edit more texts other than quit messages with language lump too btw.

[enu default]



//REPLACE THE TEXT WITH WHATEVER TEXT YOU WANT

//THERE ARE 15 QUIT MESSAGES; YOU CAN'T ADD OR REMOVE QUIT MESSAGES



QUITMSG = "what the helllllll";

QUITMSG1 = "Sussy Baka!";

QUITMSG2 = "ambatukam";

QUITMSG3 = "Test";

QUITMSG4 = "Sub to DoomBunny!!";

QUITMSG5 = "thanks rootpain wad for teaching me how to edit quit messages";

QUITMSG6 = "gzdoom? more like cheesy doom";

QUITMSG7 = "Nani?!";

QUITMSG8 = "DON'T QUIT";

QUITMSG9 = "L";

QUITMSG10 = "bruh";

QUITMSG11 = "i have no ideas anymore";

QUITMSG12 = "sus";

QUITMSG13 = "stop with the cap";

QUITMSG14 = "AMOGUS";

Share this post


Link to post

so this is actually not the correct way to make quit messages. You need to use mapinfo gameinfo to make quit messages.
So here's the actual way to make quit messages using MAPINFO lump
1. Make a new entry with type: "Empty (Marker)" and call it "MAPINFO"
2. Paste the code from below
3. You can put as many messages you want; all default quit messages are removed already so you can have less or more than 14 messages
 

gameinfo

{ 

    QuitMessages = 

    "<message1>",

    "<message2>",

    "<message3>"



    //you can add as many as you want

}

 

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×