Starting Units And Chooser help

Aaron7772

BattleForums Junior Member
Joined
Aug 9, 2005
Messages
139
Reaction score
0
Location
At My Location
Ok, how do you make it so you dont start with a town hall and 5 peasants, but instead start with a sheep that allows you too pick your hero from a hero picker? thanks for the help
 

tassadar920

Member!
Joined
May 18, 2003
Messages
2,048
Reaction score
0
Location
My house
Take away the trigger in the trigger section that's called "Melee Map Initialization", you will no longer spawn a town hall and peasants.

Then create triggers for when units walk onto the region ~100 spaces around each hero picker it gives them a hero (and kills the entering unit), and then give each player a sheep in the middle of the heroes.
 

Aaron7772

BattleForums Junior Member
Joined
Aug 9, 2005
Messages
139
Reaction score
0
Location
At My Location
....oh no!! i dont understand a THING you just said! i deleted it, but you confused me with the rest! i want to have the sheep not able to move, but permanatly stuck next to the hero chooser!
 

ChrisH36

Guy with Most Posts on Quiet Board.
Joined
May 20, 2003
Messages
15,042
Reaction score
4
Location
Temple Prime, Sarajevo
-Copy a footman
-Change model file to sheep
-Give him invulernable(neutral) as an unit ability
-Select neutral on the brush palette
-Slap sheep next to hero chooser

This will cause the sheep not to move.

By trigger:
If you had kept the melee initialization. You can change the part about town hall and peasents and replace it with just teh sheep.
 

tassadar920

Member!
Joined
May 18, 2003
Messages
2,048
Reaction score
0
Location
My house
What excatly do you mean by hero picker here, are you saying a building where you buy a hero? Or a bunch of those circles where you walk on them?
 

ChrisH36

Guy with Most Posts on Quiet Board.
Joined
May 20, 2003
Messages
15,042
Reaction score
4
Location
Temple Prime, Sarajevo
Yeah, I want to know too. That part kinda confused me a bit. It sounds more like a unit, though.
 

Aaron7772

BattleForums Junior Member
Joined
Aug 9, 2005
Messages
139
Reaction score
0
Location
At My Location
i dont wanna sound like a copy cat but....thats what everyone else did. Juliens, they had teh boats. Ruels They had teh naked people. Proximo's they have the circle thing.

If i knew to pints of poo from a gallon of chocalate pudding about triggers, i would do the circle thing :hbut
 

tassadar920

Member!
Joined
May 18, 2003
Messages
2,048
Reaction score
0
Location
My house
Why don't you try something cooler than all those hero picker methods, take any unit at all that can attack at range, and give them 0 movement speed and put them in the center of all your heroes. Give the heroes to neutral passive so they don't do anything stupid while we choose heroes. Also make the choosing units buildings (just check that box in the object eitor)

Then make this trigger:

(the condition is: "Boolean Check: Unit - Unit Classification Check & Unit - Unit Type Classification Check")

Code:
Hero Spawning
    Events
        Unit - A unit Dies
    Conditions
        ((Triggering unit) is A Hero) Equal to True
        ((Unit-type of (Killing unit)) is A Structure) Equal to True
    Actions
        Unit - Create 1 (Unit-type of (Dying unit)) for (Owner of (Killing unit)) at (Position of (Dying unit)) facing Default building facing degrees
        Unit - Kill (Killing unit)
It's that simple :p.
If you want the heroes to spawn at a specific place, replace the value "(Position of (Dying Unit))" which is a region, with a region you created in the editor.

Forgot about having a second trigger that turns off the first one, something like this:

Code:
Turn of Spawning
    Events
        Time - Elapsed game time is 60.00 seconds
    Conditions
    Actions
        Trigger - Turn off (Hero Spawning <gen>)
 

Aaron7772

BattleForums Junior Member
Joined
Aug 9, 2005
Messages
139
Reaction score
0
Location
At My Location
wow...that turned out really good thank you!!! yo, i made a different map on warcraft othe then the one with the heroes. Its called "Hide And Fight" if you see someone hosting it, or me hosting it, join! :D :D :D
 

ChrisH36

Guy with Most Posts on Quiet Board.
Joined
May 20, 2003
Messages
15,042
Reaction score
4
Location
Temple Prime, Sarajevo
But take my advice into consideration if you want to make buildings on angles.
 

NewPosts

New threads

Top