I checked your map earlier today, can you please fix description (add screenshots colors and so on) and credits (for example that ogre on map center wasn't created by you right). Oh map type is wrong!
Once when you finish with that (easy part) please fix triggers and memory leaks
Example:
-
Teleport Left exit
-
Events
-
Unit - A unit enters Left Exit <gen>
-
Conditions
-
Actions
-
Unit - Move (Triggering unit) instantly to (Center of Left Entrance 2 <gen>)
This trigger create location (point) leak every time when unit enters Left Exit region...
Here you go example how it can be fixed!
-
Teleport Left exit
-
Events
-
Unit - A unit enters Left Exit <gen>
-
Conditions
-
Actions
-
-------- Store point into array variable --------
-
Set TempPoint[1] = (Center of Left Entrance 2 <gen>)
-
-------- ------------------------------- --------
-
-------- move unit to stored point (variable) --------
-
Unit - Move (Triggering unit) instantly to TempPoint[1]
-
-------- ------------------------------- --------
-
-------- we destroy that stored point within variable (variable value) --------
-
Custom script: call RemoveLocation (udg_TempPoint[1])
-
-------- ------------------------------- --------
-
-------- Why array, because you have a lot regions so instead a lot of variables we can just increase it's number -> TempPoint[2],TempPoint[3],... --------
About gameplay:
Well terrain need improvement, custom cliffs can increase it's quality a lot.
But for start adding large number of doodads can fix/improve it!
Add environment doodads (rocks, flowers, shrubs...)
Add special effect doodads (faerie fire looking like doodad...)
Add neutral units (birds, fish...)
Add lightning effect doodads (custom lightning doodads, fire, fog...)
There is no DISBTN Icons (we can see green icons when you press pause for example)
This should be enough for now!
You are big guy, you should be able to find tutorials on this site or on others as well!
Once when you improve this map, update this one send map moderators message and I will unlock thread once again!
Have a nice day!