• 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.
  • 💡 We're thrilled to announce that our upcoming texturing contest is in the works, and we're eager to hear your suggestions! Please take this opportunity to share your ideas in this theme discussion thread for the Texturing Contest #34!
  • 🏆 Hive's 7th HD Modeling Contest: Icecrown Creature is now open! The frozen wastes of Icecrown are home to some of Azeroth’s most terrifying and resilient creatures. For this contest, your challenge is to design and model a HD 3D monster that embodies the cold, undead, and sinister essence of Icecrown! 📅 Submissions close on April 13, 2025. Don't miss this opportunity to let your creativity shine! Enter now and show us your frozen masterpiece! 🔗 Click here to enter!

How do I limit boundaries to a certain area?

Status
Not open for further replies.
Level 5
Joined
Feb 23, 2009
Messages
74
Like Mad Balls arena, there are maps where you can't view the entire map in-game. But the actual map itself is much larger than the boundaries set.

So to make a more intriguing and realistic RPG, I want to be able to use it for seperate players. Is it an all player Trigger and does it require JASS?

Thanks in advance.
 
Level 16
Joined
Jul 21, 2008
Messages
1,121
This can be done only with triggers. Here is action example:

  • For each (Integer A) from 1 to 12, do (Actions)
    • Loop - Actions
      • Camera - Set the camera bounds for (Player((Integer A))) to Region <gen>
or

  • For each (Integer A) from 1 to 12, do (Actions)
    • Loop - Actions
      • Camera - Extend the camera bounds for (Player((Integer A))) west by 0.00, east by 0.00, north by 0.00, and south by 0.00
 
Level 5
Joined
Feb 23, 2009
Messages
74
This can be done only with triggers. Here is action example:

  • For each (Integer A) from 1 to 12, do (Actions)
    • Loop - Actions
      • Camera - Set the camera bounds for (Player((Integer A))) to Region <gen>
or

  • For each (Integer A) from 1 to 12, do (Actions)
    • Loop - Actions
      • Camera - Extend the camera bounds for (Player((Integer A))) west by 0.00, east by 0.00, north by 0.00, and south by 0.00

Thanks a lot
 
Status
Not open for further replies.
Top