Welcome to InsomniacGamerZ.net Subscribe to our Vimeo channel! Follow us on Google+! Follow IGZ on Twitter! Like the IGZ page on Facebook! Subscribe to IGZ's Youtube Channel!Mark forums read | View Forum Leaders


InsomniacGamerZ.net







Xbox 360 Modding Tutorials Learn various ways to mod your Xbox 360.

Your Ad Here


Reply
LinkBack Thread Tools Display Modes
How to Mod Black Ops GPD's
Old 03-29-2011, 05:43 PM   #1
Founder


Twis7eD's Avatar

Gamertag: Twis7eD
Location: Chicago, IL
Member No.: 1
Join Date: May 2009
Thanks Received: 1088

Twis7eD is being paid to be this good!Twis7eD is being paid to be this good!Twis7eD is being paid to be this good!Twis7eD is being paid to be this good!Twis7eD is being paid to be this good!Twis7eD is being paid to be this good!Twis7eD is being paid to be this good!Twis7eD is being paid to be this good!Twis7eD is being paid to be this good!Twis7eD is being paid to be this good!Twis7eD is being paid to be this good!
Awards Showcase
Nice Streak! Post It! Dedicated Member 2 Year Anniversary Happy Anniversary! Thanks! Good Citizen Well Connected Streamer Bootlegger Masterchief Uploader 
Total Awards: 18
Send a message via AIM to Twis7eD Send a message via Skype™ to Twis7eD
How to Mod Black Ops GPD's

I was going to write a tutorial on how to do this awhile ago, but never got around to it and then I saw this tutorial awhile back and thought it would just be better to use this one since it is really detailed and good. GPD modding for Black Ops is mostly pointless right now, but you can always just play offline and have fun with it.

Download the Black Ops GPD modder here.

Quote:
You can use all of the left and middle frames of Xero for writing code and it will work in zombies. The right side frame is for multiplayer.

After downloading Xero, download a gpd. This is my latest modded gpd, you can just delete everything in it and start writing your own code.

First we start with this:
Code:
set gpad_buttonsConfig "null"


Now, I'm going to assume you're COMPLETELY new to all this, so I'll explain what this does.

set is a command that sets the value of a dvar - which is basically a setting in the game. For example, a simple dvar is start_in_mp . It only has two values, "0", and "1". If you change the options so the game doesn't start in multiplayer, the value would be "0". Likewise, if you have the game set to load in mulitplayer, the value would be "1".

The dvar being set here is none other than gpad_buttonsConfig - the dvar that tells the game what controls to load.

The third part of that code is the dvar's value, "null" . It doesn't actually have to be set to "null", it can be set to anything that isn't already a preset button layout. If we made its value "asdfgh", it would serve the same purpose.

Now we add a couple more lines of code:

Code:
set gpad_buttonsConfig "null"
set zombiefive_discovered "1"
set clanName "walk"


These two are pretty self-explanatory. zombiefive_discovered tells the game whether or not the zombie map "Five" is unlocked, and clanName is, obviously, the clan tag. I've set it to "walk" so that people know that they inejcted the correct gpd into their profile. You can change it to any four digit alphanumeric combination.

Now we get to the fun part.

Code:
set gpad_buttonsConfig "null"
set zombiefive_discovered "1"
set clanName "walk"
bind DPAD_UP "god"

bind is the command that tells the game what to do when a certain button is pressed. In this case, DPAD_UP is binded to "god". "God" is a command in the game that gives you godmode. A full list of commands and the names of the buttons are at the end of this tutorial.

So lets add a few more binds...

Code:
set gpad_buttonsConfig "null"
set zombiefive_discovered "1"
set clanName "walk"
bind DPAD_UP "god"
bind DAPD_DOWN "dropweapon"
bind DPAD_RIGHT "give ray_gun_upgraded_zm"
bind BUTTON_RSHLDR "noclip"


You SHOULD be able to figure out MOST of what was added, but of course, I will explain. dropweapon will drop your current weapon... give is a command that gives the player a certain gun, in this case the raygun. A full list of the guns for Kino and Five will be at the end of the tutorial. noclip is like spectating in free mode, you can fly around and go through the walls, it's pretty fun.

If you understand all that, then the rest won't be too hard...

When making one button do more than one thing, we do the following:

Code:
set gpad_buttonsConfig "null"
set zombiefive_discovered "1"
set clanName "walk"
bind DPAD_UP "god"
bind DAPD_DOWN "dropweapon"
bind DPAD_RIGHT "give ray_gun_upgraded_zm"
bind BUTTON_RSHLDR "noclip"
bind BUTTON_LSHLDR "notarget ; ai axis delete"


Take a look at the last line of code I put in. There are two commands there. notarget will make you invisible to the zombies, they will utterly ignore your existance; unfortunately, it also doesn't give you points for killing them... ai axis delete is all one command. It just deletes all the bots at the time it is activated. As you can see, the two commands are separated by a semicolon. That is how you give something multiple values. You can add as many functions as space permits, so long as you separate them with semicolons. You'll notice that there is a space before and after the semicolon; these spaces are unneccessary and just added to make the code easier to read.

Now what if we want something like super speed?
Code:
set gpad_buttonsConfig "null"
set zombiefive_discovered "1"
set clanName "walk"
bind DPAD_UP "god"
bind DAPD_DOWN "dropweapon"
bind DPAD_RIGHT "give ray_gun_upgraded_zm"
bind BUTTON_RSHLDR "noclip"
bind BUTTON_LSHLDR "notarget ; ai axis delete"
bind DPAD_LEFT "set g_speed 400"


g_speed sets the player speed (walking and sprinting). This MIGHT confuse you a little. Normally we put quotes around the value of a dvar, but in this case, the dvar is being set within a bind, so the quotes go around the value of the bind.

Now, we bind a dvar and a command to one button

Most of the users on 7s probably know most of this anyway, so this is just a very basic tutorial on modding GPDs.

Contrary to what I thought before, you can COMPLETELY empty the frames in Xero and fill them with nothing but mods. So, open up Xero and get ready to follow along.

First we start with this:

Code:
set gpad_buttonsConfig "null"


Now, I'm going to assume you're COMPLETELY new to all this, so I'll explain what this does.

set is a command that sets the value of a dvar - which is basically a setting in the game. For example, a simple dvar is start_in_mp . It only has two values, "0", and "1". If you change the options so the game doesn't start in multiplayer, the value would be "0". Likewise, if you have the game set to load in mulitplayer, the value would be "1".

The dvar being set here is none other than gpad_buttonsConfig - the dvar that tells the game what controls to load.

The third part of that code is the dvar's value, "null" . It doesn't actually have to be set to "null", it can be set to anything that isn't already a preset button layout. If we made its value "asdfgh", it would serve the same purpose.

Now we add a couple more lines of code:

Code:
set gpad_buttonsConfig "null"
set zombiefive_discovered "1"
set clanName "walk"


These two are pretty self-explanatory. zombiefive_discovered tells the game whether or not the zombie map "Five" is unlocked, and clanName is, obviously, the clan tag. I've set it to "walk" so that people know that they inejcted the correct gpd into their profile. You can change it to any four digit alphanumeric combination.

Now we get to the fun part.

Code:
set gpad_buttonsConfig "null"
set zombiefive_discovered "1"
set clanName "walk"
bind DPAD_UP "god"

bind is the command that tells the game what to do when a certain button is pressed. In this case, DPAD_UP is binded to "god". "God" is a command in the game that gives you godmode. A full list of commands and the names of the buttons are at the end of this tutorial.

So lets add a few more binds...

Code:
set gpad_buttonsConfig "null"
set zombiefive_discovered "1"
set clanName "walk"
bind DPAD_UP "god"
bind DAPD_DOWN "dropweapon"
bind DPAD_RIGHT "give ray_gun_upgraded_zm"
bind BUTTON_RSHLDR "noclip"


You SHOULD be able to figure out MOST of what was added, but of course, I will explain. dropweapon will drop your current weapon... give is a command that gives the player a certain gun, in this case the raygun. A full list of the guns for Kino and Five will be at the end of the tutorial. noclip is like spectating in free mode, you can fly around and go through the walls, it's pretty fun.

If you understand all that, then the rest won't be too hard...

When making one button do more than one thing, we do the following:

Code:
set gpad_buttonsConfig "null"
set zombiefive_discovered "1"
set clanName "walk"
bind DPAD_UP "god"
bind DAPD_DOWN "dropweapon"
bind DPAD_RIGHT "give ray_gun_upgraded_zm"
bind BUTTON_RSHLDR "noclip"
bind BUTTON_LSHLDR "notarget ; ai axis delete"


Take a look at the last line of code I put in. There are two commands there. notarget will make you invisible to the zombies, they will utterly ignore your existance; unfortunately, it also doesn't give you points for killing them... ai axis delete is all one command. It just deletes all the bots at the time it is activated. As you can see, the two commands are separated by a semicolon. That is how you give something multiple values. You can add as many functions as space permits, so long as you separate them with semicolons. You'll notice that there is a space before and after the semicolon; these spaces are unneccessary and just added to make the code easier to read. Also, the case of the letters doesn't matter. You can write "BiND BuTTOn_LsHlDr NOtARget" and it will be the same thing.

Now what if we want something like super speed?
Code:
set gpad_buttonsConfig "null"
set zombiefive_discovered "1"
set clanName "walk"
bind DPAD_UP "god"
bind DAPD_DOWN "dropweapon"
bind DPAD_RIGHT "give ray_gun_upgraded_zm"
bind BUTTON_RSHLDR "noclip"
bind BUTTON_LSHLDR "notarget ; ai axis delete"
bind DPAD_LEFT "set g_speed 400"
bind BUTTON_RSTICK "ai axis delete;set ai_disablespawn 1"


The dvar ai_disablespawn is pretty obvious... it disables the ai spawning... "BUTTON_RSTICK" is the right thumbstick when pressed. With this bind, when we press the right thumbstick, it will delete all the zombies and stop them from spawning. Unfortunately, if you press it again, it won't enable their spawning because it's setting ai_disablespawn to 1 every time it's pressed. So what if we want to TOGGLE the dvar between values?

Code:
set gpad_buttonsConfig "null"
set zombiefive_discovered "1"
set clanName "walk"
bind DPAD_UP "god"
bind DAPD_DOWN "dropweapon"
bind DPAD_RIGHT "give ray_gun_upgraded_zm"
bind BUTTON_RSHLDR "noclip"
bind BUTTON_LSHLDR "notarget ; ai axis delete"
bind DPAD_LEFT "set g_speed 400"
bind BUTTON_RSTICK "ai axis delete;toggle ai_disablespawn"


I've replaced "set" with "toggle" and removed the value. ai_disablespawn only has two values, so "toggle" will set it to whichever value it wasn't. If the value was "1" and we toggle it, it becomes "0".

What if we want to toggle OUR values?
Code:
set gpad_buttonsConfig "null"
set zombiefive_discovered "1"
set clanName "walk"
bind DPAD_UP "god"
bind DAPD_DOWN "dropweapon"
bind DPAD_RIGHT "give ray_gun_upgraded_zm"
bind BUTTON_RSHLDR "noclip"
bind BUTTON_LSHLDR "notarget ; ai axis delete"
bind DPAD_LEFT "set g_speed 400"
bind BUTTON_RSTICK "ai axis delete;set ai_disablespawn 1"
bind BUTTON_LSTICK "toggle timescale 1 2 .2"


timescale is the speed the game is running. Its highest value is 2, which will make everything happen twice as fast. When we press the left thumbstick, it will activate the toggle. The value is already "1" by default, so it goes to the second value, "2". The first time you press the left thumbstick, it will make the game go twice as fast (it will probably lag though). When you press it again, it goes to the next value, ".2", which will make the game go in slow motion (bye bye lag). A third press sets it back to normal. For some reason, if the default value isn't the first of the toggled values, it will get stay at the last value. I HAVE NO IDEA WHY.


If you understand all of this, you can use the commands and dvars below to make your own modded GPD!!! For a more advanced GPD, see my tutorial on using "vstr", also shown below.

Commands, Dvars, Buttons, and weapons. (thank you "Watch How I Mod" for all but a few of them!)

Commands:


Dvars:





Weapons:

Specials


Weapons for Kino Der Toten


Weaopns for Five







Buttons:





__________________
Quote:
Originally Posted by xxxTWiLkSxxx View Post
i took a sip out of my dads budwiser when i was like 5 because i was really thristy




Twis7eD is offline   Reply With Quote
Your Ad Here
Old 03-29-2011, 10:01 PM   #2
Exclusive Member


DirtyUncleChris's Avatar

Gamertag: DirtyUncleChris
Location: MA
Member No.: 2199
Join Date: Jan 2010
Thanks Received: 27
Tip: Make sure you stay offline with that.. 5 min on Black Ops server will end up in a ban in a matter of minutes..
DirtyUncleChris is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Your Ad Here

All times are GMT -5. The time now is 06:55 PM.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.6.0 PL2 ©2009-2012, InsomniacGamerZ
Ad Management by RedTyger
This website is not affiliated with Microsoft Corp. Microsoft, Xbox, and Xbox logos are trademarks of Microsoft Corp.


Designed By LegitDesigns

Popular Tutorials


How to Get Free Netflix in the Xbox 360 Dashboard
[MW2]How to Set Up Mods on a JTAG'd Xbox
How to Unban a JTAG'd Xbox 360
[MW2]How to Mod Your Gamertag
How to Mod Your Gamerscore
How To Game Save
[H3]How to Bridge Host
[GoW2]How to Bridge Host
How to do Real Time Halo for Halo 3
How to Mod in Halo 3 Matchmaking
How to Burn Xbox 360 Games
How to Fix Red Rings of Death



Important Links

Donating and its Benefits
IGZ Trusted Members List
Rules
[Official]IGZ Youtube Account & Gamertag

Easy Navigation
IGZ Arcade
Awards
Halo 3 Leveling
Xbox Live Gamerscore Leaderboards
User Control Panel
Premium Forums(Purchase Premium)