Downloads containing hjetc.j2as

Downloads
Name Author Game Mode Rating
TSF with JJ2+ Only: Anniversary Bash 21 Levels Jazz2Online Multiple N/A Download file
JJ2+ Only: Enter the ChaosFeatured Download FireSworD Battle 8.2 Download file

File preview

jjPAL palette;
int hue, sat, light;

void onLevelLoad() {
	palette.load("ICJungS.j2t");
	for (int n = 96; n <= 254; n++) {
		hue = jjPalette.color[n].getHue();
		sat = jjPalette.color[n].getSat();
		light = jjPalette.color[n].getLight();
			
		if (n < 176 || n > 207) palette.color[n].setHSL(hue, sat, int(light * 1.5));
	}
	palette.apply();
	
	jjObjectPresets[OBJECT::SMOKERING].lightType = LIGHT::BRIGHT;
	jjObjectPresets[OBJECT::SMOKERING].light = 10;
}