can you help me how to make a Command to change the weather at the begining of the battle ?? i heard about function on battlesetup to change the weather can any help me ??
Try this, replacing REPLACETHIS with an integer between 1 and 4 (1 = hailstorm, 2 = rain, 3 = sandstorm, 4 = sun): Code (text): battleSetup : function(a, b, c) { sys.prepareWeather(c, REPLACETHIS) },
well how about this... if i put the battlesetup event in my script and make a command /weather rain battleSetup : function(a, b, c) { sys.prepareWeather(c, weathervar) }, if command=="weather"{ if commonData == Rain{weathervar=2)} if commonData == Hail{weathervar=1)} if commonData == sun{weathervar=4)} if commonData == sand{weathervar=3)} } and what's a and b means? is this will working ???