• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[718] Snow

Junior Spellweaver
Joined
Sep 23, 2013
Messages
135
Reaction score
21
Shadi Darkness - [718] Snow - RaGEZONE Forums



Open Class443.java and find:
Code:
if (anInt5595 * -620399085 < 0)
Below this, you should see:
Code:
			if (anInt5595 * -620399085 < 0)
				anInt5595 = 0;
			else if (-620399085 * anInt5595 > 255)
				anInt5595 = -1574873371;
			if (656695887 * anInt5600 < 0)
				anInt5600 = 0;
			else if (anInt5600 * 656695887 > 255)
				anInt5600 = 43596369;
Replace the 255s with snow.
Code:
if (anInt5595 * -620399085 < 0)
				anInt5595 = 0;
			else if (-620399085 * anInt5595 > snow)
				anInt5595 = -1574873371;
			if (656695887 * anInt5600 < 0)
				anInt5600 = 0;
			else if (anInt5600 * 656695887 > snow)
				anInt5600 = 43596369;
Now above that bunch of code, add the following:
Code:
			Date date = new Date();
			int snow = 255;
			if (date.getMonth() == 11 || date.getMonth() == 0 && date.getDate() <= 27)
				snow = -255;
Done


By the Way Don't forget to import.
Code:
import java.util.Date;
 
Back
Top