Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using PlayerIOClient;
- using System.Text.RegularExpressions;
- namespace Level_Manager
- {
- public partial class Form1 : Form
- {
- string owner;
- static string wk;
- private string gameID = "everybody-edits-su9rn58o40itdbnw69plyw";
- public Connection c;
- Player[] users = new Player[10000];
- Dictionary<string, int> nicks = new Dictionary<string,int>();
- private string derot(string arg1)
- {
- int num = 0;
- string str = "";
- for (int i = 0; i < arg1.Length; i++)
- {
- num = arg1[i];
- if ((num >= 0x61) && (num <= 0x7a))
- {
- if (num > 0x6d)
- {
- num -= 13;
- }
- else
- {
- num += 13;
- }
- }
- else if ((num >= 0x41) && (num <= 90))
- {
- if (num > 0x4d)
- {
- num -= 13;
- }
- else
- {
- num += 13;
- }
- }
- str = str + ((char)num);
- }
- return str;
- }
- public Form1()
- {
- InitializeComponent();
- }
- private void button1_Click(object sender, EventArgs e)
- {
- PlayerIO.QuickConnect.SimpleConnect(gameID, emailBox.Text, passBox.Text, LoginSuccess);
- }
- private void LoginSuccess(PlayerIOClient.Client cl)
- {
- try
- {
- c = cl.Multiplayer.JoinRoom(roomIDBox.Text, new Dictionary<string, string>());
- c.Send("init");
- c.Send("init2");
- c.OnMessage += new MessageReceivedEventHandler(onMessage);
- }
- catch
- {
- }
- }
- private void onMessage(object sender, PlayerIOClient.Message m)
- {
- switch (m.Type)
- {
- case "init":
- c.Send("say", "Connected!");
- owner = m.GetString(1);
- c.Send("say", "im silly");
- wk = derot(m.GetString(5));
- break;
- case "add":
- break;
- case "say":
- break;
- }
- }
- }
- class Player
- {
- public bool chat;
- public bool isowner;
- public bool online;
- public string nick;
- public int id;
- public int level;
- public int coins;
- public double x;
- public double y;
- public double mx;
- public double my;
- public double horizontal;
- public double vertical;
- public double speedx;
- public double speedy;
- public Player()
- {
- }
- public void Add(int _id, string _nick, bool _chat, int _level, bool _isowner, bool _isonline)
- {
- id = _id;
- nick = _nick;
- chat = _chat;
- level = _level;
- isowner = _isowner;
- online = _isonline;
- }
- public void Move(double _x, double _y, double _speedx, double _speedy, double _mx, double _my, double _horizontal, double _vertical, int _coins)
- {
- x = _x;
- y = _y;
- speedx = _speedx;
- speedy = _speedy;
- mx = _mx;
- my = _my;
- horizontal = _horizontal;
- vertical = _vertical;
- coins = _coins;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement