Not sure where to post this, but if someone wants to walk through walls on the 64-bit version of Thief v1.2, I have the cheat tables for CoSMOS here:
LinkCoSMOS allows you to bind "increase value" or "decrease value" to keys, so I did just that. (Using numpad, so it may interfere with the official trainer, although you can change the hotkeys.)
How to build a more advanced NoClip:Camera:LinkThe yaw axis (horizontal rotation) of the thief player prop seems to be right next to the coordinates. (It's a 2 byte value.) Seemingly enough, the value is the same as the camera yaw axis. If you search for that value, you will get about 10 addresses, one of them is the camera:
LinkYou will know it's the camera when another address highlights red as you look up and down.
Disabling Player's Gravity:This one is fairly easy.
Find DefaultGame.ini in Thief/ThiefGame/Config.
Find this field:
[ThiefGame.ThiefPawn_Hero]
;Gravity Factor when falling
mGravityFactor = 1.0
Change mGravityFactor to something stupid like 8675309.0, save it.
In CoSMOS, set to Float > Rounded (Default), and search for 8675309. You will get about 3 addresses. Add them all, set them to 0. Climb up a crate, and jump off. Change each one to 1 until you fall down.
So what?:Using some async iskeydown stuff in any programming language (I personally like C#), you could easily put together a noclip using WASD keys. The hardest part would be to figure out how to combine the pitch & yaw with trigonometry to calculate the proper direction of movement and subtracting that from coordinates.
Except I'm lazy so.