• 0

    posted a message on Infested Arena - Sc2 Custom Game Commentary

    This map is pretty well done but I think it would be much better if income and xp were automatically split among all players. Right now if one player gets a head start in buying AoE skills, a few rounds later that person will be getting 80-90% of all kills (and thus XP and money.) As a consequence, the ONLY viable strat right now is to max out your aoe ability first.

    Posted in: Map Review
  • 0

    posted a message on [Trigger] Pick each player in player group/Current player

    I still can't figure out what the hell you're even asking here. The best I can guess is that it's a single player map and you're trying to get the player number of the human player? If that's the case it's always 1.

    Posted in: Triggers
  • 0

    posted a message on [Trigger] Pick each player in player group/Current player

    Players are just integers. There is no "Player" data type.

    Posted in: Triggers
  • 0

    posted a message on [solved][data] Using "walk slow" animation for marine?

    If you want it to replace the normal animation under the Marine actor open the Baselines field and then set the Walk baseline to "Walk Slow"

    Posted in: Data
  • 0

    posted a message on [solved][data] additional shield damage?

    Vital Bonus

    Posted in: Data
  • 0

    posted a message on Conversation choices
    Quote from voodude2008: Go

    @RileyStarcraft: Go

    What about the three branching missions (Nova vs. Tosh, Hanson vs Protoss, etc)? Or is this something entirely different? Hard to believe they would miss implementing something like that.

    Those aren't done via conversations. They just create two clickable units and wait with triggers to see which one you click on.

    Posted in: Data
  • 0

    posted a message on Conversation choices

    I've been playing with the conversation engine and have it mostly figured out at this point, except for one thing - I can't get choices to work. The conversation skips right over any choice nodes. Seeing as there aren't any choices (that I recall) in any of the campaign conversations I'm starting to think choices are unimplemented.

    So has anyone discovered otherwise?

    edit: Just to confirm I checked every conversation in the story mode map and not one of them has a single choice node. Based on this I'm definitely just going to assume it's not implemented. Disappointing.

    Posted in: Data
  • 0

    posted a message on Is it bad to use a while loop without any wait?

    The entire purpose of having triggers is that you don't need to implement game loops whether they be monolithic or threaded. You're on a completely wrong approach.

    Posted in: Triggers
  • 0

    posted a message on Reveal Area (any reveals) reveals entire map problem

    Doesn't cinematic mode reveal the entire map for everyone while its on?

    Posted in: Miscellaneous Development
  • 0

    posted a message on General Warfield's model

    Story mode models do not have standard animations so no, they cannot be used unless you either don't need them to be animated (i.e. as doodads) or you animate them yourself in a 3d modeling program.

    Posted in: Data
  • 0

    posted a message on Is there a Validator to Check buff?

    @Zsteven44: Go

    Yes look again. Unit Compare Behavior Stack Count.

    Posted in: Miscellaneous Development
  • 0

    posted a message on hold fire

    In the Behavior tab of the Modification field for a buff behavior it's possible to enable the "Passive" state, which temporarily prevents the unit from acquiring targets. This is how the ghost's hold fire ability is implemented.

    Posted in: Data
  • 0

    posted a message on How can i make a weapon, that once fired, destroy the fiering unit (without death effect)

    I'm assuming he wants a data editor solution as this is the data forum.

    The "Suicide - Remove" effect will remove the caster unit from the game without playing a death animation. Add this to the end of your effect chain.

    Posted in: Data
  • 0

    posted a message on change green outline graphic in unit info pane

    It's called the wireframe. The field is "Wireframe" under the unit's actor.

    Posted in: Miscellaneous Development
  • 0

    posted a message on Weapon Attack Mechanic

    Damage point is a time delay in between the WeaponStart.AttackStart actor event firing and the weapon effect being triggered. Its used mainly for syncing attack animations, so the projectile leaves at the right point in the animation, for example. I believe backswing is the opposite, it's the delay in between the effect occuring and the WeaponStop.AttackStop actor event firing. (I could be wrong on this one, it's just a guess.)

    A random delay in between random delay minimum and random delay maximum is added to the period each time you attack. The main reason here is so if you have a huge group of, say, marines, their attack sounds and animations don't sync up perfectly, which looks unnatural.

    Reload period is the minimum time after one attack stops before the next can start. Its mostly useful if you have a channeled attack and you want a delay between stopping the attack on one target and attacking the next (because the period probably expired while channeling.)

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