• 0

    posted a message on Timer & Waves

    I'm using Order Targeting Point.

    Posted in: Miscellaneous Development
  • 0

    posted a message on Movement command.

    Look at the Timer & Wave thread, your answer is there

    Posted in: Miscellaneous Development
  • 0

    posted a message on Boss Timer

    You’ve got these triggers available to play with the boss bars.

    • Display Boss Bar
    • Set Boss Bar Maximum Value
    • Set Boss Bar Current Value
    • Set Boss Bar Boss
    • Move Boss Bar
    • Show/Hide Boss Bar
    • Refresh Boss Bar

    All the Boss Bar code is a library you and me could write. It uses the Dialog functions to make the display.

    • Dialogs
      • Create Dialog
      • Show/Hide Dialog
      • Set Dialog Title
      • Last Created Dialog
      • Dialog Is Visible
      • Dialog Title
    • Dialog Size And Position
      • Set Dialog Size
      • Move Dialog
      • Attach Dialog To Dialog
      • Set Dialog Fullscreen
      • Dialog Width
      • Dialog Height
      • Dialog Offset X
      • Dialog Offset Y
      • Dialog Anchor
      • Dialog Relative Anchor
      • Relative Dialog
      • Dialog Is Fullscreen
    • Dialog Tools
      • Destroy All Dialogs
      • Destroy Dialog
      • Set Subtitle Position Override
      • Clear Subtitle Position Override
      • Set Dialog Offscreen
      • Dialog Is Offscreen
      • Dialog Is Modal
      • Show/Hide Dialog Background
      • Dialog Background Image Is Visible
      • Dialog Background Image
      • Set Dialog Transparency
      • Dialog Transparency
      • Set Dialog RTT Channel
      • Dialog Channel
    • Dialog Items
      • Create Dialog Item
      • Create Dialog Item From Template
      • Show/Hide Dialog Item
      • Enable/Disable Dialog Item
      • Set Dialog Item Text
      • Last Created Dialog Item
      • Dialog Item Is Visible
      • Dialog Item Is Enabled
      • Dialog Item Text
      • Dialog Item Is Used
      • Used Dialog Item
      • Dialog Item Event Type
    • Create Specific Dialog Item Actions
      • Create Dialog Item (Achievement)
      • Create Dialog Item (Button)
      • Create Dialog Item (Check Box)
      • Create Dialog Item (Image)
      • Create Dialog Item (Label)
    • Dialog Item Size And Position
      • Move Dialog Item
      • Attach Dialog Item To Dialog Item
      • Set Dialog Item Rotation
      • Set Dialog Item Full Dialog
      • Set Dialog Item Size
      • Dialog Item Width
      • Dialog Item Height
      • Dialog Item Offset X
      • Dialog Item Offset Y
      • Dialog Item Anchor
      • Dialog Item Relative Anchor
      • Relative Dialog Item
      • Dialog Item Is Full Dialog
    • Dialog Item Values
      • Internal
      • Set Dialog Item Current Value
      • Set Dialog Item Minimum Value
      • Set Dialog Item Maximum Value
      • Set Dialog Item Checked
      • Set Dialog Item Edit Value
      • Dialog Item Current Value
      • Dialog Item Maximum Value
      • Dialog Item Minimum Value
      • Dialog Item Is Checked
      • Dialog Item Edit Value
      • Add List Item
      • Select List Item
      • Selected List Item
      • Count Of List Items
      • Remove List Item
      • Remove All List Items
    • Dialog Item Tools
      • Destroy All Dialog Items
      • Dialog Item Type
      • Set Dialog Item Color
      • Set Dialog Item Style
      • Set Dialog Item Text Writeout
      • Set Dialog Item Text Writeout Duration
      • Set Dialog Item Tooltip
      • Dialog Item Color
      • Dialog Item Style
      • Dialog Item Tooltip
      • Destroy Dialog Item
      • Set Dialog Item Image
      • Set Dialog Item Hover Image
      • Set Dialog Item Image Type
      • Set Dialog Item Blend Mode
      • Set Dialog Item Tiled
      • Set Dialog Background
      • Dialog Item Image
      • Dialog Item Image Type
      • Fade Dialog Item Transparency
      • Set Dialog Item Flash
      • Dialog Item Invoke As Text
      • Dialog Item Invoke As String
      • Set Dialog Item Achievement
      • Set Dialog Item Render Priority
    • Screen Button
      • Internal
      • Display Screen Button
      • Show/Hide Screen Button
      • Flash Screen Button
      • Stop Flashing Screen Button
      • Screen Button Dialog
      • Screen Button
    • Screen Image
      • Internal
      • Display Screen Image
      • Show/Hide Screen Image
      • Pulse Screen Image
      • Stop Pulsing Screen Image
      • Screen Image Dialog
      • Screen Image Dialog Item
    Posted in: Miscellaneous Development
  • 0

    posted a message on Boss Timer

    Blizzard gave us all the code to make boss timer, this is really nice of them :)

    This is only done with normal trigger functions, nothing we could not do ourself. This seems to be really powerful!

    Posted in: Miscellaneous Development
  • 0

    posted a message on Timer & Waves

    Instead of click on "attack" you have to click on the (, yeah this is really dumb!

    For the location, it's just a point you set in the terrain

    Posted in: Miscellaneous Development
  • 0

    posted a message on Some simple questions that no one can seem to answer

    3) You want to edit the Collision attribute. Remove the Ground collision of your Drone and it will not collide anymore with all the ground units. You can define your own type of collision.

    Posted in: Miscellaneous Development
  • 0

    posted a message on Timer & Waves

    You can create a simple pathing using order queue like this:

    Unit - Create 10 Zergling for player 1 at Start Location 001 using default facing (No Options)
    Unit - Order all units in (Last created units) to ( Attack targeting Start Location 002) (Replace Existing Orders)
    Unit - Order all units in (Last created units) to ( Attack targeting Start Location 003) (After Existing Orders)
    Unit - Order all units in (Last created units) to ( Attack targeting Start Location 004) (After Existing Orders)
    

    This way you don't have to create too much triggers and regions.

    Also, instead of uploading your screenshots on random sites, you can just attach your screenshot on your post and it'll automatically generate a thumbnail + big picture.

    Posted in: Miscellaneous Development
  • 0

    posted a message on Templates?
    • In the Trigger Editor:
    • Show Library (Ctrl + Shift + L): The first red button
    • Built-in / Templates / Algorithm / Quick Sort

    There is a quick sort algorithm implemented however I don’t get how to use it. The way I think it works is to copy & paste the Algorithm folder in your map, change the 2 values Scores and ScoreCount with your own variable.

    It seems really lame, if you want to sort other variables you have to copy & paste the whole algorithms again … Is that the way it is intended to be or did I miss something?

    Posted in: Miscellaneous Development
  • 0

    posted a message on Does my avatar load?

    When you look at your file it says

    Quote:

    Internal Server Error (, KeyError('loop',), )

    I've reported the problem to our developer, until then you may remove the loop animation and this hopefully should work.

    Posted in: Off-Topic
  • 0

    posted a message on First look at the editor

    Asomath from hiveworkshop just did a nice overview of the editor.

    http:www.hiveworkshop.com/forums/starcraft-ii-408/look-galaxy-editor-164711/

    Attached some of the screenshots he did.

    Posted in: Miscellaneous Development
  • 0

    posted a message on Items and Heroes

    Little bump because many people are asking about items

    Posted in: Miscellaneous Development
  • 0

    posted a message on Problem with Leaderboard

    Maybe the (Last created leaderboard) isn't set when you are in another trigger. What about setting creating a Leaderboard global variable set to (Last created leaderboard) in the creation trigger.

    And use this variable for the leaderboard instead of (Last created leaderboard).

    Posted in: Miscellaneous Development
  • 0

    posted a message on Problem with Leaderboard

    You are updating the label "Kills". You want to upgrade the value (column 2, row 1) with Text(Kills) :)

    Posted in: Miscellaneous Development
  • 0

    posted a message on Cant figure out how to do a attack-move trigger

    Ateyth, instead of uploading images on some random website you can attach (Add attachment link) them to your post and it will automatically display and scale them :)

    Posted in: Triggers
  • 0

    posted a message on Problem with Leaderboard

    You have to do Leaderboard - Set (Last created leaderboard) item text at column 2 and row 1 to (Text(Kills))

    everytime you want to update the leaderboard.

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