View Single Post
Old 08-31-2018, 02:10 PM   #8
jcn363
absolute beginner
jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.
 
jcn363's Avatar
 
Posts: 323
Karma: 1750999
Join Date: May 2017
Location: Go with the wind (43°19'17.7"N 2°00'19.4"W)
Device: ka1
Quote:
Originally Posted by geek1011 View Post
Spoiler:
Code:
sickel reboot timeout (20 sec):
  - Enabled: no
  - Description: increases sickel reboot time if no ping from 10s to 20s
  - PatchGroup: sickel reboot timeout
  - FindBaseAddressHex: 42 F2 10 71
  - ReplaceBytes:
      Offset:   0
      FindH:    42 F2 10 71
      ReplaceH: 44 F6 20 61
  - FindBaseAddressHex: 44 F6 20 61
  - ReplaceBytes:
      Offset:   0
      FindH:    44 F6 20 61
      ReplaceH: 49 F6 40 41
      
sickel reboot timeout (30 sec):
  - Enabled: no
  - Description: increases sickel reboot time if no ping from 10s to 30s
  - PatchGroup: sickel reboot timeout
  - FindBaseAddressHex: 42 F2 10 71
  - ReplaceBytes:
      Offset:   0
      FindH:    42 F2 10 71
      ReplaceH: 47 F2 30 51
  - FindBaseAddressHex: 44 F6 20 61
  - ReplaceBytes:
      Offset:   0
      FindH:    44 F6 20 61
      ReplaceH: 4E F6 60 21
I think this does not work because FindBaseAddressHex only find the first ocurrence.
Should be
Spoiler:
Code:
sickel reboot timeout (20 sec):
  - Enabled: no
  - Description: increases sickel reboot time if no ping from 10s to 20s
  - PatchGroup: sickel reboot timeout
  - ReplaceBytes: {Offset: 0x003498, FindH: 42 F2 10 71, ReplaceH: 44 F6 20 61}
  - ReplaceBytes: {Offset: 0x0034AA, FindH: 42 F2 10 71, ReplaceH: 44 F6 20 61}
  - ReplaceBytes: {Offset: 0x0036F6, FindH: 44 F6 20 61, ReplaceH: 49 F6 40 41}
      
sickel reboot timeout (30 sec):
  - Enabled: no
  - Description: increases sickel reboot time if no ping from 10s to 30s
  - PatchGroup: sickel reboot timeout
  - ReplaceBytes: {Offset: 0x003498, FindH: 42 F2 10 71, ReplaceH: 47 F2 30 51}
  - ReplaceBytes: {Offset: 0x0034AA, FindH: 42 F2 10 71, ReplaceH: 47 F2 30 51}
  - ReplaceBytes: {Offset: 0x0036F6, FindH: 44 F6 20 61, ReplaceH: 4E F6 60 21}

Good luck.
jcn363 is offline   Reply With Quote