For the love of all that is holy can someone please code a Sightjacker that doesn't crash CE. Del's Sightjacker on halomaps.org right now is fucking terrible.
Printable View
For the love of all that is holy can someone please code a Sightjacker that doesn't crash CE. Del's Sightjacker on halomaps.org right now is fucking terrible.
y is sum 1 bottin u? hoo cares mayne
camera_control 1
camera_set_first_person (unit (list_get (players) <trial, error, frustration and tears>))
!
^ laughs
:saddowns:
I agree, the 1.08 sightjacker is pretty terrible. Someone needs to make one that works like rec0's.
I'm personally tempted to reinstall 1.07 just for all the bad ass apps. Version changer ftw tbh hth
Sightjacker can be added to OpenSauce very easy. He has setup a call to an engine function called ProcessCommand, which takes a C string. You could just call that with the needed commands. I don't have OS setup to compile yet, don't have Boost, but I know lots of people here do.
Example:
Code:bool bSwitch = false;
if(GetAsyncKeyState(VK_F4)&1)
{
if(bSwitch)
ProcessCommand("camera_control 0");
else
ProcessCommand("camera_control 1");
}
I'll see if I can't add that into OS later today. The only problem is where to put it... Tough decision eh? :D
Man, if only I could find the address to at least a modifier of jumping... Then i'd release a build of OS that allows modification of jumping and running -via scripting commands- mb?
Ey Silent :P
and I think there is something better than &1 but bleh they get the pictureCode:bool bSwitch = false;
if(GetAsyncKeyState(VK_F4)&1)
{
if(bSwitch)
ProcessCommand("camera_control 0");
else
ProcessCommand("camera_control 1");
bSwitch = !bSwitch; //i just woke up can't remember proper inversion
}