News: Welcome back to Bullworth! If you haven't already, you will need to reset your password..


Show Posts

* Messages | Topics | Attachments

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Liudeius

Pages: [1]
1
Modding Questions/Help Archives / Re: Freeze Time?
« on: July 27, 2013, 03:12:20 AM »
This is the first result on google, so here's a script to freeze time.

Code: [Select]
local FreezeTime = readInteger("Bully.exe+7CEB48");
local Cancel = createForm(true );
local Repeat = createTimer(Cancel, true );

timer_setInterval(Repeat, 1000);

timer_onTimer(Repeat, function( )
writeInteger("Bully.exe+7CEB48", FreezeTime);
end );
I've only used it on the main clock, I doubt it would work on class or challenges.

When you want to freeze time, alt+tab out of the game, and run the script in cheat engine. When you want time to start up again, close the window which pops up when you run the script.

If you don't know how to use a script, open Cheat Engine, click the button flashing between red and green, choose the Bully.exe from the list, then on the tool bar click Table>Show Cheat Table Lua Script. Copy and paste the script into the box, then click execute once you want to freeze the clock.

2
Hints, Tips and Cheats / Freeze Time Cheat Engine Script
« on: July 27, 2013, 02:57:23 AM »
Don't trust those "safe" trainers which force task manager to crash once you start them up and are detected as trojans before you even finish downloading them?

Then here's a script to freeze time.
Code: [Select]
local FreezeTime = readInteger("Bully.exe+7CEB48");
local Cancel = createForm(true);
local Repeat = createTimer(Cancel, true);

timer_setInterval(Repeat, 1000);

timer_onTimer(Repeat, function( )
writeInteger("Bully.exe+7CEB48", FreezeTime);
end);
I've only tested it on the main clock, not class or challenge timers, but given how the game works, I doubt it would work for those.

When you want to freeze time, alt+tab out of the game, and run the script in cheat engine. When you want time to start up again, close the window which pops up when you run the script.

If you don't know how to use a script, open Cheat Engine, click the button flashing between red and green, choose the Bully.exe from the list, then on the tool bar click Table>Show Cheat Table Lua Script. Copy and paste the script into the box, then click execute once you want to freeze the clock.

Pages: [1]