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
Phonograph and Waxroll Record
AGP Offline
Senior Member

Posts: 448
Threads: 45
Joined: Dec 2012
Reputation: 23
#3
RE: Phonograph and Waxroll Record

Here's the whole file. It's probably painfully obvious I'm newbie to this.

Spoiler below!
void OnStart ()
{
AddUseItemCallback("", "workwingkey", "workwingdoor", "UsedKeyOnDoor1", true);

AddUseItemCallback("", "deadendkey", "deadenddoor", "UsedKeyOnDoor2", true);

AddUseItemCallback("", "swanlakerecord, "musicphono", "PlayMusic", true);
}

void OnEnter()
{

}

void OnLeave()
{
SetupLoadScreen("LoadingText", "LoadTextTwo", 1, "titlescreen.jpg");
}

void UsedKeyOnDoor1(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("workwingdoor", false, true);
PlaySoundAtEntity("", "unlock_door", "workwingdoor", 0, false);
RemoveItem("workwingkey");
}

void UsedKeyOnDoor2(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("deadenddoor", false, true);
PlaySoundAtEntity("", "unlock_door", "deadenddoor", 0, false);
RemoveItem("deadendkey");
}

void PlayMusic (string &in asItem, string &in asEntity)
{
PlaySoundAtEntity ("", "swanlakephonograph.snt", "musicphono", 0, false);

Attempted to fix it up some more, but got nowhere. =/

12-24-2012, 04:16 AM
Find


Messages In This Thread
Phonograph and Waxroll Record - by AGP - 12-24-2012, 02:16 AM
RE: Phonograph and Waxroll Record - by Rapture - 12-24-2012, 03:09 AM
RE: Phonograph and Waxroll Record - by AGP - 12-24-2012, 04:16 AM
RE: Phonograph and Waxroll Record - by The chaser - 12-24-2012, 11:36 AM
RE: Phonograph and Waxroll Record - by AGP - 12-24-2012, 08:30 PM
RE: Phonograph and Waxroll Record - by The chaser - 12-24-2012, 08:51 PM
RE: Phonograph and Waxroll Record - by AGP - 12-24-2012, 11:49 PM
RE: Phonograph and Waxroll Record - by The chaser - 12-25-2012, 12:58 AM
RE: Phonograph and Waxroll Record - by AGP - 12-25-2012, 03:56 AM
RE: Phonograph and Waxroll Record - by AGP - 12-26-2012, 09:29 AM
RE: Phonograph and Waxroll Record - by The chaser - 12-26-2012, 11:09 AM
RE: Phonograph and Waxroll Record - by AGP - 12-26-2012, 06:36 PM
RE: Phonograph and Waxroll Record - by The chaser - 12-26-2012, 06:45 PM
RE: Phonograph and Waxroll Record - by AGP - 12-26-2012, 06:53 PM
RE: Phonograph and Waxroll Record - by The chaser - 12-26-2012, 07:31 PM
RE: Phonograph and Waxroll Record - by AGP - 12-27-2012, 02:32 AM
RE: Phonograph and Waxroll Record - by The chaser - 12-29-2012, 04:21 PM
RE: Phonograph and Waxroll Record - by AGP - 12-29-2012, 06:40 PM
RE: Phonograph and Waxroll Record - by The chaser - 12-29-2012, 06:51 PM
RE: Phonograph and Waxroll Record - by AGP - 12-29-2012, 07:48 PM



Users browsing this thread: 1 Guest(s)