Memories of the Fallen

You can submit your maps here. Both finished and unfinished submissions are welcome.
Forum rules
Finished maps:
• Submitting your own map(s):
One map per topic please! (Or we will have a hard time finding out which comment is for which map)
You can leave your Username@Realm so people can contact you in game. (eg.: 3ICE@USEast, 3ICE@Northrend)
Write a description and don't forget to post some screenshots. (Images and videos are worth a thousand words)
• Submitting a map not made by you:
Do not claim it as yours. We'll find it out (sooner or later) anyway.
Ask the maker to submit it himself is possible.
Or at least let the maker know that his map has a topic here, so he can benefit from your comments and bug reports. (Or request the thread be deleted for whatever reason*.)

Unfinished maps:
You are welcome to post your unfinished maps here and ask for help.
We will look at the map and tell you whats wrong with it or how to continue editing it.

Projects:
Important/cool maps and big projects will have their own forum category inside. (Like the 3ICE's Maze Designer category)
samtre
Posts: 82
Joined: Thu Nov 27, 2008 6:43 am

Memories of the Fallen

Unread post by samtre »

12 heroes, in 3 graves (STR, AGI, INT)
2 Factions (Ligra & Kilrom)

Made a dota-like map but changed the map layouts
Creeps will switch lanes at some points, giving a tactical advantage and disadvantage at lanes.

Has some models and icons downloaded from Hiveworkshop and some skins, icons and re-modeled models edited by me

I have a few problems with the map:
1) I don't have any idea how to balance the creeps by the towers, hero levels and hero skills. (Maybe balanced 25%?)
2) Too many trees around the map, I don't know what can I do to remove those forest..... (Putting Creeps)
3) Need 1 more hero and hero skill ideas.
4) All my spells are made in GUI, (must.......................learn.............................JASS)
5) Unable to balance heroes
6) Having troubles with placing creep production buildings at bases.
-----------------------------------------------------------------------------------
Spoiler:
Changes:
- added "preloading?"
- fixed some leak on abilities
- balanced a bit more
- less lag in game, more loading time.......

have some problems about leaks........ the problem is noted inside the trigger editor...........

-----------------------------------------------------------------------------------

I am able to fix some leaks, finally know how JASS works, a little bit.......

Fixed a lot of leakage, still has some not done......

Added a new hero, has a skill Glaive Boomerang.... Throws a glaive and it returns to you after it reaches the target, hits enemy units twice (one for going to the point, one for going back). It will return it to you wherever you go, all made in GUI, although its much easier in JASS, but i don't understand, atleast I created it right?

-----------------------------------------------------------------------------------

Boomerang will always return to you, checking position every 0.03 seconds.
Added blink to combo with the boomerang,
Recoloured/Reskinned/Remodeled SacrificialAltar.mdx from Red to Green to have the 3 attributes altars -> STR, AGI, INT.
weeeeeeeeeeeeeeeeeeeeeee
weeeeeeeeeeeeeeeeeeeeeee
3-Altars.JPG (165.87 KiB) Viewed 18341 times
Attachments
Ertmas_MotF.w3x
(2.65 MiB) Downloaded 768 times
Last edited by samtre on Fri Nov 13, 2009 9:01 pm, edited 9 times in total.

User avatar
3ICE
Admin
Posts: 2629
Joined: Sat Mar 01, 2008 11:34 pm
Realm: Europe
Account: 3ICE
Clan: 3ICE
Location: Hungary
Contact:

Re: Memories of the Fallen

Unread post by 3ICE »

Your sounds are all broken.
You could put creeps in the forest or backdoor pathways.
Preload every special effect during initialization.
How do we win?
ImageImageImageImageImage
Image
ImageImage

samtre
Posts: 82
Joined: Thu Nov 27, 2008 6:43 am

Re: Memories of the Fallen

Unread post by samtre »

what do you mean by preload special effects? o.o

suppose to add a building or hero at the end of the map (left, right), kill it to win, same as dota, but different layouts............

User avatar
3ICE
Admin
Posts: 2629
Joined: Sat Mar 01, 2008 11:34 pm
Realm: Europe
Account: 3ICE
Clan: 3ICE
Location: Hungary
Contact:

Re: Memories of the Fallen

Unread post by 3ICE »

ImageImageImageImageImage
Image
ImageImage

samtre
Posts: 82
Joined: Thu Nov 27, 2008 6:43 am

Re: Memories of the Fallen

Unread post by samtre »

i've found some forums that told me how to preload, but I still don't quite get it.........

they say put all your abilities into 1 unit via triggering, but what does it really help?
is it to put all dummy spells into 1 unit, or ALL spells into the unit.?

changed map, Storm Rider's 3rd skill has lower cast range, lower mana cost, a bit more damage, I did what they told me to do to preload, maybe decreased the dummy movement periodic timer.

User avatar
3ICE
Admin
Posts: 2629
Joined: Sat Mar 01, 2008 11:34 pm
Realm: Europe
Account: 3ICE
Clan: 3ICE
Location: Hungary
Contact:

Re: Memories of the Fallen

Unread post by 3ICE »

The first time a spell is used, the special effects in it need to be loaded in a slow slow process. It is better to load them while loading the map, so lag spikes can be avoided ingame.

Here is an example of Blizzard preloading the "Nuke" spell:

Code: Select all

function PreloadFiles takes nothing returns nothing
  call Preload("Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdx")
//...
  call Preload("Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdx")
  call Preload("Textures\\BloodWhiteSmall.blp")
  call Preload("Abilities\\Weapons\\Mortar\\MortarMissile.mdx")
//...
  call Preload("Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdx")
  call Preload("ReplaceableTextures\\Splats\\ThunderClapUbersplat.blp")
  call Preload("ReplaceableTextures\\Splats\\CraterUberSplat.blp")
  call PreloadEnd(.01)
endfunction
I doubt putting spells on a unit would help at all, but of course I could be wrong since I never preloaded anything before. I would either use t_ani Special Effect - Create on every custom model or place one of each units for every custom spell you have and order them to cast their spells at map init or if that doesn't work, right after map init. Again, I never preloaded anything before in my life so this information could be totally wrong. I have no idea how or why I even know it. :]

You know you have succeeded when no drop in fps occurs at casting a new spell.
ImageImageImageImageImage
Image
ImageImage

samtre
Posts: 82
Joined: Thu Nov 27, 2008 6:43 am

Re: Memories of the Fallen

Unread post by samtre »

I've done the "preload", or what i think it is.....

I've ordered some of my heroes that have laggish problems to learn/cast spells at map init, it fixed the lag and its going pretty smooth.....
I've fixed some leaks on my spells, balanced the spells a little bit.............fixed the Holy Strike for the preloading........

User avatar
3ICE
Admin
Posts: 2629
Joined: Sat Mar 01, 2008 11:34 pm
Realm: Europe
Account: 3ICE
Clan: 3ICE
Location: Hungary
Contact:

Re: Memories of the Fallen

Unread post by 3ICE »

Awesome. I will try to fit playing MotF for a few hours into my schedule.
ImageImageImageImageImage
Image
ImageImage

samtre
Posts: 82
Joined: Thu Nov 27, 2008 6:43 am

Re: Memories of the Fallen

Unread post by samtre »

swt.......... and why don't you play?

Reason: No winning condition.

User avatar
3ICE
Admin
Posts: 2629
Joined: Sat Mar 01, 2008 11:34 pm
Realm: Europe
Account: 3ICE
Clan: 3ICE
Location: Hungary
Contact:

Re: Memories of the Fallen

Unread post by 3ICE »

Sorry, what?
ImageImageImageImageImage
Image
ImageImage

Post Reply

Who is online

Users browsing this forum: No registered users and 139 guests