<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Frictional Games Forum - All Forums]]></title>
		<link>http://www.frictionalgames.com/forum/</link>
		<description><![CDATA[Frictional Games Forum - http://www.frictionalgames.com/forum]]></description>
		<pubDate>Sat, 04 Feb 2012 05:16:53 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[EXCEPTION_ACCESS_VIOLATION]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13083.html</link>
			<pubDate>Sat, 04 Feb 2012 05:09:30 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13083.html</guid>
			<description><![CDATA[I've recently downloaded Amnesia, But when I try to run it, I get this message:<br />
<br />
"Amnesia.exe caused an EXCEPTION_ACCESS_VIOLATION in module ig4icd32.dll at 0023:03AC3E22"<br />
<br />
I have the proper ATI stuff and my drivers are up to date. Any ideas?]]></description>
			<content:encoded><![CDATA[I've recently downloaded Amnesia, But when I try to run it, I get this message:<br />
<br />
"Amnesia.exe caused an EXCEPTION_ACCESS_VIOLATION in module ig4icd32.dll at 0023:03AC3E22"<br />
<br />
I have the proper ATI stuff and my drivers are up to date. Any ideas?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Will there be more games?]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13081.html</link>
			<pubDate>Fri, 03 Feb 2012 21:54:49 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13081.html</guid>
			<description><![CDATA[<span style="font-size: large;">I finished playing the game a few weeks ago, and I totally loved it. I liked the storyline, the textures and the puzzles. Pretty much everything. I had really fun playing it with my friends <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" />. But I was surprised how good the storyline was. So my question is: <br />
will you make more games? Like Amnesia, but after you throw agrippa's head in the portal? I think there should be a sequel. I also liked the "old-fashioned" style in this game. I mean like when you use a lantern and all that.</span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: large;">I finished playing the game a few weeks ago, and I totally loved it. I liked the storyline, the textures and the puzzles. Pretty much everything. I had really fun playing it with my friends <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" />. But I was surprised how good the storyline was. So my question is: <br />
will you make more games? Like Amnesia, but after you throw agrippa's head in the portal? I think there should be a sequel. I also liked the "old-fashioned" style in this game. I mean like when you use a lantern and all that.</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Can't make door explode?]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13080.html</link>
			<pubDate>Fri, 03 Feb 2012 21:33:44 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13080.html</guid>
			<description><![CDATA[Hey, I can't make my<span style="font-style: italic;"> "prison_section_plain_2"</span> door explode for colliding with an area.<br />
The door is set locked. It's openamount is 0.<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>void OnStart()<br />
{<br />
PlayMusic("04_amb.ogg", true, 1, 0.1, 0, true);<br />
SetEntityCallbackFunc("lantern_2", "OnPickup");<br />
AddEntityCollideCallback("Player","ScriptArea_1","DoorExplode",true,1);<br />
}void OnPickup(string &amp;in asEntity, string &amp;in type)<br />
{<br />
SetEntityActive("ScriptArea_1", true);<br />
}void DoorExplode(string &amp;in asParent, string &amp;in asChild, int alState)<br />
{<br />
StartPlayerLookAt("prison_section_plain_2", 10, 100, "");<br />
SetPropHealth("prison_section_plain_2", 0.0f);<br />
GiveSanityDamage(10, true);<br />
PlaySoundAtEntity("", "react_pant.snt", "Player", 0, false);<br />
FadeImageTrailTo(3, 1);<br />
 FadeSepiaColorTo(5, 1);<br />
 FadePlayerFOVMulTo(0.7, 0.05);<br />
 AddTimer("timerReset", 1.0f, "TimerResetPlayer");<br />
}void TimerResetPlayer(string &amp;in asTimer)<br />
{<br />
 ChangePlayerStateToNormal();<br />
 StopPlayerLookAt(); FadeImageTrailTo(0, 1);<br />
 FadeSepiaColorTo(0, 1);<br />
 //FadeRadialBlurTo(0, 1);<br />
 FadePlayerFOVMulTo(1, 0.01f); SetPlayerMoveSpeedMul(1);<br />
 SetPlayerRunSpeedMul(1);<br />
 SetPlayerLookSpeedMul(1); <br />
}</code></div></div>
<br />
If the door cannot be destroyed like this, is there any workaround?<br />
I do not wish to interact with the door directly.]]></description>
			<content:encoded><![CDATA[Hey, I can't make my<span style="font-style: italic;"> "prison_section_plain_2"</span> door explode for colliding with an area.<br />
The door is set locked. It's openamount is 0.<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>void OnStart()<br />
{<br />
PlayMusic("04_amb.ogg", true, 1, 0.1, 0, true);<br />
SetEntityCallbackFunc("lantern_2", "OnPickup");<br />
AddEntityCollideCallback("Player","ScriptArea_1","DoorExplode",true,1);<br />
}void OnPickup(string &amp;in asEntity, string &amp;in type)<br />
{<br />
SetEntityActive("ScriptArea_1", true);<br />
}void DoorExplode(string &amp;in asParent, string &amp;in asChild, int alState)<br />
{<br />
StartPlayerLookAt("prison_section_plain_2", 10, 100, "");<br />
SetPropHealth("prison_section_plain_2", 0.0f);<br />
GiveSanityDamage(10, true);<br />
PlaySoundAtEntity("", "react_pant.snt", "Player", 0, false);<br />
FadeImageTrailTo(3, 1);<br />
 FadeSepiaColorTo(5, 1);<br />
 FadePlayerFOVMulTo(0.7, 0.05);<br />
 AddTimer("timerReset", 1.0f, "TimerResetPlayer");<br />
}void TimerResetPlayer(string &amp;in asTimer)<br />
{<br />
 ChangePlayerStateToNormal();<br />
 StopPlayerLookAt(); FadeImageTrailTo(0, 1);<br />
 FadeSepiaColorTo(0, 1);<br />
 //FadeRadialBlurTo(0, 1);<br />
 FadePlayerFOVMulTo(1, 0.01f); SetPlayerMoveSpeedMul(1);<br />
 SetPlayerRunSpeedMul(1);<br />
 SetPlayerLookSpeedMul(1); <br />
}</code></div></div>
<br />
If the door cannot be destroyed like this, is there any workaround?<br />
I do not wish to interact with the door directly.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[FadeGlobalSoundVolume not affecting "Terror" sound]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13079.html</link>
			<pubDate>Fri, 03 Feb 2012 20:29:07 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13079.html</guid>
			<description><![CDATA[Hi guys,<br />
<br />
new to the forums here but I'll get right to the point.<br />
<br />
I'm using the following code to mute the game volume at the start of my map.<br />
<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>void OnEnter()<br />
{ FadeGlobalSoundVolume(0, 0); }</code></div></div>
<br />
<br />
However, due to there being an enemy close to the player at the start the terror music starts playing. I want it to be completely silent but still be playing (just at 0 volume.)<br />
<br />
Does FadeGlobalSoundVolume not affect music? Any suggestions?<br />
<br />
Thanks in advance.]]></description>
			<content:encoded><![CDATA[Hi guys,<br />
<br />
new to the forums here but I'll get right to the point.<br />
<br />
I'm using the following code to mute the game volume at the start of my map.<br />
<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>void OnEnter()<br />
{ FadeGlobalSoundVolume(0, 0); }</code></div></div>
<br />
<br />
However, due to there being an enemy close to the player at the start the terror music starts playing. I want it to be completely silent but still be playing (just at 0 volume.)<br />
<br />
Does FadeGlobalSoundVolume not affect music? Any suggestions?<br />
<br />
Thanks in advance.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[New Amnesia Gameplay! [Funny to watch] {scary to play} With JD]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13077.html</link>
			<pubDate>Fri, 03 Feb 2012 19:52:29 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13077.html</guid>
			<description><![CDATA[Hey amnesia folk,<br />
<br />
Im new to this game and i have been recording my gameply from scratch and am uploading to youtube:<br />
<br />
 I have a nightvision camera and high quality Mic <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
This is a new channel, i recently moved from GoDzFilmz which had around 35k views. <br />
<br />
I WOULD LOVE IT IF YOU SUBBED AND WILL DO SHOUTOUT FOR ALL WHO DO!<br />
<br />
here is my channel! PLEASE SUBSCRIBE! <a href="http://www.youtube.com/user/JDLiveGamers" target="_blank">http://www.youtube.com/user/JDLiveGamers</a>]]></description>
			<content:encoded><![CDATA[Hey amnesia folk,<br />
<br />
Im new to this game and i have been recording my gameply from scratch and am uploading to youtube:<br />
<br />
 I have a nightvision camera and high quality Mic <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
This is a new channel, i recently moved from GoDzFilmz which had around 35k views. <br />
<br />
I WOULD LOVE IT IF YOU SUBBED AND WILL DO SHOUTOUT FOR ALL WHO DO!<br />
<br />
here is my channel! PLEASE SUBSCRIBE! <a href="http://www.youtube.com/user/JDLiveGamers" target="_blank">http://www.youtube.com/user/JDLiveGamers</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Problem with the editors.]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13076.html</link>
			<pubDate>Fri, 03 Feb 2012 19:27:14 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13076.html</guid>
			<description><![CDATA[I have an issue with the editors.<br />
<br />
<br />
When i open f.ex the level editor, everything is fine, but when i try to add a material, by clicking the decals tab and the ''...'', the editor crashes, and gives me a blackbox error. this isnt only in the level editor, its in every editor. model, particle, material, whatever; all crashing when i click the ''...'' under the materials tab. this has happened every time i try.<br />
<br />
if anyone has any advice on how to fix this, please let me know<br />
<br />
cheers.]]></description>
			<content:encoded><![CDATA[I have an issue with the editors.<br />
<br />
<br />
When i open f.ex the level editor, everything is fine, but when i try to add a material, by clicking the decals tab and the ''...'', the editor crashes, and gives me a blackbox error. this isnt only in the level editor, its in every editor. model, particle, material, whatever; all crashing when i click the ''...'' under the materials tab. this has happened every time i try.<br />
<br />
if anyone has any advice on how to fix this, please let me know<br />
<br />
cheers.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[i cant get any of penumbras to work.]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13075.html</link>
			<pubDate>Fri, 03 Feb 2012 19:27:13 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13075.html</guid>
			<description><![CDATA[Penumbra.exe has stopped working windows is checking for a solution to problem.<br />
a problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available.<br />
i bought all of games off of steam and used to be able to play them i have windows vista only thing i have done different is bought new videocard since last time i played whichs its been about 6 months to year since i last played new card i got is a nvidia geforce gtx 550 ti and yes i have updated my drivers.]]></description>
			<content:encoded><![CDATA[Penumbra.exe has stopped working windows is checking for a solution to problem.<br />
a problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available.<br />
i bought all of games off of steam and used to be able to play them i have windows vista only thing i have done different is bought new videocard since last time i played whichs its been about 6 months to year since i last played new card i got is a nvidia geforce gtx 550 ti and yes i have updated my drivers.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Need help on a few things]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13074.html</link>
			<pubDate>Fri, 03 Feb 2012 18:49:54 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13074.html</guid>
			<description><![CDATA[im trying to get my intro to work right, and everything does except one thing. i want the player to look at a door and have it creak open about half way. all i cant get to happen to the door always be open, and the sound i want to play for the door opening plays over and over again. but my player making sounds, like breathing doesnt.<br />
<br />
heres whats i have set up.<br />
<br />
<br />
void OnStart()<br />
{<br />
	SetPlayerActive(false); <br />
	SetPlayerCrouching(true); <br />
	FadeOut(0); <br />
	FadeIn(3);<br />
	AddTimer("T1", 3, "Intro");<br />
	AddTimer("T2", 6, "Intro");<br />
	AddTimer("T3", 9, "Intro");<br />
	AddTimer("T4", 12, "Intro"); <br />
	AddTimer("T5", 15, "Intro"); <br />
}<br />
<br />
void Intro(string &amp;in asTimer)<br />
{<br />
	string x = asTimer;<br />
	if (x == "T1")<br />
	{<br />
 PlaySoundAtEntity("", "react_sigh.snt", "Player", 0, false);<br />
 FadeOut(3);<br />
	} <br />
	else if (x == "T2") <br />
	{<br />
 FadeIn(3);<br />
 PlaySoundAtEntity("", "react_breath.snt", "Player", 0, false);<br />
 StartPlayerLookAt("ScriptArea_2", 2, 2, "");<br />
 PlaySoundAtEntity("", "FORGOT THE SOUND FILE NAME", "Door1", 0, false);<br />
 SetMoveObjectState("Door1", 0.50);<br />
 <br />
	}<br />
	else if (x == "T3")<br />
	{<br />
 StopPlayerLookAt();<br />
 StartPlayerLookAt("ScriptArea_3", 1, 1, "");<br />
	}<br />
	else if (x == "T4") <br />
	{<br />
 SetLampLit("DeskCandle1", true, true);<br />
 PlaySoundAtEntity("", "react_breath_slow.snt", "Player", 0, false);<br />
 StopPlayerLookAt();<br />
	}<br />
	else if (x == "T5")<br />
	{<br />
 SetPlayerCrouching(false);<br />
 SetPlayerActive(true);<br />
 AddQuest("WakeUp", "WakeUp");<br />
	}<br />
}<br />
<br />
<br />
I have a level door up to unlock after the player completes 3 quest.  But at the points when it unlocks. it just does,  nothing to let the player know its unlocked.  I need some advice on a good way to let the player know, like good sound, or music to use.<br />
<br />
And also, how can i make it look like the player is laying in bed at the start, then gets out. i messed around with a lot of stuff, but i cant get it right.]]></description>
			<content:encoded><![CDATA[im trying to get my intro to work right, and everything does except one thing. i want the player to look at a door and have it creak open about half way. all i cant get to happen to the door always be open, and the sound i want to play for the door opening plays over and over again. but my player making sounds, like breathing doesnt.<br />
<br />
heres whats i have set up.<br />
<br />
<br />
void OnStart()<br />
{<br />
	SetPlayerActive(false); <br />
	SetPlayerCrouching(true); <br />
	FadeOut(0); <br />
	FadeIn(3);<br />
	AddTimer("T1", 3, "Intro");<br />
	AddTimer("T2", 6, "Intro");<br />
	AddTimer("T3", 9, "Intro");<br />
	AddTimer("T4", 12, "Intro"); <br />
	AddTimer("T5", 15, "Intro"); <br />
}<br />
<br />
void Intro(string &amp;in asTimer)<br />
{<br />
	string x = asTimer;<br />
	if (x == "T1")<br />
	{<br />
 PlaySoundAtEntity("", "react_sigh.snt", "Player", 0, false);<br />
 FadeOut(3);<br />
	} <br />
	else if (x == "T2") <br />
	{<br />
 FadeIn(3);<br />
 PlaySoundAtEntity("", "react_breath.snt", "Player", 0, false);<br />
 StartPlayerLookAt("ScriptArea_2", 2, 2, "");<br />
 PlaySoundAtEntity("", "FORGOT THE SOUND FILE NAME", "Door1", 0, false);<br />
 SetMoveObjectState("Door1", 0.50);<br />
 <br />
	}<br />
	else if (x == "T3")<br />
	{<br />
 StopPlayerLookAt();<br />
 StartPlayerLookAt("ScriptArea_3", 1, 1, "");<br />
	}<br />
	else if (x == "T4") <br />
	{<br />
 SetLampLit("DeskCandle1", true, true);<br />
 PlaySoundAtEntity("", "react_breath_slow.snt", "Player", 0, false);<br />
 StopPlayerLookAt();<br />
	}<br />
	else if (x == "T5")<br />
	{<br />
 SetPlayerCrouching(false);<br />
 SetPlayerActive(true);<br />
 AddQuest("WakeUp", "WakeUp");<br />
	}<br />
}<br />
<br />
<br />
I have a level door up to unlock after the player completes 3 quest.  But at the points when it unlocks. it just does,  nothing to let the player know its unlocked.  I need some advice on a good way to let the player know, like good sound, or music to use.<br />
<br />
And also, how can i make it look like the player is laying in bed at the start, then gets out. i messed around with a lot of stuff, but i cant get it right.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Hey guys please check this :)]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13073.html</link>
			<pubDate>Fri, 03 Feb 2012 18:49:33 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13073.html</guid>
			<description><![CDATA[me first time trying to play amnesia with cam and etc<br />
So please rate and comment if want subribe<br />
and say shoud i continue ?<br />
<br />
<object type="application/x-shockwave-flash" class="video_embed" style="width: 450px; height: 366px;" data="http://www.youtube.com/v/HVVif7f03UE"><param name="movie" value="http://www.youtube.com/v/HVVif7f03UE" /></object><br />
<br />
<br />
please dont dislike because my english skill <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" /> <br />
my main language is russian, and i dont use english ever.]]></description>
			<content:encoded><![CDATA[me first time trying to play amnesia with cam and etc<br />
So please rate and comment if want subribe<br />
and say shoud i continue ?<br />
<br />
<object type="application/x-shockwave-flash" class="video_embed" style="width: 450px; height: 366px;" data="http://www.youtube.com/v/HVVif7f03UE"><param name="movie" value="http://www.youtube.com/v/HVVif7f03UE" /></object><br />
<br />
<br />
please dont dislike because my english skill <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" /> <br />
my main language is russian, and i dont use english ever.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Thank you frictional!]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13069.html</link>
			<pubDate>Fri, 03 Feb 2012 18:27:42 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13069.html</guid>
			<description><![CDATA[I have seen a lot of thank you threads but i had to put my own. Only played Amnesia and the expansion Justine and i was completely blown away! I have never played anything even close to as scary as this game. You guys are amazing and please keep on making crazy games...like amnesia 2? Paint the man, cut the lines...PAINT THE MAN, CUT THE LINES!!!]]></description>
			<content:encoded><![CDATA[I have seen a lot of thank you threads but i had to put my own. Only played Amnesia and the expansion Justine and i was completely blown away! I have never played anything even close to as scary as this game. You guys are amazing and please keep on making crazy games...like amnesia 2? Paint the man, cut the lines...PAINT THE MAN, CUT THE LINES!!!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Santas little helper]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13068.html</link>
			<pubDate>Fri, 03 Feb 2012 17:31:16 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13068.html</guid>
			<description><![CDATA[Hey there guys. Long time no see.<br />
I've decided to go back to modding with Amnesia since it's darn fun!<br />
Let's get down to business...<br />
I'm looking for someone who can help me out with testing my map, giving me feedback and come with awesome ideas.<br />
<br />
Please add me on skype:<br />
xuxz0r<br />
or msn:<br />
mattias_dionysus@hotmail.com<br />
<br />
<span style="font-weight: bold;">You have to be 15years old or older</span>, I've had too much drama with people under the age of 15...<br />
<br />
Thank you &lt;3]]></description>
			<content:encoded><![CDATA[Hey there guys. Long time no see.<br />
I've decided to go back to modding with Amnesia since it's darn fun!<br />
Let's get down to business...<br />
I'm looking for someone who can help me out with testing my map, giving me feedback and come with awesome ideas.<br />
<br />
Please add me on skype:<br />
xuxz0r<br />
or msn:<br />
mattias_dionysus@hotmail.com<br />
<br />
<span style="font-weight: bold;">You have to be 15years old or older</span>, I've had too much drama with people under the age of 15...<br />
<br />
Thank you &lt;3]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[King of the Web]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13067.html</link>
			<pubDate>Fri, 03 Feb 2012 17:05:24 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13067.html</guid>
			<description><![CDATA[Is anyone suprised that PewDiePie is second place for King of the Web?<br />
<br />
You can see the leaderboard at <a href="http://kingofweb.com/" target="_blank">http://kingofweb.com/</a><br />
<br />
For people who never heard of King of the Web before: King of the Web is (I think) only for Youtubers. Fans can vote for their favorite Youtuber 10 times a day. The winner gets &#36;7,500.<br />
<br />
Apprently PDP will be donating the money to WWF (to help animals).]]></description>
			<content:encoded><![CDATA[Is anyone suprised that PewDiePie is second place for King of the Web?<br />
<br />
You can see the leaderboard at <a href="http://kingofweb.com/" target="_blank">http://kingofweb.com/</a><br />
<br />
For people who never heard of King of the Web before: King of the Web is (I think) only for Youtubers. Fans can vote for their favorite Youtuber 10 times a day. The winner gets &#36;7,500.<br />
<br />
Apprently PDP will be donating the money to WWF (to help animals).]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Voice acting problems, HELP!]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13066.html</link>
			<pubDate>Fri, 03 Feb 2012 15:53:10 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13066.html</guid>
			<description><![CDATA[Okay so i'm doing some voice acting for a custom story that'll soon be released. And i'm recording it with audacity. And for som reason there's a small buzz coming from my microphone.I need help to remove that, And i know that there's a lot of voice actros /moders on this formus and i know you can help me. If there's any other program that's better then audiacity then tell me. If there'sa way to remove it inside of adacity then tell me.<br />
I'll try anything. <br />
<br />
Trollox.]]></description>
			<content:encoded><![CDATA[Okay so i'm doing some voice acting for a custom story that'll soon be released. And i'm recording it with audacity. And for som reason there's a small buzz coming from my microphone.I need help to remove that, And i know that there's a lot of voice actros /moders on this formus and i know you can help me. If there's any other program that's better then audiacity then tell me. If there'sa way to remove it inside of adacity then tell me.<br />
I'll try anything. <br />
<br />
Trollox.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Adding Notes to Game Broke .Lang File]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13065.html</link>
			<pubDate>Fri, 03 Feb 2012 15:43:44 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13065.html</guid>
			<description><![CDATA[Hi,<br />
I Recently went about adding notes to my amnesia level but once i did the whole .lang file stopped working.and i don't know why. here is part of my .lang file. the "Journal" category is what is breaking it and i don't know why?<br />
<br />
&lt;LANGUAGE&gt;<br />
&lt;CATEGORY Name="CustomStoryMain"&gt;<br />
&lt;Entry Name="Description"&gt;<br />
You are inside this old house.<br />
&lt;/Entry&gt;<br />
&lt;CATEGORY Name="Journal"&gt;<br />
&lt;Entry Name="Note_notea_Name"&gt;Maids Final Words&lt;/Entry&gt;<br />
&lt;Entry Name="Note_notea_Text"&gt;To Whom It May Concern [br][br] If you Are Reading This then I am Definately Dead[br]Something Has Murdered Everyone In The House and Now Its Coming For Me.[br]Oh No Its Found Me, Tell My Son I Love Him&lt;/Entry&gt;<br />
&lt;/CATEGORY&gt;<br />
&lt;CATEGORY Name="Levels"&gt;<br />
&lt;Entry Name="leveloneexit"&gt;<br />
2nd Floor<br />
&lt;/Entry&gt;<br />
&lt;/CATEGORY&gt;<br />
&lt;/LANGUAGE&gt;<br />
<br />
Any Help Would Be Appriciated<img src="images/smilies/wink.gif" style="vertical-align: middle;" border="0" alt="Wink" title="Wink" />]]></description>
			<content:encoded><![CDATA[Hi,<br />
I Recently went about adding notes to my amnesia level but once i did the whole .lang file stopped working.and i don't know why. here is part of my .lang file. the "Journal" category is what is breaking it and i don't know why?<br />
<br />
&lt;LANGUAGE&gt;<br />
&lt;CATEGORY Name="CustomStoryMain"&gt;<br />
&lt;Entry Name="Description"&gt;<br />
You are inside this old house.<br />
&lt;/Entry&gt;<br />
&lt;CATEGORY Name="Journal"&gt;<br />
&lt;Entry Name="Note_notea_Name"&gt;Maids Final Words&lt;/Entry&gt;<br />
&lt;Entry Name="Note_notea_Text"&gt;To Whom It May Concern [br][br] If you Are Reading This then I am Definately Dead[br]Something Has Murdered Everyone In The House and Now Its Coming For Me.[br]Oh No Its Found Me, Tell My Son I Love Him&lt;/Entry&gt;<br />
&lt;/CATEGORY&gt;<br />
&lt;CATEGORY Name="Levels"&gt;<br />
&lt;Entry Name="leveloneexit"&gt;<br />
2nd Floor<br />
&lt;/Entry&gt;<br />
&lt;/CATEGORY&gt;<br />
&lt;/LANGUAGE&gt;<br />
<br />
Any Help Would Be Appriciated<img src="images/smilies/wink.gif" style="vertical-align: middle;" border="0" alt="Wink" title="Wink" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Help with wiki engine]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13064.html</link>
			<pubDate>Fri, 03 Feb 2012 14:41:31 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13064.html</guid>
			<description><![CDATA[<span style="font-size: small;"><span style="font-family: Arial;">So I just started getting into editors and custom stories. But from what I've seen on youtube, mine doesn't work correctly. I can't make it full screen, and I can't get the large 360 view. also, i can't unhinge the camera or move wall position. Is my computer simply not compatible or is the wiki site download bad? anyone have a different link to an HPL that works properly? btw i have windows 7. <br />
</span></span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: small;"><span style="font-family: Arial;">So I just started getting into editors and custom stories. But from what I've seen on youtube, mine doesn't work correctly. I can't make it full screen, and I can't get the large 360 view. also, i can't unhinge the camera or move wall position. Is my computer simply not compatible or is the wiki site download bad? anyone have a different link to an HPL that works properly? btw i have windows 7. <br />
</span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Custom stories just not working.]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13063.html</link>
			<pubDate>Fri, 03 Feb 2012 14:17:56 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13063.html</guid>
			<description><![CDATA[<span style="color: #ff0000;">I've really been wanting to get in to some Amnesia custom stories, but they don't want to apear on the list,a nd when they do certain entities in them don't like to show up or work correctly, IE: In Amnesia Course 2, the tables will not appear, making it impossible to play.<br />
<br />
I've tried reinstalling, I've tried debugging the games files, BTW I use Steam, if that's of importance. This is getting annoying. Please help.<br />
</span>]]></description>
			<content:encoded><![CDATA[<span style="color: #ff0000;">I've really been wanting to get in to some Amnesia custom stories, but they don't want to apear on the list,a nd when they do certain entities in them don't like to show up or work correctly, IE: In Amnesia Course 2, the tables will not appear, making it impossible to play.<br />
<br />
I've tried reinstalling, I've tried debugging the games files, BTW I use Steam, if that's of importance. This is getting annoying. Please help.<br />
</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Anyone wanna make a custom story?]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13062.html</link>
			<pubDate>Fri, 03 Feb 2012 14:15:22 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13062.html</guid>
			<description><![CDATA[So guys any of you wanna make an custom story with me???]]></description>
			<content:encoded><![CDATA[So guys any of you wanna make an custom story with me???]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Problem with the editors.]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13061.html</link>
			<pubDate>Fri, 03 Feb 2012 13:37:01 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13061.html</guid>
			<description><![CDATA[<span style="color: #ff0000;">PROBLEM X:</span><br />
<span style="color: #ff0000;"><br />
</span><br />
<span style="color: #ff0000;"><br />
</span><br />
<span style="color: #ff0000;"><br />
</span><br />
I have an issue with the editors.<br />
<br />
<br />
When i open f.ex the level editor, everything is fine, but when i try to add a material, by clicking the decals tab and the ''...'', the editor crashes, and gives me a blackbox error. this isnt only in the level editor, its in every editor. model, particle, material, whatever; all crashing when i click the ''...'' under the materials tab. this has happened every time i try.<br />
<br />
if anyone has any advice on how to fix this, please let me know<br />
<br />
cheers.]]></description>
			<content:encoded><![CDATA[<span style="color: #ff0000;">PROBLEM X:</span><br />
<span style="color: #ff0000;"><br />
</span><br />
<span style="color: #ff0000;"><br />
</span><br />
<span style="color: #ff0000;"><br />
</span><br />
I have an issue with the editors.<br />
<br />
<br />
When i open f.ex the level editor, everything is fine, but when i try to add a material, by clicking the decals tab and the ''...'', the editor crashes, and gives me a blackbox error. this isnt only in the level editor, its in every editor. model, particle, material, whatever; all crashing when i click the ''...'' under the materials tab. this has happened every time i try.<br />
<br />
if anyone has any advice on how to fix this, please let me know<br />
<br />
cheers.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Model Editor Texture Problem]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13060.html</link>
			<pubDate>Fri, 03 Feb 2012 12:55:06 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13060.html</guid>
			<description><![CDATA[Hi<br />
I've createted a custom model with Blender,i've put a texture on it and saved it as dae.<br />
But if I load this model in the Model Editor I can't see anything. The Model is there because i can select it but it's invisible. What I've done wrong?]]></description>
			<content:encoded><![CDATA[Hi<br />
I've createted a custom model with Blender,i've put a texture on it and saved it as dae.<br />
But if I load this model in the Model Editor I can't see anything. The Model is there because i can select it but it's invisible. What I've done wrong?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Patch for all graphics and full resolution]]></title>
			<link>http://www.frictionalgames.com/forum/thread-13059.html</link>
			<pubDate>Fri, 03 Feb 2012 12:32:54 +0000</pubDate>
			<guid isPermaLink="false">http://www.frictionalgames.com/forum/thread-13059.html</guid>
			<description><![CDATA[I have the penumbra collection and I was playing overture with all graphic settings on and the resolution at 1058 something- 768 I think. I forgot what it was. I was a good bit in the game when it suddenly crashed and made my user background black and I have to log off and back in to get it right. Could there be a patch for this?]]></description>
			<content:encoded><![CDATA[I have the penumbra collection and I was playing overture with all graphic settings on and the resolution at 1058 something- 768 I think. I forgot what it was. I was a good bit in the game when it suddenly crashed and made my user background black and I have to log off and back in to get it right. Could there be a patch for this?]]></content:encoded>
		</item>
	</channel>
</rss>
