Giter Site home page Giter Site logo

jyw's Introduction

极域世界(JiYu_World)

破解极域电子教室


V1.0 特点:运行后立即关闭极域电子教室进程

V2.0 特点:运行175秒后会弹出窗口询问是否关闭。选择“终止”将会在5秒后关闭进程;选择“重试”则重新计时,175秒后再次询问;选择“忽略”退出本极域世界程序。(这个可用于确认老师是否在身边。老师在身边可以点击“重试”或“忽略”,就不会退出。如果老师不在身边,可以点击“终止”退出)

V3.0 特点:运行后等待15秒才会关闭进程(可以用于进去截图)


建议从右面Releases下载~

要下就下正式版的吧,beta版用不了,别下了:(

有Bug或好的想法和建议可以到上面的Issues处反馈~

具体的可以到上面的Wiki康康~

jyw's People

Contributors

jacobhu0723 avatar

Watchers

 avatar

jyw's Issues

尝试隐藏极域窗口

隐藏

import win32con  # 定义

import win32gui  # 界面

import time  # 时间

jy= win32gui.FindWindow("Afx:01A80000:20b:00000000:00000000:01790ACB","屏幕广播")

time.sleep(10)

win32gui.ShowWindow(jy, win32con.SW_HIDE)  # 设置隐藏

显示

import win32con  # 定义

import win32gui  # 界面

import time  # 时间

jy= win32gui.FindWindow("Afx:01A80000:20b:00000000:00000000:01790ACB","屏幕广播")

 win32gui.ShowWindow(jy,win32con.SW_SHOW)   # 设置显示

源代码

import win32con  # 定义

import win32gui  # 界面

import time  # 时间

 

 

QQ= win32gui.FindWindow("TXGuiFoundation","QQ")

for num in range(120):

    time.sleep(1)

    if num%2 == 0:

        win32gui.ShowWindow(QQ, win32con.SW_HIDE)  # 设置隐藏

    else:

        win32gui.ShowWindow(QQ,win32con.SW_SHOW)   # 设置显示

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.