Jump to content

Rainb0wSkeppy

Member
  • Joined

  • Last visited

  1. Rainb0wSkeppy changed their profile photo
  2. not awesome 2 is at 117 players rn and when i try to join it says its full
  3. why did you reply to this post instead of posting it in classicube general or just mentioning it in chat on a server
  4. no but there are 50 others on the server list just build on one of those instead
  5. start cc in singleplayer then go to options > gui options > select system font and change the font to something else
  6. (ignore this comment i misread frostmc's post lol)
  7. malbolge uses ternary
  8. there are already 50 other freebuild servers, when a new server starts it gets 10 players then dies in a few days i miss ephermia anarchy
  9. the is no more (username) HAS BEEN BANNED BY 123DMWM banner THIS IS THE WORST UPDATE EVER!!!!!!!!!!!!!
  10. you cant but you can hide all custom blocks with /os lb edit 66-767 order 0
  11. using System; using MCGalaxy; using MCGalaxy.Events; using MCGalaxy.Events.PlayerEvents; namespace MCGalaxy { public class ClickHoldingBlockExample : Plugin { public override string name { get { return "ClickHoldingBlockExample"; } } public override string MCGalaxy_Version { get { return "1.9.5.1"; } } public override string creator { get { return "Rainb0wSkeppy"; } } public override void Load(bool startup) { OnPlayerClickEvent.Register(click, Priority.Normal); } public override void Unload(bool shutdown) { OnPlayerClickEvent.Unregister(click); } void click(Player p, MouseButton button, MouseAction action, ushort yaw, ushort pitch, byte entity, ushort x, ushort y, ushort z, TargetBlockFace face) { if (p.GetHeldBlock() != Block.Stone) return; if (action != MouseAction.Press) return; if (button == MouseButton.Left) p.Message("left click holding stone"); else if (button == MouseButton.Right) p.Message("right click holding stone"); } } }
  12. you cant only disable tnt explosions without disabling water and lava flowing
  13. the isometric drawer still renders using Gfx_DrawVb_IndexedTris_Range so its still using the gpu so its the same problem just use the map renderer its actually efficient
  14. the isometric drawer is meant for drawing the hotbar/inventory blocks