FlawlessHappiness 
			Posting Freak171  
	
		
			
[SOLVED]Combination does not work (ACID) 
 
				So i searched to know how to make a combination, and i came to a script which i editted so it should work for me.
It doesnt...
Yes i have an "inventory.hps" file, and yes it is in my "maps" folder
Here is my combination script:
Spoiler below!  
 
 
And here is how you get the items.
What happens in that you have 2 mpty containers, and you find 2 different bottles. You use 1 container on the first bottle, and one container on the other. That works perfectly:
Spoiler below!  
 
 
But my combination won't work...
Item list:
Empty container 1 = chemical_1
Empty container 2 = chemical_2
Bottle 1 = amnesia_bottle_1
Bottle 2 = amnesia_bottle_2
Red Acid from bottle 1 = chemical_roed
Green Acid from bottle 2 = chemical_groen
Final Acid = chemical_container_epoxy
EDIT: Okay so it turns out that some of the script lines has to stay the same way: 
RemoveItem(chemical_roed); RemoveItem(chemical_groen);
Has to be:
RemoveItem(asItemA); RemoveItem(asItemB);
and
GiveItem("chemical_container_epoxy", "chemical_container_epoxy", "chemical_container_epoxy", 
Has to be:
GiveItem("chemical_container_epoxy", "Puzzle", "chemical_container_epoxy", "chemical_container_epoxy.tga", 0);	
FINAL SCRIPT:
Spoiler below!  
 
 
			Trying is the first step to success.