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
Unexpected end of file!! ;(
Obliviator27 Offline
Posting Freak

Posts: 792
Threads: 10
Joined: Jul 2011
Reputation: 66
#14
RE: Unexpected end of file!! ;(

For your piano problem, it's really quite simple. Though it depends on what you want. For example
void OnStart()
{
AddEntityCollideCallback("Player", "RoomArea", "PlayPianoSound", false, 1);
}
void PlayPianoSound(string &in asParent, string &in asChild, int alState)
{
PlaySoundAtEntity("", "[sound you want to play + .ogg extension]", "[Name of Piano entity]", 0, false);
}
will make the sound at the piano every time you enter the room.
If you want it to happen just once, change
AddEntityCollideCallback("Player", "RoomArea", "PlayPianoSound", false, 1);
to
AddEntityCollideCallback("Player", "RoomArea", "PlayPianoSound", true, 1);

For your extra_lang file, you will want something along the lines of
<LANGUAGE>
<CATEGORY Name="Description"> Description of your custom story!</CATEGORY>
<CATEGORY Name="Inventory">
        <Entry Name="ItemName_[Item Name]">The name of your item</Entry>
        <Entry Name="ItemDesc_[Item Name]">The description of your item</Entry>
</CATEGORY>
</LANGUAGE>
And be sure that the [Item Name] isn't the in-editor name (I.e, the name under the General Tab) but rather the name in the CustomSubItemTypeName field under the entity tab of the item.

(This post was last modified: 10-06-2011, 04:18 PM by Obliviator27.)
10-06-2011, 04:11 PM
Find


Messages In This Thread
Unexpected end of file!! ;( - by cooleoj - 10-06-2011, 07:41 AM
RE: Unexpected end of file!! ;( - by cooleoj - 10-06-2011, 07:59 AM
RE: Unexpected end of file!! ;( - by xtron - 10-06-2011, 08:09 AM
RE: Unexpected end of file!! ;( - by cooleoj - 10-06-2011, 08:13 AM
RE: Unexpected end of file!! ;( - by cooleoj - 10-06-2011, 08:36 AM
RE: Unexpected end of file!! ;( - by Apfel - 10-06-2011, 02:08 PM
RE: Unexpected end of file!! ;( - by cooleoj - 10-06-2011, 08:46 AM
RE: Unexpected end of file!! ;( - by schmupper - 10-06-2011, 02:07 PM
RE: Unexpected end of file!! ;( - by cooleoj - 10-06-2011, 03:03 PM
RE: Unexpected end of file!! ;( - by Obliviator27 - 10-06-2011, 04:11 PM
RE: Unexpected end of file!! ;( - by cooleoj - 10-06-2011, 06:13 PM
RE: Unexpected end of file!! ;( - by schmupper - 10-06-2011, 09:48 PM



Users browsing this thread: 1 Guest(s)