From d4c200485004ed9ec611d7d04da2e997c01ae8e8 Mon Sep 17 00:00:00 2001 From: Shadoki Date: Sat, 17 Feb 2024 11:34:17 -0800 Subject: [PATCH] Added OWO mod id --- owo_suit.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/owo_suit.py b/owo_suit.py index 042a21c..fc2f7c9 100644 --- a/owo_suit.py +++ b/owo_suit.py @@ -11,7 +11,7 @@ dll_path = os.path.abspath(os.path.join(os.path.dirname(__file__), './owo/OWO.dll')) from System.Reflection import Assembly Assembly.UnsafeLoadFrom(dll_path) -from OWOGame import OWO, SensationsFactory, Muscle, ConnectionState +from OWOGame import OWO, SensationsFactory, Muscle, ConnectionState, GameAuth class OWOSuit: def __init__(self, config: Config, gui: Gui): @@ -88,6 +88,7 @@ def map_parameters(self, dispatcher: dispatcher.Dispatcher) -> None: dispatcher.set_default_handler(self.on_collission_enter) def connect(self) -> bool: + OWO.Configure(GameAuth.Create().WithId(74604770)) owo_ip = self.config.get_by_key("owo_ip") if type(owo_ip) is str and owo_ip != "": OWO.Connect(owo_ip)