First of all make sure you're in the right module.
View -> Executable Modules
Then you have to find Conquer.exe
Then you do search for -> "All ntermodular calls"
Type SLEEP (result will be KERNEL32.Sleep) which is what we want to look for, because it's used to sleep the current thread and if you understand how the FPS works then it means Frames per second, so you want it the thread that processes everything to sleep for less time.
Then you want to change the LEA instruction's arguments from ECX+19 into ECX+VALUE where VALUE is a smaller value than 19.
Then you have to change the ADD instruction from ECX,19 to ECX,19 where value has to be the same value as you changed the LEA instruction too.
ECX is pushed onto the stack (function parameter for idiots) for the KERNEL32.Sleep function which then pops the value off and sleeps it for that amount of milliseconds. The value has to be DWORD.
More information.
Note: This is just in short. I won't explain the assembly part and why etc. since you probably have no idea wtf I am even talking about right now.