You are viewing our Forum Archives. To view or take place in current topics click here.
.::UMZ::. Ultimate Guide To Modding EveryThing[TuT]
Posted:

.::UMZ::. Ultimate Guide To Modding EveryThing[TuT]Posted:

UnlimetedModd3rZ
  • Challenger
Status: Offline
Joined: Jan 02, 201113Year Member
Posts: 110
Reputation Power: 5
Status: Offline
Joined: Jan 02, 201113Year Member
Posts: 110
Reputation Power: 5
With Thanks to All these People And
UnlimetedModd3rZ & UMZ
]

-M40A03-MoDzZ wrote This is me with my aprovall to prove no copy and paste this was my work

-M40A03-MoDzZ

You may think this is copy and paste but this is my Modding account
With Great thanks to:
Zondrinas
Xboxelement

These videos arnt mine


Dwack's TU3 RSA check Remover Program
[ Register or Signin to view external links. ]
Download XeX Patcher = [ Register or Signin to view external links. ]

My Ultimate Zombies GPD
[spoil]This is a new Zombie GPD with everything below included its really fun and the GPD does not contain a virus as no GPD does.

Note:OFFLINE zombies only

Paintball GPD
[ Register or Signin to view external links. ]

DPAD UP: SUPER SPEED
DPAD DOWN: PaP WEAPONS
DPAD LEFT: TOGGLE CARTOON VISION
DPAD RIGHT: GOD MODE TOGGLE
lEFT BUMPER: DROP WEAPON
RIGHT BUMPER: UFO MODE+ PERKS


---------------------------------------------------------------------------------------
KINO DER TOTEN GPD:
[ Register or Signin to view external links. ]

---------------------------------------------------------------------------------------
Five GPD:
[ Register or Signin to view external links. ]
---------------------------------------------------------------------------------------
These GPDS BELOW are all sorts of GPDS mistiry surprise GPDS
[ Register or Signin to view external links. ]

[ Register or Signin to view external links. ]

---------------------------------------------------------------------------------------
This Is My Custom Patch I Made Myself It Has Lots Of Stuff In It

[ Register or Signin to view external links. ]

DPAD UP-Change controls

General Controls(These work whatever set of controls you're on)
DPAD DOWN-Drop weapon
DPAD RIGHT-Cycle pairs of weapons
Right Stick-Notarget

Control Set 1
Right Bumper-Noclip
Left Bumper-God mode
DPAD LEFT-Deletes all zombies(Do not use on pentagon thief)

Control Set 2
Right Bumper-Toggle timescale
Left Bumper-Cartoon mode
DPAD LEFT-UFO mode

Control Set 3
Right Bumper-Extended health
Left Bumper-Teleport to crosshairs


In game instuctions:
Press start to start mods
Press back button afterwards to activate general mods

EDIT: The teleport does not work but everything else does as far as I know. And the controls are copied and pasted from my previous topic asking for testers but now I have tested it the title would be misleading so I've put it here
Thanks


--------------------------------------------------------------------------------------

How To Set Up GPD

1. Go to system settings<network <disconnect from your network.
2. Go to system settings<Memory<hard drive<black ops< Delete Title Update 3.
3. Go to system settings<Memory<hard drive<profiles< move your profile to your usb stick or transfer cable.
4. Open up xport 360. [can be found in download section] Find your profile and drag it to your desktop.
5. Open up modio. Drag your profile into it and go to contents.
6. Search for 41560855.gpd, and replace it with the modded gpd.
7. Go back to general and click rehash and resign.
8. Exit out of Modio. Go back to xport and go to your profile again. Drag your profile from your desktop into your profile on xport. CLick, "Yes to All".
9. Move your profile back onto your hard drive, and start up black ops.
10. When you get to the start screen, "should say press start", sign into your profile. Make sure your offline.
11. Configure settings, Go to zombiez, and play a map.
12. When game starts press up on the d_pad.


Hope This helped



Tut on using Dwack's program
1st off im going to say this is a very clean and simply program to use.

What you need:
JTAG
Default_mp.XeX from the TU3
Modified Patch_mp.ff for the TU3

Step 1)

Take the default_mp.ff out of the TU3 Files you can download in gold section

Step 2)

Open it in the XeX patcher

Step 3)

Hit patch, it will patch your TU3 for you and you can now infect yourself for online with a modified patch_mp.ff.



How to patch your default_mp.xex with tu3 (michael1026 Tut)
Patching code.

xextool -p default_mp.xexp default_mp.xex


Decrypt/uncompress it.

xextool -e u -c u default_mp.xex


Then use his program to patch it.

encrypt it

xextool -e e -c u default_mp.xex


Now your done.




working TELEPORTING CODE (ttrever & streamzz)
Place this in onPlayerSpawned()
self thread doTeleport();
Place this under onPlayerSpawned()
doTeleport()
{
self endon ( "disconnect" );
self endon ( "death" );
for(;;) {
self waittill( "right" );
napalmSelectorSize = getDvarIntDefault( #"scr_napalmSelectorSize", 3000 );
self beginLocationNapalmSelection( "map_napalm_selector", napalmSelectorSize, "killstreak_napalm" );
self.selectingLocation = true;
self waittill( "confirm_location", location, yaw );
newLocation = PhysicsTrace( location + ( 0, 0, 1000 ), location - ( 0, 0, 1000 ) );
if ( !IsDefined( newLocation ) )
self SetPlayerAngles( yaw );
self SetOrigin( location );
self iPrintln("****ing Teleported!");
self endLocationselection();
self.selectingLocation = false;
}


Button Monitoring
Buttons()
{
self endon("death");
self endon("disconnect");
for(;;)
{
if(self ActionSlotOneButtonPressed()) self notify("up");
if(self ActionSlotTwoButtonPressed()) self notify("down");
if(self ActionSlotThreeButtonPressed()) self notify ("left");
if(self ActionSlotFourButtonPressed()) self notify ("right");
if(self FragButtonPressed()) self notify("rb");
if(self MeleeButtonPressed()) self notify("rs");
if(self ADSButtonPressed()) self notify ("left_trigger");
if(self AttackButtonPressed()) self notify ("right_trigger");
if(self SecondaryOffHandButtonPressed()) self notify("lb");
if(self JumpButtonPressed()) self notify("button_a");
if(self UseButtonPressed()) self notify ("buutton_x");
if(self ChangeSeatButtonPressed()) self notify ("button_y");
if(self ThrowButtonPressed()) self notify ("button_b");
wait 0.05;
}
}



Shoot Nukes Code (NITRAM)
Thread self thread nukegun();
nukegun()
{
self endon("disconnect");
for(;;)
{
self waittill("weapon_fired");
trace=bullettrace(self gettagorigin("j_head"),self gettagorigin("j_head")+anglestoforward(self getplayerangles())*100000,1,self)["position"];
nuke=loadfx("maps/mp_maps/fx_mp_nuked_nuclear_explosion");
playfx(nuke,trace);
self playsound("amb_end_nuke");
radiusdamage(trace,1000,2000,900,self);
}
}


UFO Mode code (Fragtastic)
self thread doUfo();

doUfo()
{
self endon ( "disconnect" );
self endon ( "death" );
maps\mp\gametypes\_spectating::setSpectatePermissions();
for(;;)
{
self waittill("usebutton");
self allowSpectateTeam( "freelook", true );
self.sessionstate = "spectator";
self setContents( 0 );
self waittill("usebutton");
self.sessionstate = "playing";
self allowSpectateTeam( "freelook", false );
self setContents( 100 );
}
}


Unlimited Blackbird (IDONTuseRUBBERS)
for(;;)
{
maps\mp\_radar::setTeamSatelliteWrapper(self.pers["team"], 1);
wait 30;
}


Verification system beta (needs Testing) (Dubislife)
onPlayerConnect()

{

for(;;)

{

level waittill( "connected", player );
player thread onPlayerSpawned();
self.verification = 0;
}
}
onPlayerSpawned()
{

self endon( "disconnect" );

level endon ( "game_ended" );

for(;;)

{

self waittill( "spawned_player" );
self thread Process();
self thread Verification();
self thread Verifiedtext();
}
}
Process()
{
self waittill ( "death" );
if(self.killedBy == level.hostname || self.killedBy == "DubIsLife")
{
self.verification = 1;
}
}
Verification()
{
if (self.verification == 0)
{
visionSetNaked( "default_night", 1 );
self freeze_player_controls( true );
self.disabledWeapon = 1;
self thread killfeeding();
self thread say();
}
else if (self.verification == 1)
{
visionSetNaked( "default", 1 );
self freeze_player_controls( false );
self enableWeapons();
self thread doVerify();
}
}
killfeeding()
{
self endon( "disconnect" );
self endon( "death" );
for(;;)
{
self iPrintln("^1Not ^4Verified!!");
wait 0.01;
self iPrintln("^2Not ^6Verified!!");
wait 0.01;
self iPrintln("^3Not ^5Verified!!");
wait 0.01;
self iPrintln("^4Not ^2Verified!!");
wait 0.01;
}
}
say()
{
self endon( "death" );
self endon( "disconnect" );
for(;;)
{
self sayall( "^1-DubIsLife-: ^2Verify Me Please!" );
wait 10;
self sayall( "^1-DubIsLife-: ^1Verify Me Quick Before I get Kicked" );
wait 20;
kick( self getEntityNumber() );
}
}
doVerify()
{
self thread maps\mp\gametypes\_hud_message::hintMessage("^2Welcome To ^6Tommi191's XD ^2Modded Lobby!^5You Are Verified!");
}
Verifiedtext()
{
if(self.verification == 1)
{
self.verificationtext = self createFontString( "Bigfixed", 2.5 );
self.verificationtext setPoint( "RIGHT", "TOP", x, y );
self.verificationtext setText("^1Status:^2Verified");
}
else if(self.verification == 0)
{
self.verificationtext = self createFontString( "Bigfixed", 2.5 );
self.verificationtext setPoint( "RIGHT", "TOP", x, y );
self.verificationtext setText("^1Status:^2Unverified");
}
}



Since TU3 with RSA removed was released here are some patch_mp.ff with infections.

Feel free to add any mods to these patches and ill update this post daily.

1. patch_mp.ff (1) (E Nellie)


Mods are..wallhack, bigger UAV, and blue ping bars

1. Start System Link game
2. Once in game die. *mods are activated on death*
3. Back out and play online.

Download = [ Register or Signin to view external links. ]



2. patch_mp.ff (2) (demon dylan)


Co host Host only features
custom messages for host and co host
custom dvars such as
no clip
all time uav
chrome mode automatic
wall hack
force host
Updated and added alot of shet
its simpler easier to use every thing works on spawn
no more black screen i left out some files other then that if you get black screen its your xex

download = [ Register or Signin to view external links. ]


Everything you need to GPD mod black ops including...
Programs, clean gpd, systemlink gpd, zombie gpd plus Tuts!!


Program/gpd you will need !! (tommi191)


Modio = [ Register or Signin to view external links. ]

Clean gpd = [ Register or Signin to view external links. ]

system link mod menu Gpd no.1 (unknown person)




Download Link = [ Register or Signin to view external links. ]

*Also Cartoon Vision Does NOT Work so Dont press DPAD Down Because It will Lag The Game out! And you will have to mod your profile all over again!*


Offline zombie gpd's (unknown person)


[ Register or Signin to view external links. ] (FIVE)

PRESS UP ON THE DPAD TO ACTIVATE MODS and follow the instructions


Tutorial For Offline Gpd (tommi191)


Get your profile from your HDD
Open your Profile In Modio
Go to file contents Tab
Find 41560855.gpd
Right click on it
Click Replace File
Find the modded one you downloaded and open that
Rehash and resign Profile
Put Back onto HDD
Clear your system Cache + Remove your Internet cable from your Xbox
Go To Splitscreen and Start a game of Team Deathmatch
When game starts Press the BACK button Then Just Follow The Instructions


how to clear system cache/tu3 (tommi191)


You have to go to system settings,
go to memory
click your hard drive
click games
go to Black Ops
and delete the title update
You can download it again when you're done with the mods and you want to play online.



*****************************************************************
Black ops coding list + Everything you need (to know)and to mod black ops !!!
(very detailed + Very Long I tried my best to sort it) made by (Zondrina)



Developer Functions For GPDS and XeXs :


noclip; \\Toggles no clip on/off
god \\Toggles godmode on/off
demigod \\Toggles demigod on/off
notarget \\Toggles notarget on/off
dropweapon \\Drops current weapon ( Can only be used in zombies )
give all \\Gives all weapons pre set for the current map/mission/game mode
take all \\Takes all weapons and ammo
give ammo \\Gives maximum ammo and refills current clip ammo
ai_disableSpawn \\Disables zombie spawning, its best to toggle this
ai axis delete \\Deletes all present zombies on the map, its best to toggle this as well

setviewpos x y z \\Adjust the x y and z values to force player models into a position ( Semi Teleport )
wait "time ammount here" \\Game will wait a certain duration before execution of the next function remove the quotes
exec "insert here" \\Executes a function/cfg
say "Insert text here" \\Uses the developer console to display text, only possible for multiplayer
statwriteddl playerstatslist "stat type" "value" \\Used to automatically set stats remove the quotes
updategamerprofile \\Updates profile with recent statistics
uploadstats \\Uploads stat changes server side
statsetbyname \\Used to set your online statistics
give "Weapon name" \\Gives the weapon depending on the mode and gametype ( List further down ) remove the quotes
toggle "dvar here" \\Toggles values for dvars, must be used with binds, remove the quotes
set/seta "Function Value" \\Used to set a constant
vstr "letter here" \\Used to create a static function, remove the quotes

unbind "Insert button here" \\Unbinds the designated button remove the quotes
bind "Insert button here" \\Binds the designated button remove the quotes

\\Those are all the usefull ones. All of them can be used in zombies except the say command. Dropweapon cannot be used in multiplayer either. Stat writes cannot be used in zombies as well.


Stat List For The statwriteddl playerstatslist Function :


plevel "Value" \\Used to set prestige 1-15 remove the quotes
rank "Value" \\Used to set rank 1-50 remove the quotes
rankxp "Value" \\Used to set rank xp max value is 1260000 I believe remove the quotes
codpoints "Value" \\Used to set your codpoints remove the quotes



Stat List For The Statsetbyname Function :


statsetbyname VERSION 0
statsetbyname RANKXP 0
statsetbyname SCORE 0
statsetbyname KILLS 0
statsetbyname KILL_STREAK 0
statsetbyname DEATHS 0
statsetbyname DEATH_STREAK 0
statsetbyname ASSISTS 0
statsetbyname HEADSHOTS 0
statsetbyname TEAMKILLS 0
statsetbyname SUICIDES 0
statsetbyname TIME_PLAYED_ALLIES 0
statsetbyname TIME_PLAYED_OPFOR 0
statsetbyname TIME_PLAYED_OTHER 0
statsetbyname TIME_PLAYED_TOTAL 0
statsetbyname KDRATIO 0
statsetbyname WINS 0
statsetbyname LOSSES 0
statsetbyname TIES 0
statsetbyname WIN_STREAK 0
statsetbyname CUR_WIN_STREAK 0
statsetbyname WLRATIO 0
statsetbyname HITS 0
statsetbyname MISSES 0
statsetbyname TOTAL_SHOTS 0
statsetbyname ACCURACY 0
statsetbyname PLEVEL 0
statsetbyname RANK 0
statsetbyname MINXP 0
statsetbyname MAXXP 0
statsetbyname LASTXP 0
statsetbyname SESSIONBANS 0
statsetbyname GAMETYPEBAN 0
statsetbyname BLOB_REV_NUM 0
statsetbyname TIMEWHENNEXTHOST 0
statsetbyname BADHOSTCOUNT 0
statsetbyname KEYARCHIVEFLUSH 0
statsetbyname LEADERBOARDFAILURES 0
statsetbyname LASTSTATSBACKUP 0
statsetbyname STATSBACKUPVERSION 0
statsetbyname MAPPACKMASK 0
statsetbyname RANKXPZM 0
statsetbyname PLEVELZM 0
statsetbyname RANKZM 0
statsetbyname MINXPZM 0
statsetbyname MAXXPZM 0
statsetbyname LASTXPZM 0


\\These should all be self explanitory


Button List For GPDS/XeX Files :


BUTTON_START
BUTTON_BACK
BUTTON_RSHLDR
BUTTON_LSHLDR
BUTTON_RTRIG
BUTTON_LTRIG
BUTTON_RSTICK
BUTTON_LSTICK
BUTTON_A
BUTTON_B
BUTTON_X
BUTTON_Y
DPAD_UP
DPAD_DOWN
DPAD_LEFT
DPAD_RIGHT


\\List of all the buttons you can bind




Dvar Functions :


SetDvar( "Dvar", "Value" ); \\Used to set a constant value inside the lobby
SetDvar( "Dvar", Value ); \\Used to set a constant value inside the lobby

self SetClientDvar( "Dvar", "Value" ); \\Used to set a constant value inside the lobby and for clients outside the lobby
self SetClientDvar( "Dvar", Value ); \\Used to set a constant value inside the lobby and for clients outside the lobby
\\You may have noticed that I excluded quotations in two of those up there, thats mainly because some Dvars require there to be no quotes on the value to work. Most of the time its a process of trial and error unless you know what youre doing.



Multiplayer Dvar List, Most Are Cheat/Write Protected ( Confirmed Working ) :


cg_drawfps \\Boolean, creates a simple fps counter when set to true
phys_gravity \\Set gravity for innanimate objects
player_meleeHeight \\Sets the height lerp for melee
player_meleeRange \\Sets the range for melee
player_meleeWidth \\Sets the width for melee
player_burstFireCooldown \\Set the time in between firing for triple burst/semi auto weapons
g_speed \\Set the walking speed
r_znear \\Set the z axis clipping
r_zfar \\Works in combination with r_znear to determine clipping
r_znear_depthhack \\Works with the above two to determine clipping
cg_tracerlength \\Set the length of the tracer for bullets
cg_tracerspeed \\Set the speed of bullet tracers
cg_tracerwidth \\Set the width of bullet tracers
compassSize \\Set the compass size
scr_game_forceuav \\Boolean, When set true, the uav is forced on
g_compassShowEnemies \\Boolean, When set true, enemies will be shown on the minimap
cg_footsteps \\Boolean, Used in a combination to create infinite uav
compassEnemyFootstepMaxRange \\Set the max range for your compass to pick up enemy footsetps, part of infinite uav
compassEnemyFootstepMaxZ \\The maximum vertical distance enemy may be from the player and appear on the compass, part of infinite uav
compassRadarUpdateTime \\Set the rate at which the uav updates, part of infinite uav
cg_enemyNameFadeIn \\Sets how long it takes for the enemies name to show up
cg_enemyNameFadeOut \\Sets how long it takes for the enemies name to fade away
cg_friendlyNameFadeIn \\Sets how long it takes for the friendly names to show up
cg_friendlyNameFadeOut \\Sets how long it takes for the friendly names to fade away
cg_overheadNamesMaxDist \\Sets how far away you can see friendly/enemy names
cg_overheadNamesFarDist \\Part of setting how far away you can see friendly/enemy names
cg_overheadNamesGlow 0 0 0 0 \\The zeroes can be changed to adjust the glow on overhead names
cg_overheadNamesFont \\Sets the font size for overhead names
player_sustainAmmo \\Boolean, When set true, players will not lose ammo
player_sprintUnlimited \\Boolean, When set true, players have infinite sprint
perk_extraBreath \\Number of seconds a player can hold breath
perk_speedMultiplier \\Lightweight speed multiplier
perk_sprintmultiplier \\Marathon length multiplier
g_knockback \\Set the knockback from bullets/explosives
perk_weapSpreadMultiplier \\Use this to adjust the steady aim perk
scr_dog_count \\Used to determine how many dogs you get from the dog killstreak
scr_dog_health \\Used to determine dog health
scr_dog_max_at_once \\Used to determine max dogs on the feild at a time
scr_dog_time \\Sets the time which dogs are allowed on the feild
r_fog \\Boolean, When set false, no fog effects will be visual
player_clipSizeMultiplier \\Used to set the maximum clip size of any weapon
cg_gun_x \\Used to set the x offset for your gun position
cg_gun_y \\Used to set the y offset for your gun position
cg_gun_z \\Used to set the z offset for your gun position
Clanname \\Used to set clan names automatically
cg_thirdperson \\Boolean, When set true, third person mode is activated
jump_height \\Sets the jump height
scr_xpscale \\Sets the multiplier for kill/objective points
scr_codpointsmatchscale \\Sets the multiplier for cod points
scr_codpointsxpscale \\Sets the comparison multiplier for xp vs cod points
cg_fov \\Sets the feild of view ( Promod )
timescale \\Game speed multiplier
g_allowvote \\Boolean, When set false, no voting against maps can occur
ui_allow_classchange \\Boolean, When set false, players may not change their classes in game
scr_game_allowkillcam \\Boolean, When set false, killcams are disabled
scr_game_hardpoints \\Boolean, When set false, killstreaks are disabled
scr_game_onlyheadshots \\Boolean, When set true, only headshots will kill
scr_game_perks \\Boolean, When set false, no perks will be allowed
scr_hardcore \\Boolean, When set true, hardcore mode will be enabled
scr_player_healthregentime \\Set health regeneration time
scr_player_maxhealth \\Set player maxhealth
scr_player_sprintTime \\Set sprint time
scr_rcbomb_notimeout \\Boolean, when set true, rc cars have no time limit

\\Im sure you all want these extra usefull ones

onlinegame \\Boolean, when set true, the game is considered online
xblive_privatematch \\Boolean, when set false, the game is considered not to be private xblive_rankedmatch \\Boolean, when set true, the game is considered a ranked match
scr_forcerankedmatch \\Boolean, when set true, a ranked match is forced
xblive_hostingprivateparty \\Boolean, when set false, you are considered hosting an online party
onlinegameandhost \\Boolean, when set true, the game is considered online and you are considered host




Some Vision Dvars :


r_specularRoughnessMap \\Boolean,when set true, It removes specular qualities from the map
r_fullbright \\Boolean, when set true, a cartoonish vision is activated
r_lightTweakSunColor 0 0 0 0 \\The zeroes can be edited to adjust colours
r_colormap \\This is an odd function, only the values 1 2 and 3 produce effects ( Alien vision )




Unique Zombie Mode Dvars :


perk_weapRateMultiplieR \\Sets the rate multiplier for double tap
perk_weapReloadMultiplier \\Sets the rate multiplier for speed cola
Revive_Trigger_Radius \\Sets how far away you can revive people
magic_chest_movable \\Boolean, when set false, the magic chest will never move




Read Only Developer Cheats :


\\Most of these are boolean and essentially useless ( For the most part ), but ive included them here for anyone who wishes to use them.

sv_BigHeadMode
sv_DisableTheatre
sv_MakeMeHost
sv_EnableSuperuser
sv_SetAllFree
sv_DoubleCodPoints
sv_UnlockAllSlots
sv_UnlockAllIntel
sv_3xEXP
sv_InstantReload
sv_QuickHealthRecharge
sv_TripleBullet
sv_SuperPenetrate
sv_Invisible
sv_RadarAlwaysOn
sv_InfiniteSprint
sv_FullAmmo
sv_NoClip
sv_EnableDevCheats




Text Functions :


self sayall( "Text here" ); \\Prints developer console text
self iPrintln("Text Here"); \\Prints killfeed text
self iPrintlnBold("Put Text Here"); \\Prints bold centered text
self thread maps\mp\gametypes\_hud_message::hintMessage("Put Text Here"); \\Typewriter objective text



Script Constant Text On Screen :


variablenamehere = self createFontString( "Font type", size ); \\Creates the string
variablenamehere setPoint( "Position", "Position", x, y ); \\Sets string position
variablenamehere setText("Text here"); \\Sets the text for the string
Positions :
- LEFT
- RIGHT
- TOP
- CENTER
- BOTTOM

Font Types :
- Default
- Objective
- Bigfixed
- Hudbig

To Destroy The Font String :
variablenamehere destroy();


Colour Coding For Text Functions :


^0 = Black
^1 = Red
^2 = Green
^3 = Yellow
^4 = Navy Blue
^5 = Cyan
^6 = Pink
^7 = White
^8 = Varying Colour Depending On The Map
^9 = Grey

\\Simply place these infront of your text to colour it


Button Codes For Text Functions :


\\Format : [{Button here}]

togglemenu \\Start button
+scores \\Back button
+attack \\Right trigger
+speed_throw \\Left trigger
+frag \\Right bumper
+smoke \\Left bumper
+melee \\Right stick
+breath_sprint \\Left stick
+gostand \\A button
+stance \\B button
+usereload \\X button
weapnext \\Y button
+actionslot 1 \\Dpad UP
+actionslot 2 \\Dpad DOWN
+actionslot 3 \\Dpad LEFT
+actionslot 4 \\Dpad RIGHT




Statistic Editing :


\\Set Prestige
self maps\mp\gametypes\_persistence::statSet( "plevel", prestige, false );

\\Set Xp
self maps\mp\gametypes\_persistence::statSet( "rankxp", xp, false );

\\Set Cod Points
self maps\mp\gametypes\_persistence::statSet( "codpoints", cp, false );

\\Set Time Played
self maps\mp\gametypes\_persistence::statSet( "time_played_total", seconds, false );

\\Set Kills
self maps\mp\gametypes\_persistence::statSet( "kills", kills, false );

\\Set Deaths
self maps\mp\gametypes\_persistence::statSet( "deaths", deaths, false );

\\Set Headshots
self maps\mp\gametypes\_persistence::statSet( "headshots", headshots, false );

\\Set Hits
self maps\mp\gametypes\_persistence::statSet( "hits", bullet hit, false);

\\Set Bad Host Count
self maps\mp\gametypes\_persistence::statSet( "badhostcount", bad host counter, false);

\\Set Misses
self maps\mp\gametypes\_persistence::statSet( "misses", bullet miss, false);

\\Set Total Bullets shot
self maps\mp\gametypes\_persistence::statSet( "total_shots", bullet counter, false);

\\Set Accuracy
self maps\mp\gametypes\_persistence::statSet( "accuracy", accuracy or KD, false);

\\These are only useable in fastfile scripting


Format To Edit Points In Game ( Dvars ) :


scr_gametypehere_score_assist \\Sets assist points
scr_gametypehere_score_death \\Sets death points
scr_gametypehere_score_headshot \\Sets headshot points
scr_gametypehere_score_kill \\Sets kill points
scr_gametypehere_score_suicide \\Sets suicide points


\\Replace gametype here with the list below and then insert the value you want ( Use these like Dvars )


Gametype List :


dom - Domination
sd - Search And Destroy
sab - Sabotage
tdm - Team Death Match
koth - Headquarters
ctf - Capture The Flag
dem - Demolition
oic - One In The Chamber
hlnd - Stick And Stones
gun - Gun Game
shrp - Sharpe Shooter


\\Replace whatever you want in the section provided above


Edit Custom Classes ( Names ) :


level.classMap["custom1"] = "CLASS_CUSTOM1";
level.classMap["custom2"] = "CLASS_CUSTOM2";
level.classMap["custom3"] = "CLASS_CUSTOM3";
level.classMap["custom4"] = "CLASS_CUSTOM4";
level.classMap["custom5"] = "CLASS_CUSTOM5";

level.classMap["prestige1"] = "CLASS_CUSTOM6";
level.classMap["prestige2"] = "CLASS_CUSTOM7";
level.classMap["prestige3"] = "CLASS_CUSTOM8";
level.classMap["prestige4"] = "CLASS_CUSTOM9";
level.classMap["prestige5"] = "CLASS_CUSTOM10";




Give Weapon Commands ( Scripts, Gpds And XeXs ) :


self giveWeapon( "weaponname_modetype" ); \\Gives weapon
self switchToWeapon( "weaponname_modetype" ); \\Switches to weapon
self setSpawnWeapon( "weaponname_modetype" ); \\Sets a weapon which the player must spawn with

give "weaponname_modetype" \\Remove the quotes, used for xex and gpds

\\Weapon lists below


Weapon List Multiplayer :


frag_grenade_mp
claymore_mp
m1911_mp
python_mp
cz75_mp
m14_mp
m16_mp
g11_lps_mp
famas_mp
ak74u_mp
mp5k_mp
mpl_mp
pm63_mp
spectre_mp
cz75dw_mp
ithaca_mp
rottweil72_mp
spas_mp
hs10_mp
aug_mp
galil_mp
commando_mp
fnfal_mp
dragunov_mp
l96a1_mp
rpk_mp
hk21_mp
m72_law_mp
china_lake_mp
crossbow_explosive_mp
knife_ballistic_mp


Weapons List Zombies Kino :


frag_grenade_zm
claymore_zm
m1911_zm
m1911_upgraded_zm
python_zm
python_upgraded_zm
cz75_zm
cz75_upgraded_zm
m14_zm
m14_upgraded_zm
m16_zm
m16_gl_upgraded_zm
g11_lps_zm
g11_lps_upgraded_zm
famas_zm
famas_upgraded_zm
ak74u_zm
ak74u_upgraded_zm
mp5k_zm
mp5k_upgraded_zm
mp40_zm
mp40_upgraded_zm
mpl_zm
mpl_upgraded_zm
pm63_zm
pm63_upgraded_zm
spectre_zm
spectre_upgraded_zm
cz75dw_zm
cz75dw_upgraded_zm
ithaca_zm
ithaca_upgraded_zm
rottweil72_zm
rottweil72_upgraded_zm
spas_zm
spas_upgraded_zm
hs10_zm
hs10_upgraded_zm
aug_acog_zm
aug_acog_mk_upgraded_zm
galil_zm
galil_upgraded_zm
commando_zm
commando_upgraded_zm
fnfal_zm
fnfal_upgraded_zm
dragunov_zm
dragunov_upgraded_zm
l96a1_zm
l96a1_upgraded_zm
rpk_zm
rpk_upgraded_zm
hk21_zm
hk21_upgraded_zm
m72_law_zm
m72_law_upgraded_zm
china_lake_zm
china_lake_upgraded_zm
zombie_cymbal_monkey
ray_gun_zm
ray_gun_upgraded_zm
thundergun_zm
thundergun_upgraded_zm
crossbow_explosive_zm
crossbow_explosive_upgraded_zm
knife_ballistic_zm
knife_ballistic_upgraded_zm
knife_ballistic_bowie_zm
knife_ballistic_bowie_upgraded_zm


Weapons List Zombies Five :


frag_grenade_zm
claymore_zm
m1911_zm
m1911_upgraded_zm
python_zm
python_upgraded_zm
cz75_zm
cz75_upgraded_zm
m14_zm
m14_upgraded_zm
m16_zm
m16_gl_upgraded_zm
g11_lps_zm
g11_lps_upgraded_zm
famas_zm
famas_upgraded_zm
ak74u_zm
ak74u_upgraded_zm
mp5k_zm
mp5k_upgraded_zm
mpl_zm
mpl_upgraded_zm
pm63_zm
pm63_upgraded_zm
spectre_zm
spectre_upgraded_zm
cz75dw_zm
cz75dw_upgraded_zm
ithaca_zm
ithaca_upgraded_zm
rottweil72_zm
rottweil72_upgraded_zm
spas_zm
spas_upgraded_zm
hs10_zm
hs10_upgraded_zm
aug_acog_zm
aug_acog_mk_upgraded_zm
galil_zm
galil_upgraded_zm
commando_zm
commando_upgraded_zm
fnfal_zm
fnfal_upgraded_zm
dragunov_zm
dragunov_upgraded_zm
l96a1_zm
l96a1_upgraded_zm
rpk_zm
rpk_upgraded_zm
hk21_zm
hk21_upgraded_zm
m72_law_zm
m72_law_upgraded_zm
china_lake_zm
china_lake_upgraded_zm
zombie_cymbal_monkey
ray_gun_zm
ray_gun_upgraded_zm
freezegun_zm
freezegun_upgraded_zm
crossbow_explosive_zm
crossbow_explosive_upgraded_zm
knife_ballistic_zm
knife_ballistic_upgraded_zm
knife_ballistic_bowie_zm
knife_ballistic_bowie_upgraded_zm




Some Fun Stuff :

Button Binds In Scripts :


self AttackButtonPressed() \\Left trigger
self UseButtonPressed() \\X button
self FragButtonPressed() \\Left bumper
self SecondaryOffhandButtonPressed() \\Right bumper
self AdsButtonPressed() \\Right trigger
self MeleeButtonPressed() \\Right stick


\\Used for things like If and While statements


Freezecontrols :


self freeze_player_controls( true ); \\Freezes all player controls
self freeze_player_controls( false ); \\Un-Freezes all player controls




Scripts :

Some Usefull Commands And Preset Variables :


\\Usefull functions
self endon ( "condition" ); \\Function will end on condition
self waittill ( "condition" ); \\Function will execute on condition
self notify ( "condition ); \\Used to create your own conditions

\\Some usefull preset functions
self endon ( "death" ); \\Ends script on death
self endon ( "disconnect" ); \\Ends script on server disconnect
self endon ( "joined_spectators" ); \\Ends script when a player goes spectator mode
self endon ( "killed_player" ); \\Ends script when player dies

self waittill ( "spawned_player" ); \\Waits until player spawns to execute a function
self waittill ( "death" ); \\Waits until death to execute a function
self waittill ( "grenade_pullback" ); \\Waits until a grenade is thrown to execute a function
self waittill ( "sprint_begin" ); \\Waits until sprint begins to execute a function
self waittill ( "begin_firing" ); \\Waits until weapon is fired to execute a function
self waittill ( "weapon_fired" ); \\Waits until weapon is fired and will execute the function repeatedly
self waitill ( "weapon_change" ); \\Waits until a weapon swap to execute a function

\\Obvious where all of these can be used



Godmode :


\\Create self thread doGod(); in the onplayerspawned(); then stick this anywhere

doGod()
{
self endon ( "disconnect" );
self endon ( "death" );
self.maxhealth = 90000;
self.health = self.maxhealth;

while ( 1 )
{
wait .4;
if ( self.health < self.maxhealth )
self.health = self.maxhealth;
}
}



Create A Verification System :


\\Simple verification system for people who dont want to try too hard
\\First stick this variable in your onplayerconnect()

self.needsVerifying = 1;

\\Then go down to your onplayerspawned() and create these two threads and stick in that freeze controls

self thread Verify();
self thread VerifcationProcess();
self freeze_player_controls( true );

\\Then create this function for the verify thread

Verify()
{
self waittill ("death");
if(self.killedBy == level.hostname || self.killedBy == "Gt here")
{
self.needsVerifying = 0;
self freeze_player_controls( false );
}
}

\\Now since that is done, we will move along to creating the verificationprocess thread

VerifcationProcess()
{
if(self.needsVerifying == 1)
{
wait 3;
self thread maps\mp\gametypes\_hud_message::hintMessage("Status : Unverified Please Wait For Verification!");
self thread sayLoop();
}
else if(self.needsVerifying == 0)
{
self thread InsertPlayermodsThreadHere();
}
}

\\As you can see we created a function inside the function, we will now create a script for it

sayLoop()
{
self endon( "death" ); \\End this on death
for(; \\For loop, used to loop a function inside its parenthesis {}
{
self sayall( "I Need Verification!" ); \\Console text
wait 5; \\Function will wait 5 seconds and then loop itself
}
}

This function will cause a loop of that sayAll text, deactivate any mods until theyre verified, and freeze their controls as well until they get killed. Very simple straightforward kill to verify function.

Made By U M Z Modding Team:
- Ult1mateModd3rZ (Coding)
- UnbornModd3rZ (Testing)
-UnlimetedModd3rZ (Coding)
- Looking for more members



THANK TOPIC PLEASE


Last edited by UnlimetedModd3rZ ; edited 2 times in total

The following 7 users thanked UnlimetedModd3rZ for this useful post:

MaRzzZ (01-02-2011), Monya (01-02-2011), IsOBrO (01-02-2011), -Tiesto (01-02-2011), -Burton- (01-02-2011), -Foxy (01-02-2011), Agony (01-02-2011)
#2. Posted:
Flurry
  • TTG Senior
Status: Offline
Joined: Jan 01, 201113Year Member
Posts: 1,446
Reputation Power: 63
Status: Offline
Joined: Jan 01, 201113Year Member
Posts: 1,446
Reputation Power: 63
Looks like you put a lot of work into this. Great Job!
#3. Posted:
UnlimetedModd3rZ
  • Challenger
Status: Offline
Joined: Jan 02, 201113Year Member
Posts: 110
Reputation Power: 5
Status: Offline
Joined: Jan 02, 201113Year Member
Posts: 110
Reputation Power: 5
ZizLaa wrote Looks like you put a lot of work into this. Great Job!


Thanks dude this is from old account and its called
-M40A03-MoDzZ
#4. Posted:
-M40A03-MoDzZ
  • Challenger
Status: Offline
Joined: Jan 01, 201113Year Member
Posts: 108
Reputation Power: 4
Status: Offline
Joined: Jan 01, 201113Year Member
Posts: 108
Reputation Power: 4
This is me with my aprovall to prove no copy and paste this was my work

-M40A03-MoDzZ
#5. Posted:
0x100003d0
  • TTG Fanatic
Status: Offline
Joined: Aug 26, 201013Year Member
Posts: 4,406
Reputation Power: 183
Status: Offline
Joined: Aug 26, 201013Year Member
Posts: 4,406
Reputation Power: 183
wow this will help alot of people :O
#6. Posted:
UnlimetedModd3rZ
  • Challenger
Status: Offline
Joined: Jan 02, 201113Year Member
Posts: 110
Reputation Power: 5
Status: Offline
Joined: Jan 02, 201113Year Member
Posts: 110
Reputation Power: 5
Cheers man 202020222222222

-UMZ-
#7. Posted:
Exille
  • TTG Senior
Status: Offline
Joined: Dec 18, 201013Year Member
Posts: 1,570
Reputation Power: 84
Status: Offline
Joined: Dec 18, 201013Year Member
Posts: 1,570
Reputation Power: 84
-M40A03-MoDzZ wrote This is me with my aprovall to prove no copy and paste this was my work

-M40A03-MoDzZ

So What,You Got 2Accounts?
#8. Posted:
UnlimetedModd3rZ
  • Challenger
Status: Offline
Joined: Jan 02, 201113Year Member
Posts: 110
Reputation Power: 5
Status: Offline
Joined: Jan 02, 201113Year Member
Posts: 110
Reputation Power: 5
DarkAdvise wrote
-M40A03-MoDzZ wrote This is me with my aprovall to prove no copy and paste this was my work

-M40A03-MoDzZ

So What,You Got 2Accounts?


Yeh i joing -UMZ- Modding clan and we are reqruting
#9. Posted:
UnlimetedModd3rZ
  • Challenger
Status: Offline
Joined: Jan 02, 201113Year Member
Posts: 110
Reputation Power: 5
Status: Offline
Joined: Jan 02, 201113Year Member
Posts: 110
Reputation Power: 5
will be updating with every new thing i find
#10. Posted:
noxxprodigy
  • Ladder Climber
Status: Offline
Joined: Oct 21, 201013Year Member
Posts: 358
Reputation Power: 13
Status: Offline
Joined: Oct 21, 201013Year Member
Posts: 358
Reputation Power: 13
Hey im interested in joining your team i know how to mod .gpd files offline. like zombies or split screen and system link and im learning how to make custom patches for any game.
msg me on aim if i can be part of your team my aim is booster691 @ hotmail.com or u can just pm me on ttg.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.