Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

[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