i've released fixed 1 month ago,plz check release section
download tutorial:
[Only registered and activated users can see links. Click Here To Register...]
download tutorial:
[Only registered and activated users can see links. Click Here To Register...]
Code:
#!/usr/bin/python
import re
import sys
import time
from ctypes import *
WM_SETTEXT =0x000C;
BM_CLICK=0x00F5
def fun2():
hwn = windll.user32.FindWindowA('#32770', '')
hwnd =windll.user32.FindWindowExA(hwn, None, 'Edit', '')
hButton= windll.user32.FindWindowExA(hwn, None, 'Button', 'Send')
while True:
#buy
windll.user32.SendMessageA(hwnd, WM_SETTEXT, None,'02 26 42 31 5F 4C 69 74 65 72 50 30 33 31 30 00 00 00 0B B2 A3 70 00 ') #shen1l
for i in range(6):
windll.user32.SendMessageA(hButton, BM_CLICK, None, None)
#sell
windll.user32.SendMessageA(hwnd, WM_SETTEXT, None,'02 F8 71 71 71 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ')
windll.user32.SendMessageA(hButton, BM_CLICK, None, None)
time.sleep(0.01)
def fun1():
hwn = windll.user32.FindWindowA('#32770', '')
hwnd =windll.user32.FindWindowExA(hwn, None, 'Edit', '')
hButton= windll.user32.FindWindowExA(hwn, None, 'Button', 'Send')
while True:
#buy
windll.user32.SendMessageA(hwnd, WM_SETTEXT, None,'02 26 42 31 5F 4C 69 74 65 72 50 30 33 31 30 00 00 00 0B B2 A3 70 00 ') #shen1l
for i in range(6):
windll.user32.SendMessageA(hButton, BM_CLICK, None, None)
#sell
for bag in range(1,6):
for slot in range(0,24):
text = "03 07 %02x %02x ff"%(bag,slot)
windll.user32.SendMessageA(hwnd, WM_SETTEXT, None,text)
windll.user32.SendMessageA(hButton, BM_CLICK, None, None)
time.sleep(0.01)
#fun2()
fun1();