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


Thread Rating:
  • 2 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
My custom story wont appear in the game! Help
PutraenusAlivius Offline
Posting Freak

Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation: 119
#13
RE: My custom story wont appear in the game! Help

(07-04-2013, 04:35 AM)mrburritos31 Wrote:
(07-04-2013, 02:30 AM)JAP the Birthday Boy Wrote:
(07-03-2013, 07:05 PM)mrburritos31 Wrote:
(07-03-2013, 06:07 PM)Zatchie Wrote: Maybe you wrote something wrong in the lang file?

Here is my lang file:

<CATEGORY Name="CustomStoryMain">
<Entry> Name="Description">You are Captain Flan Johnson and the last thing you remember is getting torn off your ship with the your last memory fading away....</Entry>
</CATEGORY>

No wonder. You need <LANGUAGE> tags and the Entry opening is wrong.

Should of been like this.
<LANGUAGE>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">You are Captain Flan Johnson and the last thing you remember is getting torn off your ship with your last memory fading away....</Entry>
</CATEGORY>
</LANGUAGE>

NOTE: Make sure every category is before the </LANGUAGE> tag or it will be messed up.
Please help me with my hps file i dont know whats wrong with it!!! here is the file:

void OnStart()
(
AddUseItemCallback("OpenDoor", "key_study_1", "level_wood_1", "UnlockLevelDoor", true);
)
void UnlockLevelDoor(string &in item, string &in entity)
(
SetLevelDoorLocked(entity, false);
)

Wrong opening and closing brace.

void OnStart()
{
AddUseItemCallback("OpenDoor", "key_study_1", "level_wood_1", "UnlockLevelDoor", true);
}
void UnlockLevelDoor(string &in item, string &in entity)
{
SetLevelDoorLocked(entity, false);
}

"Veni, vidi, vici."
"I came, I saw, I conquered."
07-04-2013, 07:28 AM
Find


Messages In This Thread
RE: My custom story wont appear in the game! Help - by PutraenusAlivius - 07-04-2013, 07:28 AM



Users browsing this thread: 1 Guest(s)