Scardy Cat Escape is a 6vs1 game where you can play as either a hunter, or their prey, the Scardy Cat.
This map features a random terrain generator, however, all it does is create a number of identical (same scale and variation) trees on random places on the map and, some lumps of different terrain tiles that doesn't look good at all and some height variation.
The gameplay is too simple and boring at the moment, and there is nothing more to it than killing the hunters/cat. There are no custom abilities, no creeps, no leveling, no game modes or anything else. My suggestion is to add much more content to make the map less repetitive and boring.
About the triggering of the map, first of all, this leaks:
-
Destructible - Create a Barrens Canopy Tree at (Random point in Random <gen>) facing (Random angle) with scale 1.00 and variation 0
What you need is a point variable called something like tempPoint. The trigger without leaks would look like this:
-
Set tempPoint = (Random point in (Playable map area))
-
Destructible - Create a Barrens Canopy Tree at tempPoint facing (Random angle) with scale 1.00 and variation 0
-
Custom script: call RemoveLocation (udg_tempPoint)
As you may have noticed, I am not using your region Random since it serves no purpose as Playable map area covers the same are as your region, so it can be removed. Also, you don't want a trigger with 75 lines (or so) when you can do it with a simple loop, like this:
-
For each (Integer A) from 1 to 10, do (Actions)
-

Loop - Actions
-


Set tempPoint = (Random point in (Playable map area))
-


Environment - Create a 0.50 second Permanent crater deformation at tempPoint with radius 400.00 and depth 124.00
-


Custom script: call RemoveLocation (udg_tempPoint)
This would create 10 trees at different locations on the map without any leaks, and without then need for a region. All I've said now also goes for your "Random Ground" and "Random Terrain" triggers, as they leak to.
The map also lacks win/defeat triggers.
The lasting value of the map isn't good either as it isn't fun to play, and when I tested, the majority of the players, including the cat, had left already shorty after the game's start.
In it's current state, this map is not anywhere near approval because of the things I mentioned in this review (lack of content, incredibly leaky, boring, repetitive. bad terrain etc.) but if you work on these things, you will at least be one step closer.
1/5 (Unacceptable) and voted for
disapproval.