• Check out the results of the Techtree Contest #19!
  • 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.
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!

Help with zoom trigger

Level 2
Joined
Nov 28, 2025
Messages
9
Hi everyone!
The image is from the following post: [Trigger] Need a simply camera system!

1764352170206.png


I need help creating this trigger from the Set ZoomCam section onwards; I simply can't find it or don't know how to do it.

In any case, if you could incorporate it as is into any map, I would greatly appreciate it.

P.S.: PS: It can also be any zoom system for 12 players.
 
well you can just use your mouse wheel to zoom in and out
but if you do need a trigger for it here you go, ps i also add map for you
  • Camera
    • Events
      • Player - Player 1 (Red) types a chat message containing -zoom as A substring
      • Player - Player 2 (Blue) types a chat message containing -zoom as A substring
      • Player - Player 3 (Teal) types a chat message containing -zoom as A substring
      • Player - Player 4 (Purple) types a chat message containing -zoom as A substring
      • Player - Player 5 (Yellow) types a chat message containing -zoom as A substring
      • Player - Player 6 (Orange) types a chat message containing -zoom as A substring
      • Player - Player 7 (Green) types a chat message containing -zoom as A substring
      • Player - Player 8 (Pink) types a chat message containing -zoom as A substring
      • Player - Player 9 (Gray) types a chat message containing -zoom as A substring
      • Player - Player 10 (Light Blue) types a chat message containing -zoom as A substring
      • Player - Player 11 (Dark Green) types a chat message containing -zoom as A substring
      • Player - Player 12 (Brown) types a chat message containing -zoom as A substring
      • Player - Player 1 (Red) types a chat message containing -ZOOM as A substring
      • Player - Player 2 (Blue) types a chat message containing -ZOOM as A substring
      • Player - Player 3 (Teal) types a chat message containing -ZOOM as A substring
      • Player - Player 4 (Purple) types a chat message containing -ZOOM as A substring
      • Player - Player 5 (Yellow) types a chat message containing -ZOOM as A substring
      • Player - Player 6 (Orange) types a chat message containing -ZOOM as A substring
      • Player - Player 7 (Green) types a chat message containing -ZOOM as A substring
      • Player - Player 8 (Pink) types a chat message containing -ZOOM as A substring
      • Player - Player 9 (Gray) types a chat message containing -ZOOM as A substring
      • Player - Player 10 (Light Blue) types a chat message containing -ZOOM as A substring
      • Player - Player 11 (Dark Green) types a chat message containing -ZOOM as A substring
      • Player - Player 12 (Brown) types a chat message containing -ZOOM as A substring
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Substring((Entered chat string), 7, (Length of (Entered chat string)))) Equal to <Empty String>
        • Then - Actions
          • Skip remaining actions
        • Else - Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • Camera_Distance Greater than 3000.00
        • Then - Actions
          • Set VariableSet Camera_Distance = 3000.00
        • Else - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • Camera_Distance Less than 500.00
            • Then - Actions
              • Set VariableSet Camera_Distance = 500.00
            • Else - Actions
              • Set VariableSet Camera_Distance = (Real((Substring((Entered chat string), 7, (Length of (Entered chat string))))))
      • Camera - Set (Triggering player)'s camera Distance to target to Camera_Distance over 0.20 seconds
 

Attachments

Excelente, muchas gracias:)


EDIT: Sorry, my editor can't open the w3m map; I've seen that it does open w3x maps. Could it be in w3x format please?
 
Last edited:
EDIT: Sorry, my editor can't open the w3m map; I've seen that it does open w3x maps. Could it be in w3x format please?
Maps that are made with the latest patch of WC3 can't be openable on older versions, which is why the issue is occurring. I mean, the latest patch of WC3 that comes with Reforged format, not the older TFT one.
 
EDIT: Sorry, my editor can't open the w3m map; I've seen that it does open w3x maps. Could it be in w3x format please?
Try importing the trigger file in a dummy map. Note that doing this replaces all current triggers in that map. But you can afterwards copy them from the dummy map to yours.
1764425570987.png
 

Attachments

Back
Top