Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private void replaceTrolledBlock(int x, int y, int l)
- {
- int b = blocks[x, y, l].id;
- switch (blocks[x, y, l].type)
- {
- case "pt":
- con.Send(wkey, 1, x, y, b);
- con.Send(wkey, 0, x, y, 242, blocks[x, y, 0].rot, blocks[x, y, 0].pid, blocks[x, y, 0].pde);
- break;
- case "bc":
- con.Send(wkey, 1, x, y, b);
- con.Send(wkey, 0, x, y, 43, blocks[x, y, l].amount);
- break;
- case "sd":
- con.Send(wkey, 1, x, y, b);
- con.Send(wkey, 0, x, y, b, blocks[x, y, l].sd);
- break;
- case "no":
- con.Send(wkey, l, x, y, b);
- break;
- }
- }
- case "b":
- {
- //0 foreground --- 1 background
- int layer = m.GetInt(0);
- int x = m.GetInt(1);
- int y = m.GetInt(2);
- int b = m.GetInt(3);
- //con.Send("say", x.ToString() + " " + y.ToString() + " / " + blocks[x, y, layer].id);
- if (edit)
- {
- blocks[x, y, layer].id = b;
- }
- else
- {
- replaceTrolledBlock(x, y, layer);
- }
- }
- break;
- #region Other blocks
- case "bs":
- {
- int x = m.GetInt(0);
- int y = m.GetInt(1);
- int b = m.GetInt(2);
- int sid = m.GetInt(3);
- if (edit)
- {
- blocks[x, y, 0].id = b; blocks[x, y, 0].sd = sid; blocks[x, y, 0].type = "sd";
- }
- else
- {
- replaceTrolledBlock(x, y, 0);
- }
- }
- break;
- case "pt":
- {
- int x = m.GetInt(0);
- int y = m.GetInt(1);
- int b = 242;
- int rot = m.GetInt(3);
- int ID = m.GetInt(4);
- int DE = m.GetInt(5);
- if (edit)
- {
- blocks[x, y, 0].id = b; blocks[x, y, 0].rot = rot; blocks[x, y, 0].pid = ID; blocks[x, y, 0].pde = DE; blocks[x, y, 0].type = "pt";
- }
- else
- {
- replaceTrolledBlock(x, y, 0);
- }
- }
- break;
- case "bc":
- {
- int x = m.GetInt(0);
- int y = m.GetInt(1);
- int b = m.GetInt(2);
- int am = m.GetInt(3);
- if (edit)
- {
- blocks[x, y, 0].id = b;
- blocks[x, y, 0].amount = am;
- blocks[x, y, 0].type = "bc";
- }
- else
- {
- replaceTrolledBlock(x, y, 0);
- }
- }
- break;
- #endregion
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement