| Hello, Monthly loyalty points are getting reset every months 1st day as you know but it's reset time on 1299 ebenezer is 6:30 and thats so annoying for players.Some of our users asked me for it. How can we fix it?
 Here is offsets to change its time
 So if we change it like this.复制代码00435DD0  |. 837D F4 06  CMP DWORD PTR SS:[EBP-C],6 // compare systemtime's current hour with 6
00435DD4  |. 0F85 B9000000  JNZ ebenezer.00435E93
00435DDA  |. 837D F0 1E  CMP DWORD PTR SS:[EBP-10],1E // compare systemtime's current minute with 30
Monthly loyalties reset time will 00:00 of 1st day of current month. :P复制代码00435DD0  |. 837D F4 06  CMP DWORD PTR SS:[EBP-C],0 // compare systemtime's current hour with 0
00435DD4  |. 0F85 B9000000  JNZ ebenezer.00435E93
00435DDA  |. 837D F0 1E  CMP DWORD PTR SS:[EBP-10],0 // compare systemtime's current minute with 0
Have fun
 |