番茄系統(tǒng)家園 - 免費(fèi)重裝系統(tǒng)!簡單裝系統(tǒng),人人都是裝機(jī)大師!
當(dāng)前位置:首頁>Win7資訊 > win7掃雷如何作弊?

win7掃雷如何作弊?

來源:番茄系統(tǒng)家園瀏覽:時間:2021-08-13 15:20:19

win7扫雷如何作弊?

###############################################################################--#####--#(x86)###--##programbeforerunningthisscript.Moreover,the#MineSweeper.exeshouldbeneithermaximizednorminimized.##2.Whenthisscriptrunning,dontmoveyourmouse.##############################################################################importimportwin32apiimportwin32guiimportwin32conimportwin32processimporttime,subprocessfromctypesimport*#constvariableTH32CS_SNAPMODULE=0x00000008PROCESS_ALL_ACCESS=0x1F0FFFHWND_NOTOPMOST=-2HWND_TOPMOST=-1SWP_NOSIZE=0x0001MOUSEEVENTF_LEFTDOWN=0x0002MOUSEEVENTF_LEFTUP=0x0004MOUSEEVENTF_RIGHTDOWN=0x0008MOUSEEVENTF_RIGHTUP=0x0010#structclassMODULEENTRY32(Structure):_fields_=[(dwSize,c_long),(th32ModuleID,c_long),(th32ProcessID,c_long),(GlblcntUsage,c_long),(ProccntUsage,c_long),(modBaseAddr,c_long),(modBaseSize,c_long),(hModule,c_void_p),(szModule,c_char*256),(szExePath,c_char*260)]##LoadLibrarykernel32=windll.LoadLibrary(kernel32.dll)##OpenProcessOpenProcess=kernel32.OpenProcess##CreateToolhelp32SnapshotCreateToolhelp32Snapshot=kernel32.CreateToolhelp32SnapshotCreateToolhelp32Snapshot.reltype=c_longCreateToolhelp32Snapshot.argtypes=[c_int,c_int]##Module32FirstModule32First=kernel32.Module32FirstModule32First.argtypes=[c_void_p,POINTER(MODULEENTRY32)]Module32First.rettype=c_int##Module32NextModule32Next=kernel32.Module32NextModule32Next.argtypes=[c_void_p,POINTER(MODULEENTRY32)]Module32Next.rettype=c_int##CloseHandleCloseHandle=kernel32.CloseHandleCloseHandle.argtypes=[c_void_p]CloseHandle.rettype=c_int##ReadProcessMemoryReadProcessMemory=kernel32.ReadProcessMemory#functiondefautoSweep():hWnd=win32gui.FindWindow(Minesweeper,None)ifhWnd==win32con.NULL:printFailedtofindtheMinesweeper\swindow.return1ThreadID,ProcessID=win32process.GetWindowThreadProcessId(hWnd)hProcess=OpenProcess(PROCESS_ALL_ACCESS,False,ProcessID)ifhProcess==win32con.NULL:printFailedtoopentheMinesweeper\sprocess.return1hSnapshot=c_void_p(0)me32=MODULEENTRY32()me32.dwSize=sizeof(MODULEENTRY32)hSnapshot=CreateToolhelp32Snapshot(TH32CS_SNAPMODULE,ProcessID)ret=Module32First(hSnapshot,pointer(me32))ifret==False:CloseHandle(hSnapshot)printFailedtoenumeratethemodulereturn1whileret:ifcmp(me32.szModule.lower(),minesweeper.exe)==0:mineBaseAddr=int(me32.modBaseAddr)ret=Module32Next(hSnapshot,pointer(me32))CloseHandle(hSnapshot)buffer=c_void_p(0)dwDate=c_void_p(0)topBaseAddr=mineBaseAddr+0x868B4MineInfo={count:0,row:0,column:0}try:ReadProcessMemory(hProcess,topBaseAddr,pointer(buffer),4,win32con.NULL)ReadProcessMemory(hProcess,buffer.value+0x10,pointer(buffer),4,win32con.NULL)ReadProcessMemory(hProcess,buffer.value+0x04,pointer(dwDate),4,win32con.NULL)MineInfo[count]=dwDate.valueReadProcessMemory(hProcess,buffer.value+0x08,pointer(dwDate),4,win32con.NULL)MineInfo[row]=dwDate.valueReadProcessMemory(hProcess,buffer.value+0x0C,pointer(dwDate),4,win32con.NULL)MineInfo[column]=dwDate.valueexcept:printFailedtoreadtheMinesweeper\smemorydate.return1win32gui.SetWindowPos(hWnd,HWND_TOPMOST,0,0,0,0,SWP_NOSIZE)cleft,ctop,cright,cbottom=win32gui.GetClientRect(hWnd)ifcright=0orcbottom=0:printFailedtogettherectangleofthMinesweeper\swindow.return1x,y=win32gui.ClientToScreen(hWnd,(cleft,ctop))edge=cright/(MineInfo[column]+4)+1originX=edge*2+edge/2+xoriginY=(cbottom-MineInfo[row]*edge)/2+edge/2+ywin32api.SetCursorPos((originX,originY))time.sleep(0.05)win32api.mouse_event(MOUSEEVENTF_LEFTDOWN|MOUSEEVENTF_LEFTUP,0,0,0,0)win32api.mouse_event(MOUSEEVENTF_LEFTDOWN|MOUSEEVENTF_LEFTUP,0,0,0,0)time.sleep(1)ReadProcessMemory(hProcess,buffer.value+0x44,pointer(buffer),4,win32con.NULL)ReadProcessMemory(hProcess,buffer.value+0x0C,pointer(buffer),4,win32con.NULL)buffer2=c_void_p(0)dwDate2=c_void_p(0)bFlag=[[0forcolinrange(MineInfo[row])]forrowinrange(MineInfo[column])]foriinrange(0,MineInfo[column]):ReadProcessMemory(hProcess,buffer.value+4*i,pointer(buffer2),4,win32con.NULL)ReadProcessMemory(hProcess,buffer2.value+0x0C,pointer(buffer2),4,win32con.NULL)forjinrange(0,MineInfo[row]):ReadProcessMemory(hProcess,buffer2.value+j,pointer(dwDate2),1,win32con.NULL)ifdwDate2.value==None:bFlag[i][j]=0else:bFlag[i][j]=dwDate2.valueprinti,j,bFlag[i][j]CloseHandle(hProcess)Count=0foriinrange(0,MineInfo[row]):forjinrange(0,MineInfo[column]):ifwin32gui.FindWindow(Minesweeper,None)!=win32con.NULL:win32api.SetCursorPos((originX+j*edge,originY+i*edge))ifbFlag[j][i]==0:win32api.mouse_event(MOUSEEVENTF_LEFTDOWN|MOUSEEVENTF_LEFTUP,0,0,0,0)Count+=1else:ifCount==(MineInfo[row]*MineInfo[column]-MineInfo[count]):breakwin32api.mouse_event(MOUSEEVENTF_RIGHTDOWN|MOUSEEVENTF_RIGHTUP,0,0,0,0)time.sleep(.015)else:printFailedtofindtheMinesweeper\swindow.return1printhWndwin32gui.SetWindowPos(hWnd,HWND_NOTOPMOST,0,0,0,0,SWP_NOSIZE)return0#mainif__name__==__main__:print__doc__print

subprocess.Popen(C:\ProgramFiles\MicrosoftGames\Minesweeper\MineSweeper.exe)time.sleep(2)bSuccess=autoSweep()ifbSuccess==1:input(PressENTERtoexit.)

python代码,自动扫雷

展开阅读全文​

相关阅读

  • win7自带扫雷作弊方法
  • windows7扫雷秘籍
  • win7扫雷如何作弊?
  • 推薦系統(tǒng)

    • 雨林木風(fēng) winxp下載 純凈版 永久激活 winxp ghost系統(tǒng) sp3 系統(tǒng)下載

      雨林木風(fēng) winxp下載 純凈版 永久激活 winxp ghost系統(tǒng) sp3 系統(tǒng)下載64位
      系統(tǒng)大?。?/em>0MB系統(tǒng)類型:WinXP

      雨林木風(fēng)在系統(tǒng)方面技術(shù)積累雄厚深耕多年,打造了國內(nèi)重裝系統(tǒng)行業(yè)知名品牌,雨林木風(fēng)WindowsXP其系統(tǒng)口碑得到許多人認(rèn)可,積累了廣大的用戶群體,是一款穩(wěn)定流暢的系統(tǒng),雨林木風(fēng) winxp下載 純凈版 永久激活 winxp ghost系統(tǒng) sp3 系統(tǒng)下載,有需要的朋友速度下載吧。

      系統(tǒng)等級:
      進(jìn)入下載 >
    • 蘿卜家園win7純凈版 ghost系統(tǒng)下載 x64 聯(lián)想電腦專用

      蘿卜家園win7純凈版 ghost系統(tǒng)下載 x64 聯(lián)想電腦專用64位
      系統(tǒng)大?。?/em>0MB系統(tǒng)類型:Win7

      蘿卜家園win7純凈版是款非常純凈的win7系統(tǒng),此版本優(yōu)化更新了大量的驅(qū)動,幫助用戶們進(jìn)行舒適的使用,更加的適合家庭辦公的使用,方便用戶,有需要的用戶們快來下載安裝吧。

      系統(tǒng)等級:
      進(jìn)入下載 >
    • 雨林木風(fēng)xp系統(tǒng) xp系統(tǒng)純凈版 winXP ghost xp sp3 純凈版系統(tǒng)下載

      雨林木風(fēng)xp系統(tǒng) xp系統(tǒng)純凈版 winXP ghost xp sp3 純凈版系統(tǒng)下載64位
      系統(tǒng)大?。?/em>1.01GB系統(tǒng)類型:WinXP

      雨林木風(fēng)xp系統(tǒng) xp系統(tǒng)純凈版 winXP ghost xp sp3 純凈版系統(tǒng)下載,雨林木風(fēng)WinXP系統(tǒng)技術(shù)積累雄厚深耕多年,采用了新的系統(tǒng)功能和硬件驅(qū)動,可以更好的發(fā)揮系統(tǒng)的性能,優(yōu)化了系統(tǒng)、驅(qū)動對硬件的加速,加固了系統(tǒng)安全策略,運(yùn)行環(huán)境安全可靠穩(wěn)定。

      系統(tǒng)等級:
      進(jìn)入下載 >
    • 蘿卜家園win10企業(yè)版 免激活密鑰 激活工具 V2023 X64位系統(tǒng)下載

      蘿卜家園win10企業(yè)版 免激活密鑰 激活工具 V2023 X64位系統(tǒng)下載64位
      系統(tǒng)大?。?/em>0MB系統(tǒng)類型:Win10

      蘿卜家園在系統(tǒng)方面技術(shù)積累雄厚深耕多年,打造了國內(nèi)重裝系統(tǒng)行業(yè)的蘿卜家園品牌,(win10企業(yè)版,win10 ghost,win10鏡像),蘿卜家園win10企業(yè)版 免激活密鑰 激活工具 ghost鏡像 X64位系統(tǒng)下載,其系統(tǒng)口碑得到許多人認(rèn)可,積累了廣大的用戶群體,蘿卜家園win10純凈版是一款穩(wěn)定流暢的系統(tǒng),一直以來都以用戶為中心,是由蘿卜家園win10團(tuán)隊推出的蘿卜家園

      系統(tǒng)等級:
      進(jìn)入下載 >
    • 蘿卜家園windows10游戲版 win10游戲?qū)I(yè)版 V2023 X64位系統(tǒng)下載

      蘿卜家園windows10游戲版 win10游戲?qū)I(yè)版 V2023 X64位系統(tǒng)下載64位
      系統(tǒng)大?。?/em>0MB系統(tǒng)類型:Win10

      蘿卜家園windows10游戲版 win10游戲?qū)I(yè)版 ghost X64位 系統(tǒng)下載,蘿卜家園在系統(tǒng)方面技術(shù)積累雄厚深耕多年,打造了國內(nèi)重裝系統(tǒng)行業(yè)的蘿卜家園品牌,其系統(tǒng)口碑得到許多人認(rèn)可,積累了廣大的用戶群體,蘿卜家園win10純凈版是一款穩(wěn)定流暢的系統(tǒng),一直以來都以用戶為中心,是由蘿卜家園win10團(tuán)隊推出的蘿卜家園win10國內(nèi)鏡像版,基于國內(nèi)用戶的習(xí)慣,做

      系統(tǒng)等級:
      進(jìn)入下載 >
    • windows11下載 蘿卜家園win11專業(yè)版 X64位 V2023官網(wǎng)下載

      windows11下載 蘿卜家園win11專業(yè)版 X64位 V2023官網(wǎng)下載64位
      系統(tǒng)大?。?/em>0MB系統(tǒng)類型:Win11

      蘿卜家園在系統(tǒng)方面技術(shù)積累雄厚深耕多年,windows11下載 蘿卜家園win11專業(yè)版 X64位 官網(wǎng)正式版可以更好的發(fā)揮系統(tǒng)的性能,優(yōu)化了系統(tǒng)、驅(qū)動對硬件的加速,使得軟件在WINDOWS11系統(tǒng)中運(yùn)行得更加流暢,加固了系統(tǒng)安全策略,WINDOWS11系統(tǒng)在家用辦公上跑分表現(xiàn)都是非常優(yōu)秀,完美的兼容各種硬件和軟件,運(yùn)行環(huán)境安全可靠穩(wěn)定。

      系統(tǒng)等級:
      進(jìn)入下載 >

    熱門系統(tǒng)