Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Script Help Multipul Keys
3gamers Offline
Junior Member

Posts: 10
Threads: 6
Joined: Oct 2013
Reputation: 0
#5
RE: Multipul Keys

(10-29-2013, 09:43 PM)Omenapuu Wrote:
(10-29-2013, 05:51 PM)3gamers Wrote: Thank you very much! Only it was a moot point as the code itself doesn't do what I want it too. Which brings up my next question: does anyone know how to code a level door so that it requires three keys to work?

This seems a bit complicated, and I'm not sure does it work, but it should:

-----------------------
void OnStart()
{
AddUseItemCallback("doorpuzzle1", "key1", "door1", "key1", true);
AddUseItemCallback("doorpuzzle2", "key2", "door1", "key2", true);
AddUseItemCallback("doorpuzzle3", "key3", "door1", "key3", true);
SetLocalVarInt("doorpuzzle", 0);
}
void OnEnter()
{

}
void OnLeave()
{

}
void key1(string &in asItem, string &in asEntity)
{
if(GetLocalVarInt("doorpuzzle" == 2)
{
SetLevelDoorLocked("door1", false);
}
else if(GetLocalVarInt("doorpuzzle" != 2)
{
AddLocalVarInt("doorpuzzle", 1);
}
}
void key2(string &in asItem, string &in asEntity)
{
if(GetLocalVarInt("doorpuzzle" == 2)
{
SetLevelDoorLocked("door1", false);
}
else if(GetLocalVarInt("doorpuzzle" != 2)
{
AddLocalVarInt("doorpuzzle", 1);
}
}
void key3(string &in asItem, string &in asEntity)
{
if(GetLocalVarInt("doorpuzzle" == 2)
{
SetLevelDoorLocked("door1", false);
}
else if(GetLocalVarInt("doorpuzzle" != 2)
{
AddLocalVarInt("doorpuzzle", 1);
}
}
------------------------------
That basically says, everytime you use 1 of these keys, it checks the VarInt. If it's already 2 (=you used 2 keys already and this is last) it unlocks the door. If it isn't 2 yet (=you haven't used 2 yet) it just adds one to the VarInt. So it's simple as that. And also, you can find codes here: wiki.frictionalgames.com/hpl2/amnesia/script_functions

I put in your code and had to fix a couple of things like missing parathesis but now its giving me an error that I'm not sure how to fix or even what it means. I included a picture of the errors.

Thank you so much for your help, I REALLY appreciate it. Smile
And I checked out the wiki and have been using it for other codes but I just couldn't find anything on this.


Attached Files
.png   errors.png (Size: 28.68 KB / Downloads: 107)

Nepenthe- WIP
10-29-2013, 10:53 PM
Find


Messages In This Thread
Multipul Keys - by 3gamers - 10-29-2013, 05:33 PM
RE: Multipul Keys - by i3670 - 10-29-2013, 05:45 PM
RE: Multipul Keys - by 3gamers - 10-29-2013, 05:51 PM
RE: Multipul Keys - by Omenapuu - 10-29-2013, 09:43 PM
RE: Multipul Keys - by 3gamers - 10-29-2013, 10:53 PM
RE: Multipul Keys - by Omenapuu - 10-29-2013, 11:10 PM
RE: Multipul Keys - by 3gamers - 10-29-2013, 11:27 PM



Users browsing this thread: 1 Guest(s)