BullyWiiHacks
Welcome dear guest! Very Happy

To start posting and being part of the BWH community, you simply need to register an account or log into an existing one.

If you do not wish to register at all, that's fine but there will be more advertisements. :/

You can probably see and download most content provided for regular members even without an account.

Your contributions will be greatly appreciated though, give it a shot and register today! thumbsup

Join the forum, it's quick and easy

BullyWiiHacks
Welcome dear guest! Very Happy

To start posting and being part of the BWH community, you simply need to register an account or log into an existing one.

If you do not wish to register at all, that's fine but there will be more advertisements. :/

You can probably see and download most content provided for regular members even without an account.

Your contributions will be greatly appreciated though, give it a shot and register today! thumbsup
BullyWiiHacks
Would you like to react to this message? Create an account in a few clicks or log in to continue.
BullyWiiHacks

Gaming, Modding & Programming

Important reminders:

- Click *HERE* for advanced forum search or check out the text field below on the front page for Google before posting
- NO support via private message (use the forum)
- Write meaningful topic titles
Site Translation
Latest topics
» Wii Play Tanks
CoD Wii Game Type Modifiers Empty3/24/2024, 2:46 pm by helpmeout

» [Bypass Paywalls] (Global) @magnolia1234 - GitLab
CoD Wii Game Type Modifiers Empty3/18/2024, 3:55 am by Seth@WiiPlaza

» [Download] Mary Shelley's Frankenhole
CoD Wii Game Type Modifiers Empty3/16/2024, 8:29 am by Seth@WiiPlaza

» Completely Custom Modded Controllers (Undetectable)
CoD Wii Game Type Modifiers Empty3/5/2024, 1:55 pm by Shadow@BWH

» (Zombies) Drink perks code?
CoD Wii Game Type Modifiers Empty3/5/2024, 1:24 pm by Shadow@BWH

» Die Rückkehr zu STEAM und WARFACE
CoD Wii Game Type Modifiers Empty3/2/2024, 3:54 am by Seth@WiiPlaza

» First person hand model change?
CoD Wii Game Type Modifiers Empty2/28/2024, 4:53 am by Ad3lamac611

» {RELEASE} Field Raider Firefox v1.72 by Seth@WiiPlaza
CoD Wii Game Type Modifiers Empty2/21/2024, 8:52 am by naxil

» FREE Language-Learning YouTube Channel, Best Way to Learn Language
CoD Wii Game Type Modifiers Empty2/19/2024, 10:40 am by SnB@BWH

» Need help to get command line console code to work
CoD Wii Game Type Modifiers Empty2/19/2024, 6:41 am by Bully@WiiPlaza

Search
 
 

Display results as :
 


Rechercher Advanced Search

March 2024
MonTueWedThuFriSatSun
    123
45678910
11121314151617
18192021222324
25262728293031

Calendar Calendar

Country Statistics
Free counters!

You are not connected. Please login or register

CoD Wii Game Type Modifiers

2 posters

Go down  Message [Page 1 of 1]

1CoD Wii Game Type Modifiers Empty CoD Wii Game Type Modifiers 11/16/2013, 10:14 am

Bully@WiiPlaza

Bully@WiiPlaza
 
 

In order to modify stuff from every game type, you can retrieve everything yourself.

Do the following:

https://www.youtube.com/watch?v=rG-kwlNa5Wk&list=PL993F6C5CBF3A6E2C&index=24

In your fresh dvar dump, find where it says "scr_GAMETYPESHORTCUT_SOMETHING" like "scr_war_scorelimit" for the Score Limit Modifier in Team Deathmatch.

The left part will always look like this: 0x81234567 80876543:

You remove the 0x part. Copy the 8 digits aside with a space once and into the next line. Change the first instance's first 2 digits into 05 and the 3rd ones.

In our example, if you did everything right, it would look like this:

05234564 81234564
05234564

Take the 2nd and 3rd instance and add 4 to them using a calculator or by hand if you're sure about it:

05234564 81234568
05234568

Put XXXXXXXX in the empty code spot:

05234564 81234568
05234568 XXXXXXXX

Surround with an online activator and a terminator line:

20123454 FFFFFFFA
05234564 81234568
05234568 XXXXXXXX
E0000000 80008000

We assumed the online activator is 20123454 FFFFFFFA for our game.

Name the code accordingly and put credits like this:
[Bully@Wiiplaza|YourName]

And yes, don't steal. I did all the brain work you dummy. Rolling Eyes 

Place a note below the code saying that XXXXXXXX is ASCII:

Example Game Type Modifier [Bully@Wiiplaza|YourName]
20123454 FFFFFFFA
05234564 81234568
05234568 XXXXXXXX
E0000000 80008000
*XXXXXXXX = ASCII*

You're basically done, but adding a sentence or default value information can be useful. The 2nd 8 digits from the dvar dump will tell the spot of the original value. We paste it into a hexeditor while the ram dump we used for the dvar dump is loaded and copy the value from there. In ASCII view it should be some number which may be familiar to you if you think about that variable when playing the game type you chose to mod.

Finally, add that information in the code notes as well:

Example Game Type Modifier [Bully@Wiiplaza|YourName]
20123454 FFFFFFFA
05234564 81234568
05234568 XXXXXXXX
E0000000 80008000
*This is an example code that nobody should ever apply*
*XXXXXXXX = ASCII*
31313131 = Default (11111111)

Some legit ones I've made:
http://www.bullywiihacks.com/t3025-search-destroy-modifiers

Remember to see if it works before you post to the codes section. Use the test codes section to allow members to test and report back.

Enjoy!

Please post if you have any questions regarding this tutorial... Wink


_________________
CoD Wii Game Type Modifiers YBjg74I

2CoD Wii Game Type Modifiers Empty Re: CoD Wii Game Type Modifiers 3/17/2014, 4:52 pm

Reclaimer Shawn

Reclaimer Shawn
Code Creator

Also Bully,for some CoD Gametype Modifiers,you can't always repoint the value 4 addresses. For instance,a lot of codes I made for MWR have to be repointed by 8 addresses. What I do is find the nearest null value that isn't being used by anything,and point it there. Sometimes,no null values are near the original,so I find the closest to it and I normally go forwards when doing this. However,it's rare that you'd have to do something like that though.

3CoD Wii Game Type Modifiers Empty Re: CoD Wii Game Type Modifiers 3/17/2014, 11:10 pm

Bully@WiiPlaza

Bully@WiiPlaza
 
 

It's bad practice to rely on in-game values to point to. They may change and mess your code up. It happened to me a few times when I tried to be "smart". Point somewhere and write your value there also, it's fool-proof.


_________________
CoD Wii Game Type Modifiers YBjg74I

Sponsored content



Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum