回應洋蔥分析文之我也來分析

※這是TWMS146.1的位置 TWMS146.1 取得最大經驗值位置分析 洋蔥文章原文網址:按我

Address Instruction
006A345C push eax 等級
006A345D call 006a33e4 取得升等所需經驗值
006A3462 sub eax,[esp+0c] [esp=0c]是目前經驗值
eax = 所需經驗值-目前經驗值 = 還需要多少經驗值
006A3466 pop ecx 因為查詢升等所需經驗值的CALL是__cdecl的CALL
(堆疊中放入參數,要由呼叫端清除堆疊內的參數)
006A33E4 push [esp+04] CALL的參數(等級)
006A33E8 mov ecx,00d3d180 經驗值表的位置
006A33ED call 006a33c4 查詢經驗值表
006A33F2 …

Continue reading »

千千靜聽去廣告工具 ttpadp

千千靜聽去廣告工具 v1.0 TTPlayer Advertisement Patcher

預覽圖:

ttpadp

Source Code:

 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>

 int main(int argc, const char* args[])
 {
     const char str[] = {0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3A, 0x00, 0x2F, 0x00, 0x2F, 0x00, 0x74, 0x00, 0x74, 0x00, 0x6D, 0x00, 0x73, 0x00 …

Continue reading »