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
Script Help PLEASE HELP KEY DOESNT WORK
Hartmann Offline
Member

Posts: 52
Threads: 18
Joined: Jun 2012
Reputation: 0
#1
PLEASE HELP KEY DOESNT WORK

Hey i have some problems with my custom story. the key wont open the door, this is my script


////////////////////////////
// Run first time starting map

void OnStart()
{
AddUseItemCallback("", "key_1", "mansion_1", "KeyOnDoor", true);
}

void KeyOnDoor(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("mansion_1", false, true);
PlaySoundAtEntity("", "unlock_door", "mansion_1", 0.0f, true);
}


////////////////////////////
// Run when leaving map
void OnLeave()
{

}
(This post was last modified: 06-17-2012, 08:37 PM by Hartmann.)
06-17-2012, 08:37 PM
Find
GrAVit Offline
Senior Member

Posts: 580
Threads: 15
Joined: Oct 2011
Reputation: 22
#2
RE: PLEASE HELP KEY DOESNT WORK

(06-17-2012, 08:37 PM)Hartmann Wrote: Hey i have some problems with my custom story. the key wont open the door, this is my script


////////////////////////////
// Run first time starting map

void OnStart()
{
AddUseItemCallback("", "key_1", "mansion_1", "KeyOnDoor", true);
}

void KeyOnDoor(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("mansion_1", false, true);
PlaySoundAtEntity("", "unlock_door", "mansion_1", 0.0f, true);
}


////////////////////////////
// Run when leaving map
void OnLeave()
{

}
Do you mean open or unlock? Did you name the entities the same as in the script?

06-17-2012, 08:51 PM
Find
Hartmann Offline
Member

Posts: 52
Threads: 18
Joined: Jun 2012
Reputation: 0
#3
RE: PLEASE HELP KEY DOESNT WORK

(06-17-2012, 08:51 PM)GrAVit Wrote:
(06-17-2012, 08:37 PM)Hartmann Wrote: Hey i have some problems with my custom story. the key wont open the door, this is my script


////////////////////////////
// Run first time starting map

void OnStart()
{
AddUseItemCallback("", "key_1", "mansion_1", "KeyOnDoor", true);
}

void KeyOnDoor(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("mansion_1", false, true);
PlaySoundAtEntity("", "unlock_door", "mansion_1", 0.0f, true);
}


////////////////////////////
// Run when leaving map
void OnLeave()
{

}
Do you mean open or unlock? Did you name the entities the same as in the script?
06-18-2012, 06:35 AM
Find
Dutton Offline
Member

Posts: 121
Threads: 3
Joined: Apr 2012
Reputation: 2
#4
RE: PLEASE HELP KEY DOESNT WORK

(06-17-2012, 08:37 PM)Hartmann Wrote: Hey i have some problems with my custom story. the key wont open the door, this is my script





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

// Run first time starting map



void OnStart()

{

AddUseItemCallback("", "key_1", "mansion_1", "KeyOnDoor", true);

}



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

{

SetSwingDoorLocked("mansion_1", false, true);

PlaySoundAtEntity("", "unlock_door", "mansion_1", 0.0f, true);

}





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

// Run when leaving map

void OnLeave()

{



}
On your KeyOnDoor func you used


SetSwingDoorLocked("mansion_1", false, true);

true = locks the door

which means when you use the key on the door. the door will be locked



EDIT:

Sorry i didn't realise i was talking about the bool abEffects statement...

[Image: 15isy6C]
(This post was last modified: 06-18-2012, 07:13 AM by Dutton.)
06-18-2012, 07:10 AM
Find




Users browsing this thread: 1 Guest(s)