• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

How can i do so players can see...

Status
Not open for further replies.
Level 1
Joined
Dec 24, 2007
Messages
3
How can i do so players can see everything at map.. i mean how to disable the dark fog :p tell me if you dont understand, i can try describe it better :wink:

Edit: How can i do like a player get ex: 5 coins per kill.... (TD map)
 
Last edited:
Level 5
Joined
Nov 12, 2007
Messages
134
To disable fog:

  • Visibility
    • Events
      • Map initialization
    • Conditions
    • Actions
      • Visibility - Disable fog of war
      • Visibility - Disable black mask
For the bounty:

All units give 5 gold:

  • Gold
    • Events
      • Unit - A unit Dies
    • Conditions
      • ((Dying unit) belongs to an enemy of (Owner of (Killing unit))) Equal to True
    • Actions
      • Player - Add 5 to (Owner of (Killing unit)) Current gold
Unit-type gives 5 gold:

Object Editor--->Units--->Stats--->Gold Bounty Awarded - Base--->5

If the unit belongs to a user, you'll also have to do this:

Scenario--->Forces--->Use Custom Forces--->Fixed Player Settings

  • Gold
    • Events
      • Map initialization
    • Conditions
    • Actions
      • Player Group - Pick every player in (All players) and do (Player - Turn Gives bounty On for (Picked player))
 
Last edited:
Status
Not open for further replies.
Top