I'm working on my snowmobile vehicle, and i want to give it a chase cam, but i don't know how, 8 seems to work best, from what i could tell when i manually typed it into the console
I want to make it so that when a player gets on the vehicle, the chase cam activates, and then deactivates when they get off, something like this
function armor::onMount(%this,%obj)
{
%serverConnection.chasecam("8");
Parent::onMount(%this,%obj)
}
function armor::onUnMount(%this,%obj)
{
%serverConnection.chasecam("0");
Parent::onUnMount(%this,%obj)
}
...only working, and looks like it was made by someone who knows what they're doing