Skip to content

Instantly share code, notes, and snippets.

View DereC4's full-sized avatar
🇹🇼
coding

Derek DereC4

🇹🇼
coding
View GitHub Profile

Tutorial of Downloading and Building the CoreProtect Plugin

This tutorial will explain from nothing how to build/create the CoreProtect plugin or 1.21 from it's source code on GitHub.

I am assuming you don't know anything and don't have anything installed and are using a Windows device.

Prerequisites

Watch these tutorial videos (very short).

  • You must use Java JDK 21. Download here.
@veb
veb / PerlinNoise.py
Created September 10, 2015 17:43
Perlin like noise with Python and pygame
import pygame
import math
def findnoise2(x,y):
n = int(x) + int(y) * 57
allf = 0xFFFFFFFF
an = (n << 13) & allf
n = (an ^ n) & allf
nn = (n*(n*n*60493+19990303)+1376312589)&0x7fffffff
return 1.0-(float(nn)/1073741824.0);