Frictional Games Forum (read-only)

Full Version: destorying a padlock with a hammer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
what would i have to do to fix this when ever i click the hammer on the padlock just says cant use item this way
void OnStart()
{
AddUseItemCallback("", "stone_hammer_1", "padlock_1", "unlock_prison_section_1", true);
}
void unlock_prison_section_1(string &in asItem, string &in asEntity)
{
SetPropHealth("padlock_1", 0.0f);
}
void BreakPadlock (string &in asItem, string &in asEntity)
{
SetEntityActive("padlock_broken_1",true);
SetEntityActive("padlock_1",false);
RemoveItem("stone_hammer_1");
}

void OnStart()
{
AddUseItemCallback("", "stone_hammer_1", "padlock_1", "unlock_prison_section_1", true);
}
void unlock_prison_section_1(string &in asItem, string &in asEntity)
{
SetPropHealth("padlock_1", 0.0f);
SetEntityActive("padlock_broken_1",true);
RemoveItem("stone_hammer_1");
}
Try this
ok that activated the broken padlock and it fell off but didnt destory the original padlock
void OnStart()
{
AddUseItemCallback("OpenDoor", "key_study_1", "level_wood_1", "UnlockLevelDoor", true);
AddUseItemCallback("", "stone_hammer_1", "padlock_1", "unlock_prison_section_1", true);
}
void unlock_prison_section_1(string &in asItem, string &in asEntity)
{
SetPropHealth("padlock_1", 0.0f);
SetEntityActive("padlock_broken_1",true);
RemoveItem("stone_hammer_1");
SetEntityActive("padlock_1", false);
}

void OnEnter()
{
}
i just had to add set entity active padlock_1 false and it worked thanks
np mate