It was dissolved.
hello all,
sorry for my bad english. i hope u understand me
my problem mount waiting time. All mount time only 1 seconds
This video:
-------------------------------------------------------------------------
Solition: for mount time with CE
Code:
[ENABLE]
alloc(newmem1,2048)
label(returnhere1)
label(originalcode1)
label(exit1)
newmem1: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode1:
ja ps_game.exe+9DC71
exit1:
jmp returnhere1
"ps_game.exe"+9DB53:
jmp newmem1
nop
returnhere1:
[DISABLE]
dealloc(newmem1)
"ps_game.exe"+9DB53:
ja ps_game.exe+9DC71
//Alt: db 0F 87 18 01 00 00
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
nop
nop
nop
nop
nop
exit:
jmp returnhere
"ps_game.exe"+9DB53:
jmp newmem
returnhere: