• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Things that i forgot to do....

Status
Not open for further replies.
Level 3
Joined
May 17, 2005
Messages
30
Well i asked these questions before but now i can't find the topics so ill just restart? Anyways here are my questions...

1. How do i permanently lock teams at beginning? EX : in game lobby Red , Blue , Teal , Purp are all automatically on same team (team 1)

2. How do i make a triggered monster follow you for a set amount of time? EX: I made this giant tunnel and i want the monster to follow you as soon as you enter it but i can only get him to follow you for a quarter of it.

3. How do i make a computer ally? EX : A ally to just sit there like as buildings for shops and stuff.

4. How do i make a resurrection system? EX : when my hero dies he resurrects instantly at
set position.

5. In a Tavern how can i make it so that each color (Red,Blue,Teal,Purp) Can only choose 1 hero instead of all of them in the tavern?

6. How do i make it so that when i beat the game or beat someone i unlock something? EX: When i kill the final "Boss" How do i make it so that i can suddenly choose a new unit / hero at the tavern.

7. How do i make a hero have a set color instead of being red? EX: Lets say I'm red and i choose my hero is it possible for him to instead of being red he is like... blue or something?

8. Is it possible for me to have a different terrain pallet because the map I'm trying to make requires a dungeon type place but the pallet i have is only grass and dirt...
 
Well i asked these questions before but now i can't find the topics so ill just restart? Anyways here are my questions...

1. How do i permanently lock teams at beginning? EX : in game lobby Red , Blue , Teal , Purp are all automatically on same team (team 1)
Scenario -> Force Properties... -> Use custom forces + Fixed player settings.
Make sure you have checked at least the "Allied" box next to the force

2. How do i make a triggered monster follow you for a set amount of time? EX: I made this giant tunnel and i want the monster to follow you as soon as you enter it but i can only get him to follow you for a quarter of it.
Set creep camp distance to 999999 or make the creep owned by a computer player

3. How do i make a computer ally? EX : A ally to just sit there like as buildings for shops and stuff.
Trigger -> Player - Set Alliance
Or make all those units be owned by neutral passive
Or put the computer in same force as player
4. How do i make a resurrection system? EX : when my hero dies he resurrects instantly at set position.
Trigger:
Event -> Unit - generic unit event -> unit dies
Condition -> Boolean -> Dying unit is a hero
Action ->
Set 'Point' = <your respawn location>
Hero - Revive Dying unit instantly at 'Point'
Custom script: call RemoveLocation(udg_Point)

(make sure you have a variable called "Point" that is a "point" type variable.
5. In a Tavern how can i make it so that each color (Red,Blue,Teal,Purp) Can only choose 1 hero instead of all of them in the tavern?
Give the players a dummy unit that purchases the hero and remove it after the hero has been purchased.
Or make the heroes cost 1 lumber and make sure players only have 1 lumber.
6. How do i make it so that when i beat the game or beat someone i unlock something? EX: When i kill the final "Boss" How do i make it so that i can suddenly choose a new unit / hero at the tavern.
With a trigger
Event: Unit dies
Action: <unlock the stuff here>

for example:
  • Unlock Trigger 001
    • Events
      • Unit - Boss Dies
    • Conditions
    • Actions
      • Neutral Building - Add Firelord to Tavern with 1 in stock and a max stock of 1
7. How do i make a hero have a set color instead of being red? EX: Lets say I'm red and i choose my hero is it possible for him to instead of being red he is like... blue or something?
Object editor -> select your hero -> set "Art - Player color" to something.
Or change the color with a trigger during game.
8. Is it possible for me to have a different terrain pallet because the map I'm trying to make requires a dungeon type place but the pallet i have is only grass and dirt...
Advanced -> Modify Tileset -> Use custom tileset OR just change the tileset entirely
 
Status
Not open for further replies.
Top