Need suggestions for my map

B

BlackAlpha

Guest
I need suggestions on how to improve my map. I'm totally out of idea's.

Heres a short description of the map:
There are 2 teams, red and blue. It's a capture the flag type of game. Everybody is a sniper which kills with 1 hit. To shoot you have to press the attack ground button then click where you want to shoot.

Download the map here.

Latest version is 1.14.
 

Mind

New Member
Reaction score
7
Amazing! I found only one single flaw: It doesn't work.

Forgive my cynicism.
 

Attachments

  • Critical Error.pdf
    283.8 KB · Views: 217
B

BlackAlpha

Guest
It works for me. Redownload it, maybe the file was corrupt. I just found a very horrible bug, I forgot to change the version ingame to 1.08. So I've uploaded it again.

By the way, what kind of window is that? I've never seen that before.

Nevermind, I just noticed that it's a mac, right?
 

Mind

New Member
Reaction score
7
Your map is of considerable quality, in my opinion. If this is your first map, it's very impressive. It is, however, still rather unfinished; It could use some more work.

There is only one neutral building in the map. While these can be easily placed on the map, they often increase the quality of the game significantly.

The ability tooltips are incomplete: You can't read the properties of the hero abilities before learning them.

The terrain is moderately varied, but has no rivers or lakes, which could be interesting. Also, I recommend enabling the players to walk on the cliffs.

There are rather few triggers: There are no special events.

Also, creep camps could make the long march towards the enemy less tedious.

Usually, the word "Hint" in hint messages is written in solid green. To cause text to turn green, use this color code: |cff32cd32TEKST|r. Also, you accidentally forgot to type a space between the words "in" and "front" in the first hint message.
 
B

BlackAlpha

Guest
Thanks, this is my 3rd map. But the first map that is decent in my opinion.

I'll change the terrain and the tooltips but what do you mean with the special events and neutral buildings?

I don't think I'll be adding creeps because I don't see how they would fit into the map.
 

Im_On_56k

Hm...
Reaction score
116
Ideas for your map
(havent had time to play it yet, i will probally have some tonight)

Im not sure if you have this or not but if you do, you can just ignore it.

First blood -Displays the first person killed and gives extra gold to the killer
Double and Triple kill - Kills 2,3 units in a short amount of time for extra gold.

Weather effects, causes your heros to be weaker/stronger due to the weather state.
 

Mind

New Member
Reaction score
7
Neutral buildings include Fountains of Mana, Goblin Merchants, Mercenary Camps, et cetera.
 

0cossin77

Yes, I am awesome.
Reaction score
17
Im_On_56k said:
Im not sure if you have this or not but if you do, you can just ignore it.

First blood -Displays the first person killed and gives extra gold to the killer
Double and Triple kill - Kills 2,3 units in a short amount of time for extra gold.

LOL what is this a mix of halo and unreal tournament? :D anyway i shall test tonight
 
B

BlackAlpha

Guest
I tried to create the double/tripple kill things but it didn't work. If any one knows how to get it to work please tell me.

Nevermind I figured out how to make it work! Now if I only had the Unreal Tournament announcement sounds...
 

0cossin77

Yes, I am awesome.
Reaction score
17
BlackAlpha said:
I tried to create the double/tripple kill things but it didn't work. If any one knows how to get it to work please tell me.

Nevermind I figured out how to make it work! Now if I only had the Unreal Tournament announcement sounds...

if you can wait untill around 8 tonight i may be able to get them for you
 

TFlan

I could change this in my User CP.
Reaction score
64
Heres how i would do the first blood/double kill/triple kill system. I dont have the sounds for them so you will have to do some searching or another nice guy, like me :p, might give you em.

Kill Count
Events
Unit - A unit Dies
Conditions
((Dying unit) is A Hero) Equal to True
Actions
-------- Comment: You will need another trigger that resets Integer_Kill_Counter to 0 after each round ends. --------
-------- Comment: Remember to create this Integer_Kill_Counter as an array of 13. 1 for first blood, 2-13 for players 1-12 --------
-------- Comment: For the extra gold you can change it to what ever you like. --------
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
Integer_Kill_Counter[1] Equal to 0
Then - Actions
Set Integer_Kill_Counter[1] = 1
Game - Display to (All players) the text: First Blood
-------- Put the play sound action here. --------
Else - Actions
If ((Owner of (Killing unit)) Equal to Player 1 (Red)) then do (Set Integer_Kill_Counter[2] = (Integer_Kill_Counter[2] + 1)) else do (Game - Display to (All players) the text: ((Name of (Owner of (Killing unit))) + (has shoot + ((Name of (Owner of (Dying unit))) + head for 10 extra gold!))))
If ((Owner of (Killing unit)) Equal to Player 2 (Blue)) then do (Set Integer_Kill_Counter[3] = (Integer_Kill_Counter[3] + 1)) else do (Game - Display to (All players) the text: ((Name of (Owner of (Killing unit))) + (has shoot + ((Name of (Owner of (Dying unit))) + head for 10 extra gold!))))
If ((Owner of (Killing unit)) Equal to Player 3 (Teal)) then do (Set Integer_Kill_Counter[4] = (Integer_Kill_Counter[4] + 1)) else do (Game - Display to (All players) the text: ((Name of (Owner of (Killing unit))) + (has shoot + ((Name of (Owner of (Dying unit))) + head for 10 extra gold!))))
If ((Owner of (Killing unit)) Equal to Player 4 (Purple)) then do (Set Integer_Kill_Counter[5] = (Integer_Kill_Counter[5] + 1)) else do (Game - Display to (All players) the text: ((Name of (Owner of (Killing unit))) + (has shoot + ((Name of (Owner of (Dying unit))) + head for 10 extra gold!))))
If ((Owner of (Killing unit)) Equal to Player 5 (Yellow)) then do (Set Integer_Kill_Counter[6] = (Integer_Kill_Counter[6] + 1)) else do (Game - Display to (All players) the text: ((Name of (Owner of (Killing unit))) + (has shoot + ((Name of (Owner of (Dying unit))) + head for 10 extra gold!))))
If ((Owner of (Killing unit)) Equal to Player 6 (Orange)) then do (Set Integer_Kill_Counter[7] = (Integer_Kill_Counter[7] + 1)) else do (Game - Display to (All players) the text: ((Name of (Owner of (Killing unit))) + (has shoot + ((Name of (Owner of (Dying unit))) + head for 10 extra gold!))))
If ((Owner of (Killing unit)) Equal to Player 7 (Green)) then do (Set Integer_Kill_Counter[8] = (Integer_Kill_Counter[8] + 1)) else do (Game - Display to (All players) the text: ((Name of (Owner of (Killing unit))) + (has shoot + ((Name of (Owner of (Dying unit))) + head for 10 extra gold!))))
If ((Owner of (Killing unit)) Equal to Player 8 (Pink)) then do (Set Integer_Kill_Counter[9] = (Integer_Kill_Counter[9] + 1)) else do (Game - Display to (All players) the text: ((Name of (Owner of (Killing unit))) + (has shoot + ((Name of (Owner of (Dying unit))) + head for 10 extra gold!))))
If ((Owner of (Killing unit)) Equal to Player 9 (Gray)) then do (Set Integer_Kill_Counter[10] = (Integer_Kill_Counter[10] + 1)) else do (Game - Display to (All players) the text: ((Name of (Owner of (Killing unit))) + (has shoot + ((Name of (Owner of (Dying unit))) + head for 10 extra gold!))))
If ((Owner of (Killing unit)) Equal to Player 10 (Light Blue)) then do (Set Integer_Kill_Counter[11] = (Integer_Kill_Counter[11] + 1)) else do (Game - Display to (All players) the text: ((Name of (Owner of (Killing unit))) + (has shoot + ((Name of (Owner of (Dying unit))) + head for 10 extra gold!))))
If ((Owner of (Killing unit)) Equal to Player 11 (Dark Green)) then do (Set Integer_Kill_Counter[12] = (Integer_Kill_Counter[12] + 1)) else do (Game - Display to (All players) the text: ((Name of (Owner of (Killing unit))) + (has shoot + ((Name of (Owner of (Dying unit))) + head for 10 extra gold!))))
If ((Owner of (Killing unit)) Equal to Player 12 (Brown)) then do (Set Integer_Kill_Counter[13] = (Integer_Kill_Counter[13] + 1)) else do (Game - Display to (All players) the text: ((Name of (Owner of (Killing unit))) + (has shoot + ((Name of (Owner of (Dying unit))) + head for 10 extra gold!))))
Player - Add 10 to (Owner of (Killing unit)) Current gold
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
Or - Any (Conditions) are true
Conditions
Integer_Kill_Counter[2] Equal to 2
Integer_Kill_Counter[3] Equal to 2
Integer_Kill_Counter[4] Equal to 2
Integer_Kill_Counter[5] Equal to 2
Integer_Kill_Counter[6] Equal to 2
Integer_Kill_Counter[7] Equal to 2
Integer_Kill_Counter[8] Equal to 2
Integer_Kill_Counter[9] Equal to 2
Integer_Kill_Counter[10] Equal to 2
Integer_Kill_Counter[11] Equal to 2
Integer_Kill_Counter[12] Equal to 2
Integer_Kill_Counter[13] Equal to 2
Then - Actions
Game - Display to (All players) the text: Double Kill
-------- Put the play sound action here. --------
Else - Actions
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
Or - Any (Conditions) are true
Conditions
Integer_Kill_Counter[2] Equal to 3
Integer_Kill_Counter[3] Equal to 3
Integer_Kill_Counter[4] Equal to 3
Integer_Kill_Counter[5] Equal to 3
Integer_Kill_Counter[6] Equal to 3
Integer_Kill_Counter[7] Equal to 3
Integer_Kill_Counter[8] Equal to 3
Integer_Kill_Counter[9] Equal to 3
Integer_Kill_Counter[10] Equal to 3
Integer_Kill_Counter[11] Equal to 3
Integer_Kill_Counter[12] Equal to 3
Integer_Kill_Counter[13] Equal to 3
Then - Actions
Game - Display to (All players) the text: Triple Kill
-------- Put the play sound action here. --------
Else - Actions
 

Bartuc08

Mostly known as Zomby Jezuz
Reaction score
154
are ur remaking snipers from warcraft, or starcraft?

generally i think the warcraft version sucked...
the abilities and different height therrains really screwed it up
starcraft version was awsome, it actually required skill
 

Bartuc08

Mostly known as Zomby Jezuz
Reaction score
154
man i loved starcraft snipers, warcraft all u have to do is kill a few ppl then get some items to make u invincable
 
B

BlackAlpha

Guest
Never played starcraft. And the warcraft version sucked, that's why I remade it.

I already got the double kill stuff with the UT2003 announcement voice! :D
 

TFlan

I could change this in my User CP.
Reaction score
64
Good Job :D

Make sure your version is acually.... own proof like people cant own everyone cause they killed first.
 

Bartuc08

Mostly known as Zomby Jezuz
Reaction score
154
ok imagine the warcraft snipers map.

take away all the cliffs

flatten all the land

take away allt he abilities

take away shops and items,

thats how starcraft snipers would be
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air
  • The Helper The Helper:
    New dessert added to recipes Southern Pecan Praline Cake https://www.thehelper.net/threads/recipe-southern-pecan-praline-cake.193555/
  • The Helper The Helper:
    Another bot invasion 493 members online most of them bots that do not show up on stats
  • Varine Varine:
    I'm looking at a solid 378 guests, but 3 members. Of which two are me and VSNES. The third is unlisted, which makes me think its a ghost.
    +1
  • The Helper The Helper:
    Some members choose invisibility mode
    +1
  • The Helper The Helper:
    I bitch about Xenforo sometimes but it really is full featured you just have to really know what you are doing to get the most out of it.
  • The Helper The Helper:
    It is just not easy to fix styles and customize but it definitely can be done
  • The Helper The Helper:
    I do know this - xenforo dropped the ball by not keeping the vbulletin reputation comments as a feature. The loss of the Reputation comments data when we switched to Xenforo really was the death knell for the site when it came to all the users that left. I know I missed it so much and I got way less interested in the site when that feature was gone and I run the site.
  • Blackveiled Blackveiled:
    People love rep, lol
    +1
  • The Helper The Helper:
    The recipe today is Sloppy Joe Casserole - one of my faves LOL https://www.thehelper.net/threads/sloppy-joe-casserole-with-manwich.193585/
  • The Helper The Helper:
    Decided to put up a healthier type recipe to mix it up - Honey Garlic Shrimp Stir-Fry https://www.thehelper.net/threads/recipe-honey-garlic-shrimp-stir-fry.193595/

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top