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
Need help with scripting
Seragath Offline
Junior Member

Posts: 34
Threads: 1
Joined: Jan 2011
Reputation: 0
#7
RE: Need help with scripting

(01-12-2011, 03:24 PM)Cakefirst Wrote: a little bump. I have tried different combinations but i only get unexpected errors

please post the errors.

void OnStart()
{
AddUseItemCallback("", "machine", "castle_4", "KeyOnDoor", true);
AddUseItemCallback("", "hall", "castle_2", "KeyOnDoor1", true);
}


void onEnter()
{

}


void OnLeave()
{

}

void KeyOnDoor(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("castle_4", false, true);
PlaySoundAtEntity("", "unlock_door", "castle_4", 0, false);
RemoveItem("machine");
}


void KeyOnDoor1(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("castle_2", false, true);
PlaySoundAtEntity("", "unlock_door", "castle_2", 0, false);
RemoveItem("hall");
}

Try this, I have not tested it myself but it could work.
(This post was last modified: 01-12-2011, 03:37 PM by Seragath.)
01-12-2011, 03:34 PM
Find


Messages In This Thread
Need help with scripting - by Cakefirst - 01-11-2011, 06:17 PM
RE: Need help with scripting - by Frontcannon - 01-11-2011, 06:33 PM
RE: Need help with scripting - by Cakefirst - 01-11-2011, 06:47 PM
RE: Need help with scripting - by Tottel - 01-11-2011, 07:02 PM
RE: Need help with scripting - by Cakefirst - 01-11-2011, 07:36 PM
RE: Need help with scripting - by Cakefirst - 01-12-2011, 03:24 PM
RE: Need help with scripting - by Seragath - 01-12-2011, 03:34 PM
RE: Need help with scripting - by Cakefirst - 01-12-2011, 03:45 PM
RE: Need help with scripting - by Seragath - 01-12-2011, 04:10 PM
RE: Need help with scripting - by Frontcannon - 01-12-2011, 05:20 PM
RE: Need help with scripting - by Cakefirst - 01-12-2011, 06:11 PM
RE: Need help with scripting - by Cakefirst - 01-13-2011, 09:46 PM
RE: Need help with scripting - by Seragath - 01-14-2011, 08:38 PM
RE: Need help with scripting - by Frontcannon - 01-13-2011, 10:16 PM
RE: Need help with scripting - by Tottel - 01-13-2011, 10:33 PM
RE: Need help with scripting - by Cakefirst - 01-14-2011, 10:05 PM



Users browsing this thread: 1 Guest(s)