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
amnesia custom story error?
nixxx60 Offline
Junior Member

Posts: 11
Threads: 2
Joined: Feb 2013
Reputation: 0
#11
RE: amnesia custom story error?

i got into game and picked key up and it says picked up
and i tryed using it on the door that it supposed to unlock and it says no object to use item on??
02-06-2013, 10:35 AM
Find
PutraenusAlivius Offline
Posting Freak

Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation: 119
#12
RE: amnesia custom story error?

(02-06-2013, 10:35 AM)nixxx60 Wrote: i got into game and picked key up and it says picked up
and i tryed using it on the door that it supposed to unlock and it says no object to use item on??
That's a whole 'nother thing. 'Nuff said.
(NOTE: I can't solve this either!)

"Veni, vidi, vici."
"I came, I saw, I conquered."
02-06-2013, 10:36 AM
Find
nixxx60 Offline
Junior Member

Posts: 11
Threads: 2
Joined: Feb 2013
Reputation: 0
#13
RE: amnesia custom story error?

(02-06-2013, 10:34 AM)JustAnotherPlayer Wrote:
(02-06-2013, 10:33 AM)nixxx60 Wrote: ok i fixed it thx
Big Grin
what about my reputation? Sad
EDIT: And oh dude, PM me a link to download it for me to test it out, don't release it yet.

also i just went in game and key wont open the door i made locked...\
and i will pm u link for it as soon as i can

i went into the map and key wont open the door i made it supposed to open...
(This post was last modified: 02-06-2013, 10:39 AM by nixxx60.)
02-06-2013, 10:37 AM
Find
No Author Offline
Posting Freak

Posts: 962
Threads: 10
Joined: Jun 2012
Reputation: 13
#14
RE: amnesia custom story error?

(02-06-2013, 10:35 AM)nixxx60 Wrote: i got into game and picked key up and it says picked up
and i tryed using it on the door that it supposed to unlock and it says no object to use item on??

Did you put your custom key name in the .lang file ?
Also for the "no object to use item on", when you double click the key in your inventory, you have to wait at least 1 second to make it work.

[Image: the-cabin-in-the-woods-masked-people.jpg]
02-06-2013, 10:40 AM
Find
PutraenusAlivius Offline
Posting Freak

Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation: 119
#15
RE: amnesia custom story error?

(02-06-2013, 10:40 AM)No Author Wrote:
(02-06-2013, 10:35 AM)nixxx60 Wrote: i got into game and picked key up and it says picked up
and i tryed using it on the door that it supposed to unlock and it says no object to use item on??

Did you put your custom key name in the .lang file ?
Also for the "no object to use item on", when you double click the key in your inventory, you have to wait at least 1 second to make it work.
You do?
I FOLLOWED EVERY STEP! NOTHING WORKS.
EDIT: 205 Posts and 4 Reps. Not Bad.

"Veni, vidi, vici."
"I came, I saw, I conquered."
(This post was last modified: 02-06-2013, 10:55 AM by PutraenusAlivius.)
02-06-2013, 10:53 AM
Find
No Author Offline
Posting Freak

Posts: 962
Threads: 10
Joined: Jun 2012
Reputation: 13
#16
RE: amnesia custom story error?

(02-06-2013, 10:53 AM)JustAnotherPlayer Wrote:
(02-06-2013, 10:40 AM)No Author Wrote:
(02-06-2013, 10:35 AM)nixxx60 Wrote: i got into game and picked key up and it says picked up
and i tryed using it on the door that it supposed to unlock and it says no object to use item on??

Did you put your custom key name in the .lang file ?
Also for the "no object to use item on", when you double click the key in your inventory, you have to wait at least 1 second to make it work.
You do?
I FOLLOWED EVERY STEP! NOTHING WORKS.

Well, that's odd. It works fine to me.
Did you check the static entities on thÉ door ?

[Image: the-cabin-in-the-woods-masked-people.jpg]
02-06-2013, 10:56 AM
Find
The chaser Offline
Posting Freak

Posts: 2,486
Threads: 76
Joined: Jun 2012
Reputation: 113
#17
RE: amnesia custom story error?

If there's any map_cache, delete it.

Also,this is the GOOD SCRIPT: (Copy-paste and replace it)

////////////////////////////

// Run when entering map

void OnEnter()

{

AddUseItemCallback("", "studydoorkey_1", "studydoor", "UsedKeyOnDoor", true);

}



void UsedKeyOnDoor(string &in asItem, string &in asEntity)

{

  SetSwingDoorLocked("studydoor", false, true);

  PlaySoundAtEntity("", "unlock_door", "studydoor", 0, false);

  RemoveItem("studydoorkey_1");

}









////////////////////////////

// Run when leaving map

void OnLeave()

{



}

If you want to ask for help, go here .

You are lucky that I found this thread. I don't usually come in this section.

THE OTHERWORLD (WIP)
[Image: k6vbdhu]

Aculy iz dolan.
(This post was last modified: 02-06-2013, 01:44 PM by The chaser.)
02-06-2013, 01:43 PM
Find
PutraenusAlivius Offline
Posting Freak

Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation: 119
#18
RE: amnesia custom story error?

(02-06-2013, 10:56 AM)No Author Wrote:
(02-06-2013, 10:53 AM)JustAnotherPlayer Wrote:
(02-06-2013, 10:40 AM)No Author Wrote:
(02-06-2013, 10:35 AM)nixxx60 Wrote: i got into game and picked key up and it says picked up
and i tryed using it on the door that it supposed to unlock and it says no object to use item on??

Did you put your custom key name in the .lang file ?
Also for the "no object to use item on", when you double click the key in your inventory, you have to wait at least 1 second to make it work.
You do?
I FOLLOWED EVERY STEP! NOTHING WORKS.

Well, that's odd. It works fine to me.
Did you check the static entities on thÉ door ?
What do you mean by static entities?

"Veni, vidi, vici."
"I came, I saw, I conquered."
02-06-2013, 02:46 PM
Find
No Author Offline
Posting Freak

Posts: 962
Threads: 10
Joined: Jun 2012
Reputation: 13
#19
RE: amnesia custom story error?

When you click on the entity, there's a entity tab.
And there's an "affected by decal" thingy and the "static object" or what name it is.

Now, did you put a check on it ?

Note : Make sure that it isn't a static object.

[Image: the-cabin-in-the-woods-masked-people.jpg]
02-06-2013, 02:56 PM
Find
PutraenusAlivius Offline
Posting Freak

Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation: 119
#20
RE: amnesia custom story error?

(02-06-2013, 02:56 PM)No Author Wrote: When you click on the entity, there's a entity tab.
And there's an "affected by decal" thingy and the "static object" or what name it is.

Now, did you put a check on it ?

Note : Make sure that it isn't a static object.
OK. Gonna try it. Also, what if i told you, there is a monster in my CS now?

"Veni, vidi, vici."
"I came, I saw, I conquered."
02-06-2013, 03:05 PM
Find




Users browsing this thread: 1 Guest(s)