• 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.

i have a question guys and girls

Status
Not open for further replies.
Level 14
Joined
Apr 21, 2007
Messages
1,465
If I understood correctly you want to have a hidden computer player. All you need to do is not add the computer in the player properties screen, but add his units and so on and set his alliances via triggers. This will not work for melee maps though.
 
Level 19
Joined
Feb 15, 2008
Messages
2,184
thats sounds hard :S do u know how to do this? can u show me a trigger?

and can u help me with this one same time i gona have burrows and moon wells....

and its 2 teams 1 evil 1 good and i want them to share vission like if this moon well is for computer player i want all to have this food produce....

like if the burrow have 5 in produce i want all on team evil to have 5 in produce?

if u got it O:
 
Level 8
Joined
Mar 12, 2008
Messages
437
  • Set alliance
    • Events
      • Time - Elapsed game time is 0.01 seconds
    • Conditions
    • Actions
      • Player - Make (Player) treat (Player) as an Ally with shared vision
And for the food thing:
  • Food sharing
    • Events
      • Unit - A unit Finishes construction
    • Conditions
      • Or - Any (Conditions) are true
        • (Constructed unit) is a town-hall-type unit
        • (Unit-type of (Constructed unit)) Equal to Farm
        • (Unit-type of (Constructed unit)) Equal to Burrow
        • (Unit-type of (Constructed unit)) Equal to Ziggurat
        • (Unit-type of (Constructed unit)) Equal to Moon Well
    • Actions
      • Player Group - Pick all players in (All allies of (Owner of (Constructed unit))) and do (Actions)
        • Player - Set (Picked player) Food max to ((Owner of (Constructed unit)) Food max)
 
Level 15
Joined
Sep 3, 2006
Messages
1,738
  • Food
    • Events
      • Time - Every 1.00 seconds of game time
    • Conditions
    • Actions
      • Player Group - Pick every player in (All allies of Player 1 (Red)) and do (Actions)
        • Loop - Actions
          • Player - Set (Picked player) Food max to (Player 1 (Red) Food max)
      • Player Group - Pick every player in (All allies of Player 7 (Green)) and do (Actions)
        • Loop - Actions
          • Player - Set (Picked player) Food max to (Player 7 (Green) Food max)
You can also remove the Event and run it from another trigger if you want...Although I doubt you understand what I'm saying.
 
Level 14
Joined
Apr 21, 2007
Messages
1,465
Dude, did you even try to find the tutorial section? All of your 248 posts are related to questions you asked and 90% of those questions are already answered in the tutorial section. I learned 90-95% of the world editor, not including jass, without an internet. You are asking every single question you can think up without even trying to solve it yourself first.
 
Level 19
Joined
Feb 15, 2008
Messages
2,184
Tutorial Submission
Do you wish to submit a tutorial? README before posting!
Submissions are accepted in this forum.
Sub-Forums: "Graveyard"

Information [Tutorial] Triggers (for Dummies)...
by Daduda
Today 01:55 AM Go to last post
284 2,666


General Mapping Tutorials
This board contains tutorials that provide generic mapping information.
Read the Rules before posting.

[Tutorial] Creating High Quality...
by StasMaN
Today 07:20 AM Go to last post
48 616


Trigger (GUI) Editor Tutorials
Contains tutorials concerning the usage of GUI features.
Read the Rules before posting.

[Tutorial] Making a Grenade Type Spell
by PrisonLove
Yesterday 04:52 AM Go to last post
41 395


JASS/AI Scripts Tutorials
Contains tutorials regarding JASS scripting and the AI editor.
Read the Rules before posting.

Beginning JASS Tutorial Series
by Herman
07-18-2008 03:53 PM Go to last post
18 309


2D Art Tutorials
Contains tutorials relating to 2D art creation & design.
Read the Rules before posting.

Complete Icon Tutorial - All...
by Flame_Phoenix
07-15-2008 06:45 PM Go to last post
19 155


3D Modeling Tutorials
Tutorials regarding the creation, animating and editing of 3D models.
Read the Rules before posting.

Modeling and Animation 101
by Tarandan
Today 06:54 AM Go to last post
25 184


Miscellaneous Tutorials

u mean miscellaneous tutorials? i was there and found nothing :S
 
Level 2
Joined
Jul 10, 2008
Messages
6
What do you mean first? There is only one question, how to make a computer not visible in the menu before the game starts. CMarket answered that in the first post.
 
Level 19
Joined
Feb 15, 2008
Messages
2,184
is this right trigger?

  • Good
    • Events
      • Time - Elapsed game time is 0.01 seconds
    • Conditions
    • Actions
      • Player - Make Player 1 (Red) treat Player 2 (Blue) as an Ally with shared vision
      • Player - Make Player 1 (Red) treat Player 3 (Teal) as an Ally with shared vision
      • Player - Make Player 1 (Red) treat Player 4 (Purple) as an Ally with shared vision
      • Player - Make Player 1 (Red) treat Player 5 (Yellow) as an Ally with shared vision
      • Player - Make Player 1 (Red) treat Player 6 (Orange) as an Ally with shared vision
      • Player - Make Player 2 (Blue) treat Player 1 (Red) as an Ally with shared vision
      • Player - Make Player 3 (Teal) treat Player 1 (Red) as an Ally with shared vision
      • Player - Make Player 4 (Purple) treat Player 1 (Red) as an Ally with shared vision
      • Player - Make Player 5 (Yellow) treat Player 1 (Red) as an Ally with shared vision
      • Player - Make Player 6 (Orange) treat Player 1 (Red) as an Ally with shared vision
 
Last edited:
Status
Not open for further replies.
Top