Frictional Games Forum (read-only)
amnesia custom story error? - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html)
+---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html)
+---- Thread: amnesia custom story error? (/thread-20212.html)

Pages: 1 2 3


RE: amnesia custom story error? - nixxx60 - 02-06-2013

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??


RE: amnesia custom story error? - PutraenusAlivius - 02-06-2013

(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!)


RE: amnesia custom story error? - nixxx60 - 02-06-2013

(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...


RE: amnesia custom story error? - No Author - 02-06-2013

(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.


RE: amnesia custom story error? - PutraenusAlivius - 02-06-2013

(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.


RE: amnesia custom story error? - No Author - 02-06-2013

(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 ?


RE: amnesia custom story error? - The chaser - 02-06-2013

If there's any map_cache, delete it.

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

Code:
////////////////////////////

// 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.


RE: amnesia custom story error? - PutraenusAlivius - 02-06-2013

(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?


RE: amnesia custom story error? - No Author - 02-06-2013

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.


RE: amnesia custom story error? - PutraenusAlivius - 02-06-2013

(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?