| 
		
	
		| nixxx60   Junior Member
 
 Posts: 11
 Threads: 2
 Joined: Feb 2013
 Reputation: 
0
 | 
			| 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 |  |  
	
		| PutraenusAlivius   Posting Freak
 
 Posts: 4,713
 Threads: 75
 Joined: Dec 2012
 Reputation: 
119
 | 
			| 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 |  |  
	
		| nixxx60   Junior Member
 
 Posts: 11
 Threads: 2
 Joined: Feb 2013
 Reputation: 
0
 | 
			| 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 thxwhat about my reputation?
   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 |  |  
	
		| No Author   Posting Freak
 
 Posts: 962
 Threads: 10
 Joined: Jun 2012
 Reputation: 
13
 | 
			| 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.
			 
 |  |  
	| 02-06-2013, 10:40 AM |  |  
	
		| PutraenusAlivius   Posting Freak
 
 Posts: 4,713
 Threads: 75
 Joined: Dec 2012
 Reputation: 
119
 | 
			| 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."
 |  |  
	| 02-06-2013, 10:53 AM |  |  
	
		| No Author   Posting Freak
 
 Posts: 962
 Threads: 10
 Joined: Jun 2012
 Reputation: 
13
 | 
			| RE: amnesia custom story error? 
 
				 (02-06-2013, 10:53 AM)JustAnotherPlayer Wrote:   (02-06-2013, 10:40 AM)No Author Wrote:  You do? (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.
 I FOLLOWED EVERY STEP! NOTHING WORKS.
 
Well, that's odd. It works fine to me. 
Did you check the static entities on thÉ door ?
			 
 |  |  
	| 02-06-2013, 10:56 AM |  |  
	
		| The chaser   Posting Freak
 
 Posts: 2,486
 Threads: 76
 Joined: Jun 2012
 Reputation: 
113
 | 
			| 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]](http://tinyurl.com/k6vbdhu)  
Aculy iz dolan.
				
(This post was last modified: 02-06-2013, 01:44 PM by The chaser.)
 |  |  
	| 02-06-2013, 01:43 PM |  |  
	
		| PutraenusAlivius   Posting Freak
 
 Posts: 4,713
 Threads: 75
 Joined: Dec 2012
 Reputation: 
119
 | 
			| 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:  You do? (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.
 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 |  |  
	
		| No Author   Posting Freak
 
 Posts: 962
 Threads: 10
 Joined: Jun 2012
 Reputation: 
13
 | 
			| 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.
 
 |  |  
	| 02-06-2013, 02:56 PM |  |  
	
		| PutraenusAlivius   Posting Freak
 
 Posts: 4,713
 Threads: 75
 Joined: Dec 2012
 Reputation: 
119
 | 
			| 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 |  |  |