• 0

    posted a message on every three levels

    Actually ignore my previous post. I had the wrong idea. Turning it off and then turning it back on wouldn't solve it. D:

    Posted in: Triggers
  • 0

    posted a message on every three levels

    Add a Turn (Levels) Off trigger before Unit - Set (Picked unit) Experience to (((Picked unit) Experience (Current)) - (Triggering experience gained)) in Exp Removal System 2 and add a Turn (Levels) On after it should do the trick.

    Posted in: Triggers
  • 0

    posted a message on every three levels

    Use standard debugging procedures. Place a Display Text Message before the +1 Mutation Points to differentiate between the two. Then you'd know if one of them ran twice, or if they both ran. I'm guessing the former since it would only make sense that they both run at level 30.

    Posted in: Triggers
  • 0

    posted a message on Trigger from Assets Section Not Working Properly
    Quote:

    Requesting some minor assistance from anyone who is reading this on a technical hiccup. You can read the first post of this thread for more info.

    You need your SCV Select in Arrays. Then change your "Set Last Created DIalog Item == SCV Slect" to "Set Last Created Dialog Item == SCV Select (Picked Player)"

    Posted in: Triggers
  • 0

    posted a message on How do you change how the game starts.

    You'll actually need the Melee Initialization trigger. Use the method I first posted to change the units.

    Posted in: Triggers
  • 0

    posted a message on Trigger from Assets Section Not Working Properly

    Add

                            Variable - Set Player Ready[(Picked player)] = True
    

    inside the If-Then-Else action @ the trigger Timer Expires

    Posted in: Triggers
  • 0

    posted a message on How do you change how the game starts.

    If you mean the starting units of players, then go to the Data Editor -> Races tab -> Starting Units

    Posted in: Triggers
  • 0

    posted a message on Get Unit Current Speed
    Variable - Set int-variable = (Integer(((Triggering unit) Movement Speed (Current))))
    

    Use "Convert Real to Integer", then search for "Unit Property"

    Posted in: Triggers
  • 0

    posted a message on Trigger from Assets Section Not Working Properly

    Just took a look at your map and seen that you haven't organized your map at all. At least use the version I uploaded yesterday please

    http://www.sc2mapster.com/media/attachments/25/358/DefenseTestKenneth.SC2Map

    The key to organization is folders. You are also trying too hard to be variable efficient with the arrays. It hardly decreases your map size, but it does make it a lot more confusing. Look at what I did in my version of your map. You also probably need bank arrays to achieve what you want for the bank areas. I also recommend using constant variables for your dialogs, but I didn't include that in that map I uploaded. I mentioned this in the last post, but here it is again, use Switch Cases instead of a chain of If Then Else's.

    Anyways, I only vaguely looked at your triggers, but right now it seems like the method you are using is wrong. All you need are boolean variables PlayerHasVoted[8] == False, set them to true once they uses one of the dialog items, and then when timer expires, you pick each player in active players, compare if PlayerHasVoted[Picked Player] == true, and if not then set their selection to Core.

    Posted in: Triggers
  • 0

    posted a message on Three Timer Windows

    Each time any player presses one of the two dialog items, all players are shown a dialog. I honestly have no idea what your trigger is trying to accomplish, so it actually might be intended =/

    Posted in: Triggers
  • 0

    posted a message on Three Timer Windows

    I helped you organize your map up to a point. I stopped at the trigger which I renamed "Mode Vote Process". There, the trigger is just too confusing for me. You are basically creating one same dialog that all players can see every time a dialog item is pressed. I also suggest you use Switch Case instead of a chain of If Then Else's on that trigger.

    Posted in: Triggers
  • 0

    posted a message on [Dialog] Custom Dialog Technique

    Best way I've seen to create dialogs so far.

    Thanks

    Posted in: Tutorials
  • 0

    posted a message on Issue order: move to closest unit of type

    A better method is to probably just use the Move command on the unit, hence following it. Test map attached.

    Posted in: Triggers
  • 0

    posted a message on Strange camera bug that happens between players 1 and 2.

    Well, first of all, your event is wrong. Triggering Player is used to recall the player that triggers the event, so you can't have that in Events. Then, the event is Unit - Unit enters Region, so you the triggering thing is a unit, not a player, change the first Camera action to "Apply Arena Cam for player (owner of Triggering Unit)" and the second Camera Action to "Camera - Lock camera input for Player (Owner of Triggering Unit)

    Posted in: Triggers
  • 0

    posted a message on last unit dies trigger

    Hi

    From your description, everything seems to be alright. Can you please post the complete trigger? First, switch the post format to BBCode at the bottom of the reply textbox. Then, copy your triggers as text (highlight all the things in the triggers, then press Ctrl+Shift+C), and then paste it here in [code] format (like this [code] Your Trigger [/code] without the spaces)

    Posted in: Triggers
  • To post a comment, please or register a new account.