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

How to rename monsters?

Recommended Posts

I want to make new names for the monsters e.g. when you die, the game write something on the top of the screen with the killer monster's name.

Or when you finished the game, and the ending screen, which you can see all the monsters, I want to write another names.

Share this post


Link to post

Those are strings defined in the language lump. Just put a text lump named LANGUAGE in your mod, and put this inside:

[enu default]
CC_ZOMBIE = "ZOMBIEMAN";
CC_SHOTGUN = "SHOTGUN GUY";
CC_HEAVY = "HEAVY WEAPON DUDE";
CC_IMP = "IMP";
CC_DEMON = "DEMON";
CC_LOST = "LOST SOUL";
CC_CACO = "CACODEMON";
CC_HELL = "HELL KNIGHT";
CC_BARON = "BARON OF HELL";
CC_ARACH = "ARACHNOTRON";
CC_PAIN = "PAIN ELEMENTAL";
CC_REVEN = "REVENANT";
CC_MANCU = "MANCUBUS";
CC_ARCH = "ARCH-VILE";
CC_SPIDER = "THE SPIDER MASTERMIND";
CC_CYBER = "THE CYBERDEMON";
CC_HERO = "OUR HERO";
Replace the text in-between quotes by what you want. Don't change the identifier (CC_ZOMBIE and the likes).

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
×