warcraft dota map editors
Warcraft 3 Editor weather trigger help!?
I am trying to make a map with weather that people can choose. I want to make it so that red can have it snowing, blue can have it raining, ect. I use GUI not Jazz. I know that in Ice Frog did it in DotA, but I think he uses Jazz.
JASS*
Hi,
This trigger will let red set the weather to snow:
======================================
3ICE’s Weather Demo Trigger
—-Events
——–Player – Player 1 (Red) types a chat message containing -snow as An exact match
—-Conditions
—-Actions
——–Environment – Create at (Playable map area) the weather effect Northrend Snow (Light)
======================================
By creating copies of this trigger and modifying them, you can easily achieve what you want.
–3ICE
p.s.: If you want two or more players be able to set the weather to snow, don’t create a new trigger for each of them, simply add a new event in the same trigger. example:
======================================
3ICE’s Weather Demo Trigger With Many Players
—-Events
——–Player – Player 1 (Red) types a chat message containing -snow as An exact match
——–Player – Player 2 (Blue) types a chat message containing -snow as An exact match
——–Player – Player 3 (Teal) types a chat message containing -snow as An exact match
——–Player – Player 4 (Purple) types a chat message containing -snow as An exact match
——–Player – Player 5 (Yellow) types a chat message containing -snow as An exact match
——–…
—-Conditions
—-Actions
——–Environment – Create at (Playable map area) the weather effect Northrend Snow (Light)
======================================