Jump to content

Search the Community

Showing results for tags 'ai'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Important Links
    • Serenes Forest Code of Conduct
    • Mistakes or Errors on the Site
  • Important Forums
    • Announcements
    • Member Feedback
    • Site Content
  • General Forums
    • Introductions
    • General
    • Far from the Forest...
    • Creative
    • Fan Projects
    • General Gaming
  • Fire Emblem Forums
    • General Fire Emblem
    • NES and SNES Era
    • GameBoy Advance Era
    • GameCube and Wii Era
    • Nintendo DS Era
    • Nintendo 3DS Era
    • Fire Emblem: Three Houses
    • Fire Emblem: Engage
    • Fire Emblem Heroes
    • Related Games
  • Miscellaneous
    • Forum Graveyard

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Jabber


Skype


Yahoo


ICQ


Website URL


MSN


AIM


Interests


Location

Found 9 results

  1. This game makes use of character portraits and backgrounds generated with AI. If that doesn’t jive with you, it is recommended that you click out of this thread now. Hello once again, Serenes Forest. Adarya and I are excited to show off in earnest our first collaborative project. Originally debuted as part of the MARTH (Make A Really Terrific Hack) contest on FEU, it is now well on its way to becoming a full-fledged game. Featuring a (human-written, don’t worry!) story of a runaway queen grappling with the might of two warring empires to make the continent of Avra safe for her children again, this game’s presentation is further enhanced with expanded battle animations, numerous unique backgrounds, beautiful custom tilesets, and a visual style reminiscent of Radiant Dawn, and even some limited voice acting to create one of the most appealing SRPG Studio experiences yet. Notable gameplay features: Choice of playing with either single or double-RNG The Weapon Triangle (Swords, Lances, Axes), which grants Accuracy ±15 The Trinity of Magic (Light, Anima, Dark) and (Fire, Thunder, Wind), which grants Attack ±3 and Accuracy ±15 Fixed weapon ranks like in Genealogy of the Holy War and Engage Enemy targeting lines like in Engage AS = Spd - Wt (you need 5 more AS than your opponent for follow-up attacks) A Fates-like Skill system in which each character has a unique personal Skill and can learn more dependent on his/her class Spreadsheets: Characters Classes Skills Weapons/Items Dropbox link (8 of ?? chapters) Discord server Known Issues: There is no notification when learning a new Skill outside of battle, i.e. by getting a Level Up from Staff usage. Remaining Mov display when selecting where to move a unit doesn’t account for screen scrolling. This feature is turned off by default. There is a tiling error in the Prologue that allows Stella and Sirius to walk through the upper wall and out of the training area. This should be a minor issue since there’s nothing important outside and this is a Rout map in which none of the enemies move. Credits: Screenshots:
  2. I think most people have seen that if you leave Uhai alive with low HP in Chapter 18/19 (depending on what mode you are playing in), he will try and run away from your characters toward the forts. Most of the time, blocking off his escape route makes him attack you as you would want. However, I have noticed that occasionally he will instead respond to such encroachment by just skipping his turn and staying in his starting spot. From testing, it seems to me like the times when this occurs are related to whether or not the nomads above and to the left of him have moved, but it would be great if someone who has extensive knowledge about the AI (Gryz?) could confirm this for me.
  3. I've never seen them do so for some reason, even when she was in range and an easy kill. So will the AI ever target her before she speaks to Roy? I'm just curious.
  4. Is it possible to write your own AI and insert it into either FE7 or FE8? Like, write your own AI codes and have enemy and green units point them into the game. Is there any documentation on it?
  5. I'm playing through Chapter 9 of Lyn Hard Mode and have noticed the following curious phenomenon in the enemy AI behavior. Depending on certain conditions that I have yet to determine, it appears that sometimes the bandit(s) who spawn in the SW corner of the map do not move off of their spawn point, which prevents certain enemies from spawning. I am currently doing a run where getting all of the EXP is extremely important, so if anyone has a viable workaround to this problem or even understands what causes it, I would be really glad to hear it.
  6. I very much hope for this game to improve enemy AI. In past games the tactic 90% of the time was if your units were still weak: - bait as little enemies at possible and then murder them by overwhelming odds. if strong - do not give a fuck about the actually enemy units Now with the new pair up for enemy AI this could be subject to change. It is debatable as especially the attack stance for enemy units is just a joke with the old AI. The only way I can see this to be a factor is if there are just overwhelming numbers of enemies or there are a lot of chokepoints. Do you think the AI is actually intelegent enough to pair the best matches? Or do you think think guard stance pair ups are premade? Do you think enemies won't start attacking anything in range and much rather stay together for the attack stance?
  7. Exactly that. If you were in a reverse situation of typical FE, that is, you have a massive army of "weak" units, your goal is to break through the small line of "elites" the player has and kill The Lord, how would you go about it? Charging haphazardly clearly does not work, so what to do?
  8. How to make enemy units and NPC units leave the battlefield: 1. Define escape tiles Escape tile format: 4 bytes: [x, y, exit, 00] x = x coordinate of escape tile. y = y coordinate of escape tile. The top-left corner of the map is (0,0). exit = Determines what animation is used when the unit steps on the escape tile. 00 = Move left then disappear. 01 = Move right then disappear. 02 = Move down then disappear. 03 = Move up then disappear. 05 = Disappear without moving. The game uses 00-03 for escape tiles located on the edges of the map. 05 is used on escape tiles located on stairs. Create a sequence of escape tiles and then terminate it with FF 00 00 00. Example - Chapter 7x escape points (01, 01, stairs) and (03, 01, stairs): 01 01 05 00 03 01 05 00 FF 00 00 00 The escape tiles used in FE7 chapters begin at address 0x1D3974. 2. Set pointers to escape tiles Enemy units and NPC units have separate pointers to escape tile data. The pointers are stored in the same order as the chapters in the Chapter Data Editor nightmare module. The enemy pointer table is at address 0xB97100. The NPC pointer table is at address 0xB971C0. Simple nightmare module for modifying pointers: (Chapters.txt referring to the same file used by the Chapter Data Editor) Enemy Pointers NPC Pointers Chapters without escape tiles point to FF 00 00 00. FE7 chapters without escape tiles point to the FF 00 00 00 located at address 0x1D3A5C. 3. Set enemy and NPC AI bytes with Chapter Unit Editor AI byte 1 - Aggression Factor 00 = Attack or steal from units that are in-range. 06 = Do not attack or steal. AI byte 2 - Looting and Escaping 04 = Open/loot doors-chests-villages. After no more targets, remain on the map and attack. 05 = Open/loot doors-chests-villages. After no more targets, move towards nearest escape tile. 0C = Immediately start moving towards escape tiles. Ignore foes. The standard in-game Brigand uses 00 + 04 for their first two AI bytes. The standard in-game Thief uses 06 + 05 for their first two AI bytes. You can't give units specific targets, so you have to manipulate their behavior through door/chest/village placement, starting position, inventory, and escape tile locations. Be careful with door placement. Even if all chests are opened, units will go after unopened doors (instead of escaping) if they still has Door Keys or Lockpicks. However, units will ignore unopened doors and begin to escape if inventory becomes full. Also, units won't use the five-durability Chest Key. ... Okay. Thanks for reading
  9. I was playing Awakening yesterday, and this enemy myrmidon decided it would be a good idea to attack Kellam, doubling him for no damage and taking 15 damage in return. Then I thought: "Overall, the AI may have become a lot better since FE1, but at least in FE1 enemies didn't just attack you for no damage" (well, unless it's Marth; the AI in that game always goes after Marth). Enemies attacking your units for no damage is something that has been bothering me for a long time now, especially when they take a lot of damage in return. I wanted to ask: what do you think of Fire Emblem's AI? What issues do you experience with the current (FE13's) AI? How do you feel it has improved over the course of the series, and do you think it has ever taken a step back (as in my example)? Feel free to share whatever odd things the AI has done in your playthroughs.
×
×
  • Create New...