-
Posts
11.503 -
Joined
-
Last visited
-
Days Won
611
Everything posted by wowgetoffyourcellphone
-
For a potential "Capture the Wonder" victory, or even to just add some cool buildings to the map editor, a list of world "wonders" could be appropriate. This thread can serve as discussion and as a place to link various tasks. Possible Wonders Hanging Gardens of Babylon COMPLETED The Persian civ's wonder replaced with the Apadana of Darius Mausoleum of Halicarnassus COMPLETED Already in-game as an Atlas-only structure Stonehenge COMPLETED Already in-game as an Atlas-only structure The Great Pyramids of Giza As they would have looked in the year 1 B.C. 3 large pyramids That there are 3 could perhaps add a different dynamic to the game mode Capture all 3? Capture 2 out of 3? Capture only 1? Task Thread Statue of Zeus at Olympia Task Thread Temple of Artemis at Ephesus Task Thread Colossus of Rhodes COMPLETED Task Thread Lighthouse of Alexandria This would double as a "Wonder of the World" and as a Ptolemaic wonder Task Thread Athena Parthenos COMPLETED Task Thread Athena Promachos Task Thread Pantheon of Agrippa Task Thread Flavian Amphitheater, aka "The Colosseum" This would double as a "Wonder of the World" and as an Imperial Romans wonder Task Thread Circus Maximus Task Thread Ishtar Gates of Babylon Task Thread The Great Sphinx at Giza As it would have looked in 1 B.C. Task Thread Second Temple (of Jerusalem) Task Thread Temple of Bel Task Thread Wikipedia Colossus of Nero Task Thread Wikipedia Terracotta Army Task Thread Altar of Peace (in Rome) Task Thread
-
Tabs are 1 click. Drop-down is 2. Might make a difference to streamers/casters.
-
He has also been my friend through many adventures.
- 198 replies
-
- brainstorming
- art
-
(and 2 more)
Tagged with:
-
Civ differentiation : playstyles
wowgetoffyourcellphone replied to maroder's topic in Gameplay Discussion
Skiritai. They're your fast flankers and ranged-infantry killers (give them extra pierce armor, with less hack armor), while the Spartiates are your tanks who kill melee things (uber hack armor). -
suggestion 0 A.D. $1000 1v1 Tournament
wowgetoffyourcellphone replied to DerekO's topic in General Discussion
Not a bad idea, but I think there's a "catch-22." A large cash tournament like this would bring a lot of new interest and expand the multiplayer community, but at the same time, since the community is so small, there is already a small group of top players that would more than likely monopolize the top 3 cash-winning slots. -
You all know what to do! Upvote bomb!
-
He does function similarly to Han Ministers, doesn't he?
-
I guess the point is the gameplay element. One could rationalize it in any way necessary. lol
-
Could have Mycenaean/Minoan ruins for Greek maps. Assyrian ruins for Middle Eastern maps. Etc.
-
You're okay. I think "control point" victories are fine, as long as they're a game setup option (and not on by default). "Shrines" could still have a gameplay effect (in DE they could trickle glory, for example), even if the control point victory is not enabled by the host. I think biomes could have different "shrine" models. Sahara and Nubia biome shrines could be based on the current Ptolemaic temple actor. Those actors are based on sacred complex "kiosks" anyway, not actual temples. In an Italian map, the shrine would be based on the Temple of Vesta. In a Greek map, I think the shrine would look like the Temple of Athena Nike or the "Athenian Treasury" at Delphi.
-
-
I will see what they say. Thanks for the replies. Ill get back to you.
-
-
Mythos_Ruler's Playlist
wowgetoffyourcellphone replied to Mythos_Ruler's topic in Introductions & Off-Topic Discussion
lol, I love 80s "synthwave" remixes. -
Special building or Wonder? https://www.wikiwand.com/en/Ovoo
-
Correct, "shallows." The water just needs to be deeper on that map though to prevent, weird, effects like Andy's screenshot.
-
-
May I suggest a slight change to Line-of-sight aggression range in UnitAI.js? This helps reduce unit zerging and improves player control of his or her units: UnitAI.prototype.GetQueryRange = function(iid) { let ret = { "min": 0, "max": 0 }; let cmpVision = Engine.QueryInterface(this.entity, IID_Vision); if (!cmpVision) return ret; let visionRange = cmpVision.GetRange(); if (iid === IID_Vision) { ret.max = visionRange; return ret; } if (this.GetStance().respondStandGround) { let range = this.GetRange(iid); if (!range) return ret; ret.min = range.min; ret.max = Math.min(range.max, visionRange); } else if (this.GetStance().respondChase) ret.max = visionRange * 0.85; // << This has changed. else if (this.GetStance().respondHoldGround) { let range = this.GetRange(iid); if (!range) return ret; ret.max = Math.min(range.max + visionRange / 2, visionRange); } // We probably have stance 'passive' and we wouldn't have a range, // but as it is the default for healers we need to set it to something sane. else if (iid === IID_Heal) ret.max = visionRange; return ret; }; And then also, stop units from automatically zerging any dangerous animal within range: UnitAI.prototype.AttackEntitiesByPreference = function(ents) { if (!ents.length) return false; let cmpAttack = Engine.QueryInterface(this.entity, IID_Attack); if (!cmpAttack) return false; let attackfilter = function(e) { if (!cmpAttack.CanAttack(e)) return false; let cmpOwnership = Engine.QueryInterface(e, IID_Ownership); if (cmpOwnership && cmpOwnership.GetOwner() > 0) return true; let cmpUnitAI = Engine.QueryInterface(e, IID_UnitAI); return cmpUnitAI && (!cmpUnitAI.IsAnimal()); // << This has changed. }; let entsByPreferences = {}; let preferences = []; let entsWithoutPref = []; for (let ent of ents) { if (!attackfilter(ent)) continue; let pref = cmpAttack.GetPreference(ent); if (pref === null || pref === undefined) entsWithoutPref.push(ent); else if (!entsByPreferences[pref]) { preferences.push(pref); entsByPreferences[pref] = [ent]; } else entsByPreferences[pref].push(ent); } if (preferences.length) { preferences.sort((a, b) => a - b); for (let pref of preferences) if (this.RespondToTargetedEntities(entsByPreferences[pref])) return true; } return this.RespondToTargetedEntities(entsWithoutPref); }; Honestly, both changes should be added to the base game, but in the meantime, could go into your mod (they're already in DE).
-
Minimap Icons
wowgetoffyourcellphone replied to wowgetoffyourcellphone's topic in Game Development & Technical Discussion
Thanks, Mr. Bart. It's a feature I think would benefit the base game as well as mods (I could imagine Hyrule Conquest making custom minimap icons, for sure). And with your larger minimap, the icons won't be as odious as they would be with the current smaller minimap. -
Minimap Icons
wowgetoffyourcellphone replied to wowgetoffyourcellphone's topic in Game Development & Technical Discussion
I wouldn't say nobody takes the minimap seriously. There is a lot to do after all. @Langbart is who made the larger minimap patch for Delenda Est, and uses it in his own spectator mod. He does good work.
