close
tutorial step 9 Injection++ 注入程式碼進階練習 tutorial 8 教學中
要我們注入一些代碼,這個代碼的功用是,當系統時間的秒數大於等於30的時候,按下Hit me時,Health會變成1000;而當系統時間的秒數小於30的時候,按下Hit me時,Health會變成2000
D藍色框框本來沒有文字,請複製貼上虛線內的C語言程式碼
---------------------我是虛線,請勿複製我---------------------
#include <time.h>
struct tm *timep;
time_t c;
c=time(0);
timep=localtime(&c);
if (timep->tm_sec>=30)
*(int *)addresstochange=1000;
else
*(int *)addresstochange=2000;
------------------虛線不用複製-----------------
然後在第六行輸入int addresstochange=0x血的位址;
黃色框框要輸入血的位址,記得位址前要加0x並且最後要加分號;
全站熱搜
留言列表