This repository was archived by the owner on Dec 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstars_finder.py
116 lines (103 loc) · 3.32 KB
/
stars_finder.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#Connect your Switch to Interet
#Start sys-botbase, ldn_mitm and luxray (the yellow cursor of luxray has to be over "+3" button)
#Go to System Settings, check your Switch IP and write it below
#Save in front of an Den whose beam has been generated through Wishing Piece
#Start the script with game closed and selection square over it
import socket
import time
import binascii
import signal
import sys
def sendCommand(s, content):
content += '\r\n' #important for the parser on the switch side
s.sendall(content.encode())
def signal_handler(signal, frame): #CTRL+C handler
print("Stop request")
c = input('Close the game? (y/n): ')
if c == 'y':
h = input('Need HOME button pressing? (y/n): ')
if h == 'y':
time.sleep(0.5)
sendCommand(s, "click HOME")
time.sleep(0.5)
print("Closing game...")
sendCommand(s, "click X")
time.sleep(0.2)
sendCommand(s, "click X")
time.sleep(0.8)
sendCommand(s, "click A")
time.sleep(0.2)
sendCommand(s, "click A")
time.sleep(1)
print("Exiting...")
sendCommand(s, "detachController")
sys.exit(0)
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("192.168.1.2", 6000)) #write the IP of your Switch here
signal.signal(signal.SIGINT, signal_handler)
reset = 0
denId = int(input("Den Id: "))
if denId > 16:
denId += 1
denOffset_addr = str(0x4298FA70 + (denId * 0x18))
command = "peek " + denOffset_addr + " 12"
stars = int(input("Which number of Stars are you looking for? (1 to 5) "))
while True:
sendCommand(s, "click A") #A on game
print("A on game")
time.sleep(0.2)
sendCommand(s, "click A")
time.sleep(1.5)
sendCommand(s, "click A") #A on profile
print("A on profile")
time.sleep(0.2)
sendCommand(s, "click A")
time.sleep(16.5)
sendCommand(s, "click A") #A to skip anim
print("Skip animation")
time.sleep(0.5)
sendCommand(s, "click A")
time.sleep(0.5)
sendCommand(s, "click A")
time.sleep(9)
sendCommand(s, "click R") #R on Luxray "+3" button
time.sleep(1.5)
sendCommand(s, command) #get denOffset
time.sleep(0.5)
denOffset = s.recv(25)
stars_byte = int.from_bytes(binascii.unhexlify(denOffset[16:-7]), "big") #raid stars
print("Raid stars:", stars_byte + 1)
time.sleep(0.5)
if stars_byte + 1 == stars:
print("Found after", reset, "resets")
a = input('Continue searching? (y/n): ')
if a != "y":
c = input('Close the game? (y/n): ')
if c == 'y':
time.sleep(0.5)
sendCommand(s, "click HOME")
time.sleep(0.5)
print("Closing game...")
sendCommand(s, "click X")
time.sleep(0.8)
sendCommand(s, "click A")
time.sleep(3.5)
print("Exiting...")
sendCommand(s, "detachController")
break
else:
reset = reset + 1
print("Wrong Stars - Resets:", reset)
#game closing
time.sleep(0.5)
sendCommand(s, "click HOME")
time.sleep(0.5)
sendCommand(s, "click X")
time.sleep(0.2)
sendCommand(s, "click X")
time.sleep(0.8)
sendCommand(s, "click A")
time.sleep(0.2)
sendCommand(s, "click A")
time.sleep(3.5)
print()