• 🏆 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!

[General] How do you create observers?

Status
Not open for further replies.
Level 32
Joined
Apr 2, 2013
Messages
3,954
Hi fellow bee, (cuz its hive) I need assistance. So I don't know how to create observers if you already have forces. Ofcourse if there are no forces there is an option to select 'observer', but you can select that option. How do you create 'preset' observers?

Thx its for my map Battle for Althias Lake Beta on epicwar.com.:grin:
 
Level 32
Joined
Apr 2, 2013
Messages
3,954
Yes but, if I host on battle.net (I host on Mbot), I dont get to change the advanced options. I made another force on my map called 'Observers' and I dont know how to make them observers from start (preset). I believe a DotA version has a force just for observing. Thats how I want to do it so I can edit my BETA's more efficiently.
 
Level 13
Joined
Mar 24, 2013
Messages
1,105
I don't know what or how your map works, but to make a observers--

You could have the player wanting to observe type -obs
This will then run multiple triggers removing this player from all aspects of the game so no units spawn for them/they are not allied or unallied with anyone and do not gain or lose gold and then disable fog of war for the observing player.
 
Level 29
Joined
Oct 24, 2012
Messages
6,543
here is how to make observers in game.
  • Observer
    • Events
      • Player - Player 1 (Red) types a chat message containing -obs as An exact match
      • Player - Player 2 (Blue) types a chat message containing -obs as An exact match
      • Player - Player 3 (Teal) types a chat message containing -obs as An exact match
      • Player - Player 4 (Purple) types a chat message containing -obs as An exact match
      • Player - Player 5 (Yellow) types a chat message containing -obs as An exact match
      • Player - Player 6 (Orange) types a chat message containing -obs as An exact match
      • Player - Player 7 (Green) types a chat message containing -obs as An exact match
      • Player - Player 8 (Pink) types a chat message containing -obs as An exact match
      • Player - Player 9 (Gray) types a chat message containing -obs as An exact match
      • Player - Player 10 (Light Blue) types a chat message containing -obs as An exact match
      • Player - Player 11 (Dark Green) types a chat message containing -obs as An exact match
      • Player - Player 12 (Brown) types a chat message containing -obs as An exact match
    • Conditions
    • Actions
      • Set tempTrigPlayer = (Triggering player)
      • Custom script: call SetPlayerState( udg_tempTrigPlayer, PLAYER_STATE_OBSERVER, 1)
 
Status
Not open for further replies.
Top