| 09-02-2002, 08:58 PM | #1 |
I wasn't very good with the BW Map Editor, and I'm hopeless with the War3 one... Anyway, heres a style trigger I need... I don't know if anyone here ever played the WorldWar/Diplomacy/Rise of Rome maps on BW, but because I have yet to find a good one, I decided to make my own. These are the triggers I need help with, 1: Map Initization, set a repeating timer for 2 minutes. Now the hard one. 2: Timer hits 0:00, give X number of resources for having a building in a certain location. Umm I'll try to be more specific... Say when you have a building next to a beacon which shows a territory. Then when the timer hits 0:00 you can get like, 1000 gold and 100 lumber for that territory. I'll attach the map so you can look at it... |
| 09-02-2002, 09:12 PM | #2 |
Guest | 1) Start a repeting timer that will expire in 120 seconds. 2) Event: Above Time expires Actions: Pick Every unit in [territory1 Region] matching [whatever building] and do Add 1000 Gold to Owner of Picked unit Pick Every unit in [territory1 Region] matching [whatever building] and do Add 100 Lumber to Owner of Picked unit Etc for each territory. Or, keep variables (probably in an array) as to which player owns which territory and then just do: For 1 to Numberofterritories do Add 1000 Gold to OwerofTerritory[integer A] For 1 to Numberofterritories do Add 100 Lumber to OwerofTerritory[integer A] OwerofTerritory being a player array. |
