• 0

    posted a message on What is the actual speed of attack if you set period duration to 0?

    @Vexal: Go

    might be 0.064 since this is the limit for periodic triggers and waits, but its only an idea^^

    Posted in: Miscellaneous Development
  • 0

    posted a message on Custom Minimap??

    minimaps are quite easy.

    first: do you want a minimap that only shows a small part of the entire map and is moving itself with the player in the center or a minimap that shows the entire map and the players position?

    Posted in: Miscellaneous Development
  • 0

    posted a message on Check for updates?

    hello,

    it seems like the game doesnt check for updates when the editor gets opened. there is even an option in the editor "check for updates at startup", but its enabled.

    when patch 1.01 released i tested it and it didnt update until i started sc2.exe. i think its a but and it should be fixed, because otherwise its possible to map with an old editor version, what really sucks.

    Posted in: Galaxy Editor Bugs and Feedback
  • 0

    posted a message on Add point to point

    @beacon666: Go

    you have two points right?

    then you add "x of point1" to "x of point2" and same with y. then you create a new point at x1+x2/y1+y2

    "x/y of point" are functions.

    Posted in: Galaxy Scripting
  • 0

    posted a message on Player names on health bar?

    what healthbar are you talking about?

    Posted in: Miscellaneous Development
  • 0

    posted a message on Add point to point

    use x and y of point and add it.

    Posted in: Galaxy Scripting
  • 0

    posted a message on [Misc] Video: Creating your own loading screen

    you can also use jpgs for loadings screens.

    just import it as an jpg, save the map. then rename the file to "filename.tga" instead of "filename.jpg" and save again.

    after that you should be able to select it as custom loading screen and it should work ingame, too.

    greez :)

    Posted in: Tutorials
  • 0

    posted a message on Adding stats by dialog buttons

    @peekuhchew: Go

    yes. just enable the hidden flag in the buff itself.

    Posted in: Miscellaneous Development
  • 0

    posted a message on walk animation and shooting missles?

    ok thanks guys, im very happy with the movement right now.

    has anyone an idea for the missles? is it possible to create missles at a specific point and fire them in a x/y(Z?) direction?

    addicionally, is there an ability that could fit to simulate a jump?

    greez

    Posted in: Miscellaneous Development
  • 0

    posted a message on walk animation and shooting missles?
    Quote from tigerija: Go

    Can we see video how this works in action ?

    im working on an entire project so videos will come to a later stage. progress is very good.

    btw: does anyone know if parameters will reset or not after a wait? do i need to write it in a local variable or is it ok like it is now? (in my tests it worked but i donno if it could be overwritten in mp games)

    Posted in: Miscellaneous Development
  • 0

    posted a message on walk animation and shooting missles?

    @tigerija: Go

    i just have solved it.

    it seems not to be possible to check if an actor is playing a specific animation (or i just missed it) and the options also seem to have no effect. so i created an own function that solves the problem

    play walk animation
        Options: Action
        Return Type: (None)
        Parameters
            unit = No Unit <Unit>
        Grammar Text: play walk animation(unit)
        Hint Text: (None)
        Custom Script Code
        Local Variables
        Actions
            General - If (Conditions) then do (Actions) else do (Actions)
                If
                    wasd.walkanimplaying[(Owner of unit)] == false
                Then
                    Animation - Play Walk animation for (Actor for unit) as Default, using No Options options and Default Time blend time
                    Variable - Set wasd.walkanimplaying[(Owner of unit)] = true
                    General - Wait 0.6 Real Time seconds
                    Variable - Set wasd.walkanimplaying[(Owner of unit)] = false
                Else
    

    the wait time must fit the walk animation time. it looks perfect now. :) for sure this only works if every player only has one hero/unit.

    Posted in: Miscellaneous Development
  • 0

    posted a message on walk animation and shooting missles?

    noone? =/

    Posted in: Miscellaneous Development
  • 0

    posted a message on Starcraft 2 Forums are filled with trolls.

    @RodrigoAlves: Go

    so what? the official forums are always full of trolls.

    blizzard knows that its not perfect and i think they will change it. they will listen to the mappers i hope ~

    Posted in: General Chat
  • 0

    posted a message on Camera Yaw working yet?

    @LazyCoder: Go

    it seems to be fixed.

    Posted in: Miscellaneous Development
  • 0

    posted a message on walk animation and shooting missles?

    ok i see i need to be a bit more specific to avoid misunderstandings :D

    the problem is, that i want a unit to walk backwards and strafe left and right. a unit can only move where its looking at, so i used the "move instantly" function and enabled blending, so the unit is "sliding" to the new position. im very happy with that, the only problem is that the unit doesnt play any animation during that and thats a bit strange to watch :D

    so, everytime the unit slides left/right or moves backwards i order the actor of the unit to play the walk animation. but the trigger that checks if the A, S or D key is pressed fires very often, so the animation is played about 20 times a second if i move left or right or backwards. this is what i dont want. so the actor should only play the "walk" animation again if it isnt playing it yet.

    i just dont know how to prevent the actor of overwriting the last animation with the new one. it should wait until the first animation is finished.

    greez

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