ROM Hack Question Getting sys-botbase to work

ThatBenderGuy

Not Like From Futurama
Member
Joined
Dec 16, 2013
Messages
154
Reaction score
17
Trophies
1
Age
34
XP
399
Country
United States
So I'm just trying to test things right now and I'm trying to send a + button press on the home menu to test it.

My python script doesn't throw any errors but nothing happens on my switch. I have input the correct ip address for my switch but still nothing happens. Any ideas? The ACNH poker works but for some reason I cannot get my python script to do anything. Here it is atm
Code:
import socket
import time
import binascii

def sendCommand(s, content):
    content += '\r\n'
    s.sendall(content.encode())

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("192.168.0.131", 6000))

sendCommand(s, "click PLUS")
input('Press enter to close...')
 
Last edited by ThatBenderGuy,

Site & Scene News

Popular threads in this forum