Jump to content

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

}

 

Edited by DoomBunny

Share this post


Link to post

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...