s99471379 發表於 2015-4-4 13:46:38

TwMS v178.1_攻擊不停_CE版_BCB版_VB版(給做外掛的人用~)

看到版上很多人都說數據有問題 那我只好... 發這個文吧

//-------------------------------------CE版------------------------------------
//一般
指標:017F6D8C
偏移:B73C
寫入值:0

//輔助
指標:017F6D8C
偏移:B74C
寫入值:0
//------------------------------------BCB版------------------------------------
//This is Function
bool WritePointer(unsigned long ulBase, int iOffset, int iValue) {
        __try {
                *(int*)(*(unsigned long*)ulBase + iOffset) = iValue;
                return true;
        }
        __except (EXCEPTION_EXECUTE_HANDLER) {
                return false;
        }
}

WritePointer(0x017F6D8C,0xB73C,0);
WritePointer(0x017F6D8C,0xB74C,0);
//------------------------------------VB版------------------------------------
//This is Function
Public Declare Function WriteProcessMemoryAPI Lib "kernel32" Alias "WriteProcessMemory" (ByVal hProcess As Integer, ByVal lpBaseAddress As Integer, ByRef lpBuffer As Integer, ByVal nSize As Integer, ByRef lpNumberOfBytesWritten As Integer) As Integer

Public Function WriteMemory(ByVal hprocess As Integer, ByVal lpAddress As Long, ByVal lpBuffer As Long, ByVal lpSize As Long) As Long
WriteMemory = WriteProcessMemoryAPI(hprocess, lpAddress, lpBuffer, lpSize, False)
End Function

Public Function WritePointer(ByVal hprocess As Integer, ByVal lpAddress As Long, ByVal lpOffset As Long, ByVal lpValue As Long) As Long
WritePointer = WriteMemory(hprocess, ReadLong(hprocess, lpAddress) + lpOffset, lpValue, 4)
End Function

WritePointer(hprocess, &H17F6D8C, &HB73C, 0)
WritePointer(hprocess, &H17F6D8C, &HB74C, 0)
//--------------------------------------------------------------------------------
相信會做外掛的應該覺得這個不難哦XD
如果有任何疑問歡迎短消息我~
**** Hidden Message *****

★猴子 發表於 2015-4-4 13:52:06

哇塞真貼心還附上BCB版本 {:3_41:}

魚鬆哥 發表於 2015-4-4 14:34:52

感謝大大 外掛新手來學習嚕

kkooi 發表於 2015-4-5 00:02:51

新手學習中~
馬上來試看看

xmax 發表於 2015-4-15 18:15:43

哇哇 ~ 把整個片段的Code貼上來喔 !!!!!

立馬收藏 <(_ _)>

你好ㄚ 發表於 2015-4-15 18:25:49

感謝大大!!

來研究看看~

胡甯愷 發表於 2015-4-18 14:24:40

v3611441 發表於 2015-6-26 18:10:45

這是什麼  來看看神大寫的

jjj80603 發表於 2015-9-13 19:30:25

裡面是神麼
頁: [1]
查看完整版本: TwMS v178.1_攻擊不停_CE版_BCB版_VB版(給做外掛的人用~)