Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO 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
Top