• 🏆 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!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece!🔗 Click here to enter!

zoom out the camera

Status
Not open for further replies.
Level 12
Joined
May 7, 2008
Messages
335
does anyone know how to zoom out the camera in the mpq files?
I don't know about MPQ, but I'm using this for the ingame control of the camera and it's MUI friendly.


  • Zoom
    • 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 7 (Green) types a chat message containing -zoom as A substring
    • Conditions
      • (Substring((Entered chat string), 1, 5)) Equal to -zoom
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Substring((Entered chat string), 1, 6)) Equal to -zoom
          • (Integer((Substring((Entered chat string), 7, (Length of (Entered chat string)))))) Greater than or equal to 1000
          • (Integer((Substring((Entered chat string), 7, (Length of (Entered chat string)))))) Less than or equal to 3500
        • Then - Actions
          • Camera - Set (Triggering player)'s camera Distance to target to (Real((Substring((Entered chat string), 7, (Length of (Entered chat string)))))) over 1.00 seconds
        • Else - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • (Integer((Substring((Entered chat string), 7, (Length of (Entered chat string)))))) Greater than or equal to (3500 + 1)
            • Then - Actions
              • Camera - Set (Triggering player)'s camera Distance to target to 3500.00 over 1.00 seconds
            • Else - Actions
 
Status
Not open for further replies.
Top