Harvest Moon: Animal Parade [RBIEE9]

Started by emperor52, November 14, 2009, 02:46:13 AM

Previous topic - Next topic

Chris-FireFox

ohh it was never my intention to pick on pixel..
all i tried to do was help as pixels code tecnically was over the limit...
If it was seen as picking on him/her i apologise as said it was never my intention...
but on the bright side.. it WAS a good try for a first pixel :) in some games it might also have been right depending on how the game interprets things ;) and if your code works for you then dont worry about it ;) as i said in my post its just cause i like to keep things clean and not have codes that goes "over the top" they tend to work anyways as most games have a hard coded max amount :)

TNTkryzt

#46
Quote from: ricky23i on November 21, 2009, 12:54:58 PM
test this code

infinite stamina
041100D0 60000000

That instruction you NOP'd actually writes to alot of different addresses and may cause problems. The following code writes to the stamina address only;

Infinite Stamina
0777C000 00000010
7C7E1B78 816D9560
93CB1468 4AAD2CC0
0424ECC8 4952D338

here's a couple more;

All Friends Met
0410D74C 38000001
0410D750 90031BEC

All Wild Animals Met
0410D884 91E31BD4

Max Affection (Friends)
0777C010 0000000C
3BE003E8 93E30000
4A98E260 00000000
0410A274 49671D9C

Max Affection (Wild Animals)
0777C01C 0000000C
3BE003E8 93E30000
4A98E26C 00000000
0410A28C 49671D90

Pixeldust

Quote from: TNTkryzt on November 24, 2009, 09:52:26 AM
Quote from: ricky23i on November 21, 2009, 12:54:58 PM
test this code

infinite stamina
041100D0 60000000

That instruction you NOP'd actually writes to alot of different addresses and may cause problems. The following code writes to the stamina address only;

Infinite Stamina
0777C000 00000010
7C7E1B78 816D9560
93CB1468 4AAD2CC0
0424ECC8 4952D338

here's a couple more;

All Friends Met
0410D74C 38000001
0410D750 90031BEC

All Wild Animals Met
0410D884 91E31BD4

Max Affection (Friends)
0777C010 0000000C
3BE003E8 93E30000
4A98E260 00000000
0410A274 49671D9C

Max Affection (Wild Animals)
0777C01C 0000000C
3BE003E8 93E30000
4A98E26C 00000000
0410A28C 49671D90
Omg, thank you so much!  I'd hug you and kiss you but that would be strange!  Lol!

vharrison.tx

Was anyone able to figure out how to do time stop and start? thats the only code i am waiting on :) kudos to everyone who has works hard on these codes.

Mouko

TNTkryzt, if you don't mind, could you tell me which line in the 'Max affection code' is the value for the affection itself? Like, say, I want to change the value from max to about three hearts? I can figure out the exact points necessary myself, but I'm not sure which line to tinker with.

Thank you very much for the codes!

TNTkryzt

Quote from: Mouko on November 24, 2009, 03:30:42 PM
TNTkryzt, if you don't mind, could you tell me which line in the 'Max affection code' is the value for the affection itself? Like, say, I want to change the value from max to about three hearts? I can figure out the exact points necessary myself, but I'm not sure which line to tinker with.

Thank you very much for the codes!
The hearts are multiples of 100 (0064 hex), 1000 for all ten which is 03E8 in hex.
Using the 'friends' code in example, the red text is what you'd need to change.  ;)

Max Affection (Friends)
0777C010 0000000C
3BE003E8 93E30000
4A98E260 00000000
0410A274 49671D9C

Chris-FireFox

is there a chance we sometime might see an affection code that lists per villager ? :)

Mouko

Quote from: TNTkryzt on November 24, 2009, 03:42:28 PM
The hearts are multiples of 100 (0064 hex), 1000 for all ten which is 03E8 in hex.
Using the 'friends' code in example, the red text is what you'd need to change.  ;)

Max Affection (Friends)
0777C010 0000000C
3BE003E8 93E30000
4A98E260 00000000
0410A274 49671D9C



Okay, I changed the red number to 012C, for 300 points, and it worked perfectly! Every villager I've met has 3 hearts now! I just wanted to be able to attend the Flower Festival with someone, but still do the wooing myself.

Thank you very much!  ;D

TNTkryzt

#53
Quote from: vharrison84 on November 24, 2009, 03:17:12 PM
Was anyone able to figure out how to do time stop and start? thats the only code i am waiting on :) kudos to everyone who has works hard on these codes.

Try this one;

Pause Time (Press Z+Up D-Pad)
2057C608 00002008
041079A4 3B430000
E0000000 80008000

Resume Time (Press Z+Dwn D-Pad)
2057C608 00002004
041079A4 3B430002
E0000000 80008000

Quote from: Chris-FireFox on November 24, 2009, 03:44:52 PM
is there a chance we sometime might see an affection code that lists per villager ? :)

What to you mean by 'lists per villager'?, the code should activate when viewing the 'friends' menu. Anyone present in that list will be affected by the code hence the 'all friends met' code.
If that's not what you're after you'll have to explain further.

Quote from: Mouko on November 24, 2009, 03:51:10 PM
Thank you very much!  ;D
No worries, glad to be of service.  ;)

Updates can be found here.

gjac1

Thank you very much for the codes TNTkryzt :)

Any chance of a max friendship code for your farm animals ?

TNTkryzt

I havent got any yet..  :D
I'll have a look at it tomorrow, if no one else has done it before then.

gjac1

Quote from: TNTkryzt on November 24, 2009, 05:07:01 PM
I havent got any yet..  :D
I'll have a look at it tomorrow, if no one else has done it before then.

Thank you :) , and i know what you mean, with everything else to do in the game, farm animals tend to be one of the last things you go for...

Mouko

I think she means a code to only raise the hearts for a specific villager. Such as, say, max hearts for Julius only. See, if you max hearts for everyone, there's a good chance that the rivals will marry off whoever you're courting before you can get all of their events!

Or it could be that people just want to woo certain individuals, such as only the bachelors or bachelorettes, and use a code to max out all of the others.

Basically, I think she wants to be able to pick and choose who to max out.

TNTkryzt

#58
Quote from: Chris-FireFox on November 24, 2009, 06:14:03 PM
well mouko was pretty much right.. im more interested in a per villager affection code so i can deside who max out. perhaps the only thing that was wrong is that i was called a female since im a guy ;)

Try this one, you can modify the hex in red to change heart level; 3 hearts = 300 (012C hex) max hearts = 1000 (03E8)

Max Affection Friends
0777C048 0000001C
80140080 2C000001
40820010 8174006C
386003E8 906BFFF0
4A9EA8BC 00000000
04166918 49615730
(Track Friend to Enable Code)

Disable tracking to disable the code.

Chris-FireFox