Talk:Subtitles (Portal 2): Difference between revisions
FIRE-Buzzard (talk | contribs) (→Doesn't work: new section) |
FIRE-Buzzard (talk | contribs) |
||
Line 61: | Line 61: | ||
--[[User:Chickenmobile|Chickenmobile]] 00:20, 1 March 2012 (PST) | --[[User:Chickenmobile|Chickenmobile]] 00:20, 1 March 2012 (PST) | ||
== | == No ''.DAT'' file == | ||
It doesn't create the ''.DAT'' file. I have the '''''captioncompiler.exe''''' in my ''Steam\SteamApps\Portal 2\bin'' folder like the article said. I created a text file called: ''closecaption_aperture_ai'' and within it: | It doesn't create the ''.DAT'' file. I have the '''''captioncompiler.exe''''' in my ''Steam\SteamApps\Portal 2\bin'' folder like the article said. I created a text file called: ''closecaption_aperture_ai'' and within it: |
Revision as of 11:24, 30 August 2018
Example
I wanted GLaDOS to speak when I pressed a button
I have my captions inside a file called closecaption_mymod_English.txt which is in the format:
lang
{
Language "English"
Tokens
{
GLaDOS.ramble1 "Sorry about the mess. I've really let the place go since you killed me."
GLaDOS.ramble2 "By the way, thanks for that."
}
}
I open up the cmd prompt and put in:
"U:/Program Files/Steam/steamapps/common/Portal 2/bin/captioncompiler.exe" -v "closecaption_mymod_English.txt"
In Hammer I create an ambient_generic which points towards my custom GLaDOS sound and named it: glados_ramble1. I also add a point_servercommand and name it @servercommand. Inside a newly created logic_auto I put:
My Output | Target | Target Input | Parameter |
---|---|---|---|
OnMapSpawn | @servercommand | Command | cc_lang mymod_English |
I create a prop_button and add another output:
My Output | Target | Target Input | Parameter |
---|---|---|---|
OnPressed | @servercommand | Command | cc_emit GLaDOS.ramble1 |
Also in the prop_button I add another output to activate the sound:
My Output | Target | Target Input | Parameter |
---|---|---|---|
OnPressed | glados_ramble1 | PlaySound |
Tada! The captions appear with the sound.
--Chickenmobile 00:20, 1 March 2012 (PST)
No .DAT file
It doesn't create the .DAT file. I have the captioncompiler.exe in my Steam\SteamApps\Portal 2\bin folder like the article said. I created a text file called: closecaption_aperture_ai and within it:
lang
{
Language "english"
Tokens
{
portal.00_part1_entry-1 "<clr:219,112,147><I>Hello and, again, welcome to the Aperture Science computer-aided enrichment center."
}
}
I have saved it with notepad++ in the required format and dragged it over to the captioncompiler.exe. It did something in a fraction of a second, closed itself then nothing happened. I have also tried to create the .bat file but I'm not the best in programming. This is what it looks like:
"D:\Steam\SteamApps\common\Portal 2\bin\captioncompiler.exe" %1 -Portal 2 "D:\Steam\SteamApps\common\Portal 2\portal2\gameinfo.txt"
pause