• 0

    posted a message on Reviving StrikeCraft

    I could do testing! I have some experience in the editor. My own project comes first when it comes to the actual work though.

    Edit: my intenet connection is slow, since I'm sitting on a 3g modem in europe, but I guess I can always test some basic logic, as well as the experience of players with high latency.

    Posted in: Team Recruitment
  • 0

    posted a message on [EU] HercMerc

    Resently, I have been working on a 2 player/coop/rpg/squad/multiple minimission system and have published it on the EU Battle.net server under the name HercMerc. I would love to get some input on this project. I got some from players. Some like it - others dont understand it and use ugly words. So... please play try it and give me some feedback!

    Three map types:

    1. Hercmerc Homebase: map with stores and functions to edit squad and upgrades.(online)
    2. HercMerc Mission: complete random missions to earn spacebucks. (2 missions online, 3 missions ready but not uploaded, 6 more under developement)
    3. HercMerc Stronghold: (still under development). 2 team pvp. Play against other HercMerc squads. Map style will create a temporary squad that is destroyed when game ends (im no policeman). Team Defend has bunkers where they can spawn. Team Assault has beacons where they can spawn. When team Assault kills a bunker it transforms into a beacon. After 5 minutes (or if all bunkers are destroyed) game switches and Assault Team becomes Defend Team.

    Play by:

    1. Find one friend and make a party (they are all 2 player coop)
    2. Load Homebase and buy stuff (as a party)
    3. Play mission (as a party)
    4. Buy more stuff (as a party) etc...

    Your mission-squad is personal. Bankfile is completely open. cheaters wont be policed :) The PvP squad is temporary

    Posted in: Map Feedback
  • 0

    posted a message on Filtering out weapons from "unit created" event

    @Monkalizer: Go

    I solved it. I had to create a local variable containing the "Created unit". This could then be used in a condition to filter out specific unitTypes. I have to create one condition for every weapon though. Using the "event unit" or "last created unit" did not work.

    Posted in: Triggers
  • 0

    posted a message on Filtering out weapons from "unit created" event

    Hello,

    My goal is to create a trigger that stores some statistics every time a new unit is created. However, the "unit created" event also reacts to projectiles being created (fired). A normal battle between some stalkers will fire enormous amounts of "StalkerWeapons created" events. Is there some way to filter out all units of weapon-type?

    Posted in: Triggers
  • 0

    posted a message on Bank: store a unit name as a string

    @Monkalizer: Go

    I decided to use a switch with some focus unit types. Its not perfect, but it will do. The bank-output is now:

        <Section name="unitDeaths">
            <Key name="122">
                <Value string="[5,100.776,42.0667,219.5,other]"/>
            </Key>
            <Key name="101">
                <Value string="[5,101.503,44.7058,213.5,Marine]"/>
            </Key>
            ...
        </Section>
    
    Posted in: Triggers
  • 0

    posted a message on Bank: store a unit name as a string

    @SBeier: Go The problem with the Unit Type - Unit Type of Unit is that it will create a bank element like this:

        <Section name="foo">
            <Key name="foo">
                <Type string="InfestedTerran"/>
                <Shields fixed="0"/>
                <Life fixed="0"/>
                <Energy fixed="0"/>
            </Key>
        </Section>
    

    And since I'm only interested in the unit name (or other form of ID) I cant access the string. Do you know any way to retreive the Type element from that data?

    I had the gigantic if/switch in mind as well. I would prefer do avoid it if possible...

    Posted in: Triggers
  • 0

    posted a message on Bank: store a unit name as a string

    I'm making a trigger that fires on a unitDeath event. The event will result in a printout to a file with the following information: [player, x-coord of death, y-coord of death, gametime, unit-type-name]

    I succeeded to make a printout with everything except the last element: unit-type-name. An example:

        <Section name="unitDeaths">
            <Key name="1">
                <Value string="[6,100.313,45.375,4.0625,]"/>
            </Key>
            <Key name="3">
                <Value string="[6,98.9685,30.9587,14.9375,]"/>
            </Key>
            <Key name="2">
                <Value string="[6,106.329,50.6147,4.9375,]"/>
            </Key>
        </Section>
    

    But when it comes to the unit-type-name i fail. Is there some way to retreive a specific units type-name as a string, if you have the unit as such?

    Posted in: Triggers
  • 0

    posted a message on Feedback wanted: "Invasion of New Uppsala"

    Hi,

    I made a map called Invasion of New Uppsala, available in blizzards list of custom maps. Now, im looking for some feedback on how to improve it before I call it "finished".

    It's a survival type map in a urban environment. You and a friend will play as Terran against 30 Zerg waves over 30 minutes. Gas is limited: the only way to harvest it is to kill zombies. The gas-per-zombie count increases for each 10 waves.

    Its open for everyone to edit.

    Here is a screenshot of the scenery: https://lh6.googleusercontent.com/-uSnRS_pAMog/ToDR_N9xbfI/AAAAAAAAAfo/gMRaBh1_Q0o/s512/Screenshot2011-09-25%252011_39_24.jpg

    Here is some infographics https://lh4.googleusercontent.com/-e3dpsIY7cCQ/ToDSE5Io5_I/AAAAAAAAAfs/d3ab2r5DrGs/infographics.png

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