Frictional Games Forum (read-only)

Full Version: scrip help please
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Might want to do that...
i dont know what to name things
What ever you want, just make sure they are the same name in the script.
{
AddUseItemCallback("", "crowbar_1", "door_1", "UsedCrowbarOnDoor", true);
AddEntityCollideCallback("crowbar_joint_1", "crowbar_smash_01", "CollideAreaBreakDoor", true, 1);
}

void UsedCrowbarOnDoor(string &in asItem, string &in asEntity)
{
AddTimer("", 0.2, "TimerSwitchShovel");
RemoveItem("crowbar_1");
}


void TimerSwitchShovel(string &in asTimer)
{
PlaySoundAtEntity("","puzzle_place_jar.snt", "", 0, false);
SetEntityActive("crowbar_joint_1", true);
}


void CollideAreaBreakDoor(string &in asParent, string &in asChild, int alState)
{
GiveSanityDamage(35.05f, true);
PlayMusic("00_cuts.ogg", false, 0.7, 0.1, 10, false);
SetSwingDoorLocked("door_1", false, true);
AddPropImpulse("door_1", -3, 0, 0, "world");
SetSwingDoorDisableAutoClose("door_1", true);
SetSwingDoorClosed("door_1", false, false);
SetMoveObjectState("door_1", 1);
PlaySoundAtEntity("","break_wood_metal", "AreaBreakEffect", 0, false);
CreateParticleSystemAtEntity("", "ps_hit_wood", "AreaBreakEffect", false);
SetEntityActive("crowbar_joint_1", false);
SetEntityActive("crowbar_dyn_1", true);
SetLocalVarInt("Door", 1);
}

This is my script. I copy this with my own custom story. Hope I help you.
Pages: 1 2