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
Need help on the inventory texts and door texts!
TerrorsEnd Offline
Junior Member

Posts: 22
Threads: 4
Joined: Jun 2012
Reputation: 0
#11
RE: Need help on the inventory texts and door texts!

(06-27-2012, 12:59 AM)Obliviator27 Wrote: You'll have to specify what doesn't work.
As far as your script goes, you're telling the door to lock. Use false instead of true.
The door unlocking doesn't work

void OnEnter()
{

AddUseItemCallback("OpenDoor", "cellarkey", "level_cellar_1", "UnlockLevelDoor", true);

}

void UnlockLevelDoor(string &in Item, string &in Entity)
{
SetLevelDoorLocked("level_cellar_1", false);
PlaySoundAtEntity("", "unlock_door", "level_cellar_1", 1, false);
RemoveItem("cellarkey");
RemoveItem("trollkey");
}

What's the problem? I tried to google it, youtube it etc. Can't find the solution..
06-27-2012, 01:08 AM
Website Find
Obliviator27 Offline
Posting Freak

Posts: 792
Threads: 10
Joined: Jul 2011
Reputation: 66
#12
RE: Need help on the inventory texts and door texts!

Make sure that the key is named cellarkey under the general tab.

06-27-2012, 01:17 AM
Find
TerrorsEnd Offline
Junior Member

Posts: 22
Threads: 4
Joined: Jun 2012
Reputation: 0
#13
RE: Need help on the inventory texts and door texts!

(06-27-2012, 01:17 AM)Obliviator27 Wrote: Make sure that the key is named cellarkey under the general tab.
Yeah it is named cellarkey
06-27-2012, 01:18 AM
Website Find
Obliviator27 Offline
Posting Freak

Posts: 792
Threads: 10
Joined: Jul 2011
Reputation: 66
#14
RE: Need help on the inventory texts and door texts!

Oh. I didn't see this before.
Change it from OnEnter to OnStart.

OnStart is called when the map is first loaded.
OnEnter is called every other time.

06-27-2012, 01:19 AM
Find
TerrorsEnd Offline
Junior Member

Posts: 22
Threads: 4
Joined: Jun 2012
Reputation: 0
#15
RE: Need help on the inventory texts and door texts!

(06-27-2012, 01:19 AM)Obliviator27 Wrote: Oh. I didn't see this before.
Change it from OnEnter to OnStart.

OnStart is called when the map is first loaded.
OnEnter is called every other time.
Still doesn't work o.O
06-27-2012, 01:36 AM
Website Find
TerrorsEnd Offline
Junior Member

Posts: 22
Threads: 4
Joined: Jun 2012
Reputation: 0
#16
RE: Need help on the inventory texts and door texts!

FIXED!
06-27-2012, 01:49 PM
Website Find




Users browsing this thread: 1 Guest(s)