Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/31/2021 in Posts

  1. Hey lol it's me again. I'm sure you've heard at least once of the Game of Life, made by mathematician John Conway (RIP, died from Covid last year). It revolves around 3 rules that define the actions of dead and alive cells throughout a grid. Based on the start pattern, the actions of these cells is determined by the rules and can evolve into complex shapes, and with proper time and effort, can be coded into functioning systems. The rules are as follow: Any alive cell with less than 2 alive neighbors must die. Any alive cell with more than 3 alive neighbors must also die. Any empty cell with exactly 3 alive neighbors will become an alive cell. Using Skript, i coded these 3 rules into 2 functions, and with a little bit of work here and there got the exact same result given by the Game of Life. I included a video and the code for the functions below. function neighbors1(l: location) :: boolean: return true if (size of (all blocks in radius 1.5 of {_l} where [input = black concrete])) != 2 or 3 function neighbors2(l: location) :: boolean: return true if (size of (all blocks in radius 1.5 of {_l} where [input = black concrete])) = 3 Minecraft 1.16.5 - Multiplayer (3rd-party Server) 2021-05-30 14-29-16_Trim.mp4 P.S., Floofsy = I think we can all agree?
    1 point
  2. oo thats cool and i agree about the last thing
    1 point
  3. The syntax you are currently using requires skRayFall. With vanilla it is just this: set player's tab list header to " " set player's tab list footer to " " https://skripthub.net/docs/?id=3738
    1 point
  4. Hello! My friend and I are trying to play minecraft on a minehut server. We are using EasyMC accounts and I could join in the server with no problems while he has this problem : "failed to log in: the autenticationn server are currently down for maintinence". He has no problem going to other servers, just minehut servers. :')
    1 point
  5. You can use the command /seed, this will display your world's seed. By clicking on it, it allows you to copy the seed.
    1 point
×
×
  • Create New...