• 0

    posted a message on [MAP] No Mans Land Survival

    @vincentgraymore: Go

    This map is so much more awsome now that it is in version 4, i have tested it quite abit this map its so fun to try and get that last boss down or try and get an economy in wave so you can survive. Awesome map, looking forward to next projects from Vincent (cough nothing hinted here <.<)

    Posted in: Project Workplace
  • 0

    posted a message on [MAP] No Mans Land Survival

    @vincentgraymore:

    i have played this map and its awesome

    Posted in: Project Workplace
  • 0

    posted a message on Trouble making custom ui build
    Quote from Toukichiro: Go

    I am also doing something similar to this and interested if their a work around.... Do u know if u can make a object follow the mouse? Than you could just create actors that are sorta transparent with the footprint loading on top of that...

    i still use the bad solution. i hope there will be something you can use in the next mapeditor.

    Posted in: Miscellaneous Development
  • 0

    posted a message on Trouble making custom ui build

    I have some trouble with my map,

    we are creating a build system from custom ui alone.

    so the problem i cant find a solution for is.

    i want to click a dialog button then i want a model of the building faded like when you click build on a normal buildability.

    so if i press the button that is labeled pylon i would get a pylon following my mouse so i can place my tower.

    right now i have it working like this. It is a suboptimal solution but onw that works right now. i would gladly recieve some help on how to do this in a better way, and what i would like the most is for it to behave like a normal build ability.

    Trigger 002
        Events
            Dialog - Any Dialog Item is Clicked by Player Any Player
        Local Variables
        Conditions
            (Used dialog item) == Button[0]
        Actions
            Variable - Set ClickedButton[0] = true
    
    
    <</code>><<code lua>>
    Trigger 003
        Events
            UI - Player Any Player clicks Left mouse button Down.
        Local Variables
        Conditions
        Actions
            General - If (Conditions) then do (Actions) else do (Actions)
                If
                    ClickedButton[0] == true
                Then
                    Unit - Order Builder[0] to (Probe - Warp in Nexus targeting (Point((Mouse X position clicked in the world), (Mouse Y position clicked in the world)))) (Replace Existing Orders)
                    Variable - Set ClickedButton[0] = false
                Else
    
    Posted in: Miscellaneous Development
  • To post a comment, please or register a new account.