Jump to content

Recommended Posts

For custom characters, it's as simple as adding it to their speech files.

SUPERCOOLTHINGIE= "It brings the end of times.",

Same for custom characters having lines for other custom characters.

SOMEDUDE =
        {
            GENERIC = "NO U",
            ATTACKER = "NO U",
            MURDERER = "NO U",
            REVIVER = "NO U",
            GHOST = "NO U",
            FIRESTARTER = "NO U",
        },

For other characters, you need to go into your modmain and put in something like this.

STRINGS.CHARACTERS.GENERIC.DESCRIBE.SUPERCOOLTHINGIE = "It's a subpar thingie at best."

STRINGS.CHARACTERS.SOMEDUDE.DESCRIBE.SUPERCOOLTHINGIE = "NO U"

Same for getting other characters to have lines for other characters.

GLOBAL.STRINGS.CHARACTERS.SOMEDUDE.DESCRIBE.YOURDUDE = 
{
	GENERIC = "NO U",
	ATTACKER = "NO U",
	MURDERER = "NO U",
	REVIVER = "NO U",
	GHOST = "NO U",
	FIRESTARTER = "NO U",
}

 

  • Like 1

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
×
  • Create New...