Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Pages: 1
Topic closed
This code worked before but now my bot doesn't even connect. It doesn't throw an error or anything.
public static Connection conn;
public static Client client;
public static List<string> names = new List<string>();
public static string worldKey = "";
public static void Main (string[] args)
{
client = PlayerIO.QuickConnect.SimpleConnect("everybody-edits-su9rn58o40itdbnw69plyw", email, password, null);
conn = client.Multiplayer.JoinRoom("PWYKcYsvCxbkI", null);
conn.OnMessage += OnMessage;
Console.Read();
}
static void OnMessage(object sender, PlayerIOClient.Message m) //your onmessage goes here
{
switch (m.Type) {
case "init":
conn.Send ("init2");
worldKey = derot(m.GetString(5));
conn.Send (worldKey + "k");
return;
}
}
Offline
public static Connection conn;
public static Client client;
public static List<string> names = new List<string>();
public static string worldKey = "";
public static void Main (string[] args)
{
client = PlayerIO.QuickConnect.SimpleConnect("everybody-edits-su9rn58o40itdbnw69plyw", email, password, null);
conn = client.Multiplayer.JoinRoom("PWYKcYsvCxbkI", null);
conn.OnMessage += OnMessage;
conn.Send("init");
Console.Read();
}
static void OnMessage(object sender, PlayerIOClient.Message m) //your onmessage goes here
{
switch (m.Type) {
case "init":
conn.Send ("init2");
worldKey = derot(m.GetString(5));
conn.Send (worldKey + "k");
return;
}
}
You forgot: conn.Send("init");
Warning!
This user has been found guilty by The Committee of Truth of using honesty, and reminding people of the past, without permission and outside of the allotted timeframes.
I’ve been asked if I’m ChatGPT5.
The answer is no.
I hope this helps! Let me know if you have any other questions.
Everybody edits, but some edit more than others
Offline
No I didn't... it is after conn.OnMessage += OnMessage;
Offline
No I didn't... it is after conn.OnMessage += OnMessage;
I don't see it in your post.
but it is in zumzas
thanks zoey aaaaaaaaaaaand thanks latif for the avatar
Offline
My apologies, I was looking at your not mine.
Offline
Thank you.
Offline
Pages: 1
Topic closed
[ Started around 1743894717.1993 - Generated in 0.099 seconds, 12 queries executed - Memory usage: 1.42 MiB (Peak: 1.54 MiB) ]