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 pathraid_finder.py
254 lines (223 loc) · 7.14 KB
/
raid_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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
#Connect your Switch to Interet
#Start sys-botbase and ldn_mitm
#Go to System Settings, check your Switch IP and write it below
#Set game text speed to normal
#Save in front of an empty Den. You must have at least one Wishing Piece in your bag
#Start the script with game closed and selection square over it
#r.Ability == 1/2/'H'
#r.Nature == 'NATURE'
#r.ShinyType == 'None'/'Star'/'Square' (!= 'None' for both square/star)
#r.IVs == spread_name (spread_name = [x,x,x,x,x,x])
from G8RNG import XOROSHIRO,Raid
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")
print("Closing game...")
time.sleep(0.8)
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.4", 6000)) #write the IP of your Switch here
signal.signal(signal.SIGINT, signal_handler)
ivfilter = 1 #set 0 to disable filter
V6 = [31,31,31,31,31,31] #add here the spreads you need
A0 = [31,0,31,31,31,31]
S0 = [31,31,31,31,31,0]
TRA0 = [31,0,31,31,31,0]
reset = 0
denId = int(input("Den Id: "))
if denId > 16:
denId += 1
denOffset_addr = str(0x4298FA70 + (denId * 0x18))
denOffset_command = "peek " + denOffset_addr + " 12"
wattsByte_addr = str(0x4298FA7B + (denId * 0x18))
wattsByte_command = "peek " + wattsByte_addr + " 1"
rb_research = input("Are you looking for a Rare Beam Raid? (y/n) ")
if rb_research == "y":
rb_research = 1
ev_research = 0
else:
rb_research = 0
ev_research = input("Are you looking for an Event Raid? (y/n) ")
if ev_research == "y":
ev_research = 1
else:
ev_research = 0
flawlessiv = int(input("How many fixed IVs will the Pokemon have? (1 to 5) "))
HA = input("Is Hidden Ability possible? (y/n) ")
if HA == 'y':
HA = 1
else:
HA = 0
isToxtricity = input("Are you looking for Toxtricity? (y/n) ")
if isToxtricity == 'y':
game_version = input("Game? (Sw/Sh) ")
if game_version == 'Sw':
isToxtricity = 1
else:
isToxtricity = 2
RandomGender = 0
else:
isToxtricity = 0
RandomGender = input("Are you looking for a Random Gender Pokémon? (y/n) ")
if RandomGender == 'y':
RandomGender = 1
else:
RandomGender = 0
Maxresults = int(input("Input Max Results: "))
time.sleep(0.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(8)
sendCommand(s, wattsByte_command) #get wattsByte
time.sleep(0.5)
wattsByte = s.recv(3)
flag_watts = int.from_bytes(binascii.unhexlify(wattsByte[0:-1]), "big") #check if den has watts
#print(flag_watts)
flag_watts = (flag_watts & 1) == 0
if flag_watts:
print("Den has watts - Getting them...")
sendCommand(s, "click A") #A on den
time.sleep(1.5)
sendCommand(s, "click A")
time.sleep(1.2)
sendCommand(s, "click A")
time.sleep(1.2)
sendCommand(s, "click X") #open menu
time.sleep(1.2)
print("Saving...")
sendCommand(s, "click R") #saving
time.sleep(1.5)
sendCommand(s, "click A")
time.sleep(4)
else:
print("No watts in Den")
sendCommand(s, "click A") #A on den
print("A on den")
time.sleep(0.5)
sendCommand(s, "click A")
time.sleep(1.3)
sendCommand(s, "click A") #A to throw whishing piece
print("Throw Wishing Piece in den")
time.sleep(1.4)
sendCommand(s, "click A") #A to save
print("Saving")
time.sleep(1.2)
sendCommand(s, "click HOME") #Home
print("HOME clicked")
time.sleep(0.5)
sendCommand(s, denOffset_command) #get denOffset
time.sleep(0.5)
denOffset = s.recv(25)
seed = int.from_bytes(binascii.unhexlify(denOffset[0:16]), "little") #den Seed
print("Seed:", str(hex(seed))[2:18].upper())
flag_rb = int.from_bytes(binascii.unhexlify(denOffset[20:-3]), "big") #rare beam byte
#print(hex(flag_rb))
flag_rb = (flag_rb > 0) and (flag_rb & 1) == 0 #rare beam check
if flag_rb:
print("Rare beam")
else:
print("No rare beam")
flag_ev = int.from_bytes(binascii.unhexlify(denOffset[22:-1]), "big") #event den byte
#print(hex(flag_e))
flag_ev = (flag_ev >> 1) & 1 #event raid check
if flag_ev:
print("Event Raid")
else:
print("No event Raid")
#spreads research
j = 0
found = 0
do_research = 1
if rb_research == 1 and rb_research != flag_rb: #rare beam/event check
do_research = 0
elif ev_research == 1 and ev_research != flag_ev:
do_research = 0
elif rb_research == 0 and ev_research == 0:
if rb_research != flag_rb or ev_research != flag_ev:
do_research = 0
while j < Maxresults and do_research:
if j < 1:
print("Searching...")
r = Raid(seed,isToxtricity,RandomGender,flawlessiv,HA)
seed = XOROSHIRO(seed).next()
if ivfilter:
if r.ShinyType != 'None' and r.Nature == 'BOLD' and r.Ability == 'H': #and (r.IVs == V6 or r.IVs == A0 or r.IVs == S0):
print("Frame:", j)
r.print()
if found != 1:
found = 1
else:
if found != 1:
found = 1
print("Frame:", j)
r.print()
j += 1
if found:
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)
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:
if j == 0:
print("Research skipped")
reset = reset + 1
print("Nothing found - Resets:", reset)
#game closing
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()