Advertisement
ktostam450

EE BotBase

Dec 15th, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.93 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using PlayerIOClient;
  10. using System.Text.RegularExpressions;
  11.  
  12. namespace Level_Manager
  13. {
  14.     public partial class Form1 : Form
  15.     {
  16.         string owner;
  17.         static string wk;
  18.         private string gameID = "everybody-edits-su9rn58o40itdbnw69plyw";
  19.  
  20.         public Connection c;
  21.         Player[] users = new Player[10000];
  22.         Dictionary<string, int> nicks = new Dictionary<string,int>();
  23.  
  24.         private string derot(string arg1)
  25.         {
  26.             int num = 0;
  27.             string str = "";
  28.             for (int i = 0; i < arg1.Length; i++)
  29.             {
  30.                 num = arg1[i];
  31.                 if ((num >= 0x61) && (num <= 0x7a))
  32.                 {
  33.                     if (num > 0x6d)
  34.                     {
  35.                         num -= 13;
  36.                     }
  37.                     else
  38.                     {
  39.                         num += 13;
  40.                     }
  41.                 }
  42.                 else if ((num >= 0x41) && (num <= 90))
  43.                 {
  44.                     if (num > 0x4d)
  45.                     {
  46.                         num -= 13;
  47.                     }
  48.                     else
  49.                     {
  50.                         num += 13;
  51.                     }
  52.                 }
  53.                 str = str + ((char)num);
  54.             }
  55.             return str;
  56.         }
  57.  
  58.         public Form1()
  59.         {
  60.             InitializeComponent();
  61.         }
  62.  
  63.         private void button1_Click(object sender, EventArgs e)
  64.         {
  65.             PlayerIO.QuickConnect.SimpleConnect(gameID, emailBox.Text, passBox.Text, LoginSuccess);
  66.         }
  67.  
  68.         private void LoginSuccess(PlayerIOClient.Client cl)
  69.         {
  70.             try
  71.             {
  72.                 c = cl.Multiplayer.JoinRoom(roomIDBox.Text, new Dictionary<string, string>());
  73.                 c.Send("init");
  74.                 c.Send("init2");
  75.                 c.OnMessage += new MessageReceivedEventHandler(onMessage);
  76.             }
  77.             catch
  78.             {
  79.            
  80.             }
  81.         }
  82.         private void onMessage(object sender, PlayerIOClient.Message m)
  83.         {
  84.             switch (m.Type)
  85.             {
  86.                 case "init":
  87.                     c.Send("say", "Connected!");
  88.                     owner = m.GetString(1);
  89.                     c.Send("say", "im silly");
  90.                     wk = derot(m.GetString(5));
  91.                     break;
  92.                 case "add":
  93.                     break;
  94.                 case "say":
  95.                     break;
  96.             }
  97.         }
  98.     }
  99.     class Player
  100.     {
  101.         public bool chat;
  102.         public bool isowner;
  103.         public bool online;
  104.  
  105.         public string nick;
  106.  
  107.         public int id;
  108.         public int level;
  109.         public int coins;
  110.  
  111.         public double x;
  112.         public double y;
  113.         public double mx;
  114.         public double my;
  115.         public double horizontal;
  116.         public double vertical;
  117.         public double speedx;
  118.         public double speedy;
  119.         public Player()
  120.         {
  121.  
  122.         }
  123.         public void Add(int _id, string _nick, bool _chat, int _level, bool _isowner, bool _isonline)
  124.         {
  125.             id = _id;
  126.             nick = _nick;
  127.             chat = _chat;
  128.             level = _level;
  129.             isowner = _isowner;
  130.             online = _isonline;
  131.         }
  132.  
  133.         public void Move(double _x, double _y, double _speedx, double _speedy, double _mx, double _my, double _horizontal, double _vertical, int _coins)
  134.         {
  135.             x = _x;
  136.             y = _y;
  137.             speedx = _speedx;
  138.             speedy = _speedy;
  139.             mx = _mx;
  140.             my = _my;
  141.             horizontal = _horizontal;
  142.             vertical = _vertical;
  143.             coins = _coins;
  144.         }
  145.     }
  146. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement