Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
.Lang File Help How do I create the credits?
Magasztos Offline
Member

Posts: 54
Threads: 21
Joined: Jun 2012
Reputation: 0
#1
How do I create the credits?

I know how to make the credits start through the script (StartCredits)
But I have no idea where I should write these credits

some help would be very much appreciated

Thanks :p

~The Hulk is always greener on the other side~
11-03-2012, 05:25 PM
Find
FlawlessHappiness Offline
Posting Freak

Posts: 3,980
Threads: 145
Joined: Mar 2012
Reputation: 171
#2
RE: How do I create the credits?

<CATEGORY Name="Ending">

<Entry Name="Credits">
CREDITS GOES HERE
</Entry>

</CATEGORY>

All text is written in the extra_english.lang

The red text is custom (I think). It depends on what you wrote when you called the credits

Trying is the first step to success.
11-03-2012, 05:53 PM
Find
Melvin Offline
Member

Posts: 245
Threads: 38
Joined: Jun 2012
Reputation: 5
#3
RE: How do I create the credits?

Use your Extra eng lang file. Make this:


<CATEGORY Name="Ending">
<Entry Name="MainCredits">- Amnesia Custom Story Made by: YOURNAME -[br][br][br]- YOURCUSTOMSTORYNAME -[br][br][br]CREDITS[br][br]</Entry>

</CATEGORY>

The [br] will skip a line, you know the exact same if you press enter when typing the thank you reply. Wink

You can also type **. This will set that text in a different font.

In your script, use this:

(This is my ending scene script)

void OnStart()
AddTimer("", 55, "Credits");


void Credits(string &in asTimer)
{
StartCredits("YOURENDSONG.ogg", true, "Ending", "MainCredits", 9001);
}


Good luck! Let me know the results!

[Image: 25F7U37.png]
11-03-2012, 05:56 PM
Website Find




Users browsing this thread: 1 Guest(s)