0% found this document useful (0 votes)
829 views2 pages

NPC Gameplay Modifications Guide

This document contains a list of code patches for modifying gameplay mechanics and behaviors in Dynasty Warriors such as allowing players to control NPCs, changing movesets, disabling certain abilities, and modifying CPU behaviors.

Uploaded by

nhattpqs170165
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
829 views2 pages

NPC Gameplay Modifications Guide

This document contains a list of code patches for modifying gameplay mechanics and behaviors in Dynasty Warriors such as allowing players to control NPCs, changing movesets, disabling certain abilities, and modifying CPU behaviors.

Uploaded by

nhattpqs170165
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

// Play as NPCs (For different characters in 2P mode, refer to the end of this

file)
//patch=1,EE,001100e0,word,2403000B //Change xx to the Character ID in hexadecimal

// Correct NPC force (Takes over the force)


//patch=1,EE,0010ffb0,word,240600xx

// Correct NPC force (Becomes it's sub-general)


//patch=1,EE,00110008,word,24040132

// Correct NPC Officer moveset


//patch=1,EE,00143498,word,00000000

// Correct NPC Troop moveset


//patch=1,EE,0014349C,word,3C0B0010

// Correct NPC Officer moveset (Old, changes everyone)


//patch=1,EE,00143488,word,24020002

// Correct NPC Troop moveset (Old, changes everyone)


//patch=1,EE,00143488,word,24020006

// Correct NPC voice


//patch=1,EE,001444ec,word,24020001
//patch=1,EE,00144860,word,24020001

// Change player team - PvP in regular battles


//patch=1,EE,00334974,word,00000001 //Change P1 team to enemy
//patch=1,EE,00334a04,word,00000001 //Change P2 team to enemy

// Disable "PUSH START" text in Demo mode


//patch=1,EE,001476c0,word,00000000

// infinite demo mode


//patch=1,EE,00146560,word,00000000

//202d0700 address for Cheat engine for demo mode toggle (Makes AI control your
character)
//16 = P1 demo mode, 1040 = P2 demo

// Disable Auto Lock


//patch=1,EE,00103518,word,00000000

// Disable C5 Auto Lock


//patch=1,EE,0013f6d4,word,00000000
//patch=1,EE,0013f6ec,word,00000000

// Followup attacks without hitting enemies (hit enemy once)


//patch=1,EE,00143e88,word,00000000

// Disable Musou Pause and Glowing Hands


patch=1,EE,0015CEBC,word,24030001
patch=1,EE,0015ced0,word,00000000 //alt

// Cpu gets Musou Pause and Glowing Hands


//patch=1,EE,0015ceb8,word,00000000

// Walk through gates


patch=1,EE,0014cbe0,word,00000000
// Walk through gates horse
patch=1,EE,0014ce58,word,00000000

// Get to inaccessible places on horse


patch=1,EE,0014ce6c,word,00000000

// Walk through objects


patch=1,EE,0014CD74,word,00000000
patch=1,EE,0014CD78,word,00000000

// Walk through soldiers (everyone)


patch=1,EE,0014cba0,word,00000000

// No power-up glow
//patch=1,EE,0015e1e8,word,24020001

// No musou full sound


//patch=1,EE,001440f0,word,24030003

// Musou full sound for everyone


//patch=1,EE,001440f0,word,24030000

// CPU feature: Allow being knocked down by flying bodies


//patch=1,EE,001d6408,word,24030001

// CPU Bodyguard formation


patch=1,EE,00184d10,word,00000000

// CPU has no formation like player


//patch=1,EE,00184d10,word,24020000

// CPU Items gained by charging up musou


patch=1,EE,0018b6b0,word,24030001

// CPU Auto targetting enemies


//patch=1,EE,00181f78,word,24020001

You might also like