Saturday, August 25, 2012
Wednesday, August 1, 2012
Deus Ex: Invisible War - Windows 7 Fix
Recently I tried to play Deus Ex: Invisible War, but I couldn't run it, it would instantly crash as soon as I open the dx2.exe file.
The reason why it won't run isn't clear.
I looked for a solution and found a way to fix this problem.
The reason why it won't run isn't clear.
I looked for a solution and found a way to fix this problem.
To fix this crash you need to patch the game with the euro 1.2 fixed exe, which you can download here.
To install the patch just replace the old dx2.exe, which can be found at
"...\Deus Ex - Invisible War\System\"
with the patched one provided in the RAR file.
Saturday, June 30, 2012
Gmod Third Person View Using Wire And E2 - v2
I made a new version of the third person view, which let you move the camera up and down on the pitch rotation.
And here's the E2 "third_person_v2" code:
And here's the E2 "third_person_v2" code:
@name third Person v2
@inputs
@outputs Angle:angle Position:vector
@persist
@trigger
runOnTick(1)
R = 120
Angle = owner():eyeAngles()
Pitch = Angle:pitch()
Yaw = Angle:yaw()
X = cos(Yaw) * R * (-1)
Y = sin(Yaw) * R * (-1)
Z = sin(Pitch) * R + 90
Zx = R - (cos(Pitch) * R)
Xz = cos(Yaw) * Zx
Yz = sin(Yaw) * Zx
if(Z < 0){Z = 0}
Position = owner():pos() + vec(X+Xz,Y+Yz,Z)
Thursday, June 21, 2012
Gmod Third Person View Using Wire And E2
I decided to share a third person view thing I made in Garry's Mod using Wiremod, and E2.
And here's the E2 "third_person" code:
And here's the E2 "third_person" code:
@name third Person
@inputs
@outputs Angle:angle Position:vector
@persist
@trigger
runOnTick(1)
R = 120
Angle = owner():eyeAngles()
Yaw = Angle:yaw()
X = cos(Yaw) * R * (-1)
Y = sin(Yaw) * R * (-1)
Position = owner():pos() + vec(X,Y,90)
Sunday, June 10, 2012
A* Pathfinding Demonstration
I decided to try implementing the A* pathfinding algorithm for the practice.I followed this tutorial, using C++ as my language, and SFML for the graphics.
You can download and try playing around with the program from here:
MediaFire (Adfly)
Here's a video of the demonstration:
Subscribe to:
Posts (Atom)
