Frictional Games Forum (read-only)

Full Version: Wheel Door
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello. I wonder how i open a "skulldoor" with a turningwheel

MacKetchup
PHP Code:
void InteractConnectPropWithMoveObject(stringasNamestringasPropNamestringasMoveObjectNamebool abInteractOnly,
bool abInvertint alStatesUsed); 
This might be something of use for you, MacKetchup.

https://wiki.frictionalgames.com/hpl2/tutorials/start
yes thank you Big Grin

string& asMoveObjectName, bool abInteractOnly,
bool abInvert, int alStatesUsed);[/php]


what are these?
AddEntityCollideCallback("Player", "valve_iron_1", "Oppnadorr", true , 1);

void Oppnadorr(string &in asParent, string &in asChild, int alState)
{
InteractConnectPropWithMoveObject("Player","safety_normal_vert_1" ,"valve_iron_1" , true,
true, 1);
}