Request: Secret of Mana Magic and Weapon Level

Post Reply
EruditoSystems
Junior Member
Posts: 11
Joined: Thu Sep 06, 2018 7:48 pm

Request: Secret of Mana Magic and Weapon Level

Post by EruditoSystems » Mon May 18, 2020 12:25 am

Hello everyone!

Now, I have looked everywhere and I have tried looking at advanced mode for this game so I can take control of the magic and weapon levels per character but nothing. So I can only ask here to see if its possible to have a quick code made for character weapon and magic level modification.

I know messing with weapon and magic levels in this game is a bit tricky since they are capped for just about the whole game with the orbs for the weapons and the seeds for the spells, but I would really like to take control of that because grinding in this game for levels is a counter-productive. I mean, If the character level is too high, leveling weapons and spells becomes hellish!

I was able to identify (more or less) which area I should look at in advance mode to control the levels there but I have no idea which digits to alter whatsoever.

So, can anyone help with a quick code? And if not, maybe some instruction on the Advanced mode for this game? The area where (at least I think) the values are kept is surprisingly small, but no values to which I can place a weapon or spell level when looking at it side by side to the game, even after converting the values.

Hope someone can help and thanks in advance!
User avatar
Alucard
Junior Member
Posts: 1
Joined: Mon Sep 14, 2020 12:25 am
Location: New York

Re: Request: Secret of Mana Magic and Weapon Level

Post by Alucard » Thu Feb 18, 2021 4:25 pm

This is because the character's weapon and magic levels characters are stored as total EXP earned rather than their level. As an example a character that is 67% of the way to level 3 for the sword would be represented by the decimal 267 for the total EXP earned (100 x 2 levels plus the 67 earned towards level 3), not 2 for level two. This is 10B in hex and would be stored in the save as 0B 10.

Regardless since I'm playing through now I put together a few codes since this game is so grindy and I've beaten it countless times on SNES already:

Code: Select all

Max Weapon Power
40001E81 00000009
4008000C 00000000

Max Weapon Level
40001EFC 00000009
4008000C 00000000

Maximum Weapon EXP - Randi
41002502 00000384
4008000C 00000000

Maximum Weapon EXP - Primm
41002CDC 00000384
4008000C 00000000

Maximum Weapon EXP - Popoi
410034B6 00000384
4008000C 00000000

Max Magic Power
40001E06 00000001
4008000C 00000000

Maximum Magic EXP - Primm
41002C63 00000320
4008000C 00000000

Maximum Magic EXP - Popoi
4100343D 00000320
4008000C 00000000

799 Magic EXP - Primm
41002C63 00000320
4008000C 00000000

799 Magic EXP - Popoi
4100343D 00000320
4008000C 00000000
Note: Weapon and magic EXP are limited by the weapon level and magic power respectively, if you set the EXP to max without changing the appropriate power level you will not be able to reach max level. Additionally, if you acquire the Mana Sword and equip Randi with it he will not be able to un-equip it for the rest of the game.
Post Reply