温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,汇文网负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。
网站客服:3074922707
ASProtect
2.0x
Automatic
SHIFT+F9
2.0
SHIFT
F9
/////////////////////////////////////////////////////////////
// this script does nothing but takes the amount of time you want
// to do that shift+f9 thing for ASProtect targets and does tht shift+f9
// throught ESTO command in script.
//
// remember the input is in HEX, so if u want to shift+f9 38 times,
// enter 26
//
// currently ODBGScript 1.41 has some problem, some times mistakenly
// it fails to catch the right input 'n rather takes a ZERO as input
// tht's why i made a loop and if u want to exit without inputing anything
// put a ` <-- the key right below escape key
/////////////////////////////////////////////////////////////
/*
********************
nick_name
TEAM RESSURRECTiON
********************
*/
ASK:
ASK "shift+F9 --> how many (HEX) times ??"
cmp $RESULT,"`"
je FINISH
cmp $RESULT,0
jbe ASK
mov how_many,$RESULT
run
dec how_many
TIME:
esto
dec how_many
cmp how_many, 0
jbe FINISH
jmp TIME
FINISH:
ret