Would you like to react to this message? Create an account in a few clicks or log in to continue.


NeonModz
 
HomeLatest imagesSearchRegisterLog in
Search
 
 

Display results as :
 
Rechercher Advanced Search
Keywords
world
Latest topics
» VLC_Media_Player_2.0.6.x64.ASD.rar
Full Tutorial On How To Make World At War ISO Mod Menu I_icon_minitimeWed Jun 26, 2013 12:25 am by Guest

» WaW Xbox 360 Modded Patches List's + Downloads.
Full Tutorial On How To Make World At War ISO Mod Menu I_icon_minitimeFri Nov 02, 2012 11:28 pm by Neon Haxor

» Tea And Gutu v2 Release TODAY!
Full Tutorial On How To Make World At War ISO Mod Menu I_icon_minitimeWed Oct 31, 2012 10:41 pm by Neon Haxor

» New CoD WaW Mod Menu!
Full Tutorial On How To Make World At War ISO Mod Menu I_icon_minitimeThu Oct 25, 2012 8:44 pm by Neon Haxor

» How to Put Unrealesed Games On Your Profile.
Full Tutorial On How To Make World At War ISO Mod Menu I_icon_minitimeSat Oct 20, 2012 2:17 am by Neon Haxor

» Minecraft 1.8 Update Release Tommorow!
Full Tutorial On How To Make World At War ISO Mod Menu I_icon_minitimeMon Oct 15, 2012 11:43 pm by Neon Haxor

» Halo 4 Jtag Mods (Single Player)
Full Tutorial On How To Make World At War ISO Mod Menu I_icon_minitimeMon Oct 15, 2012 11:15 pm by Neon Haxor

» Jtag Files ,Emulators,and more!
Full Tutorial On How To Make World At War ISO Mod Menu I_icon_minitimeMon Oct 15, 2012 11:10 pm by Neon Haxor

» Check Out This New Rapper!
Full Tutorial On How To Make World At War ISO Mod Menu I_icon_minitimeSat Sep 29, 2012 1:55 am by Neon Haxor

March 2024
MonTueWedThuFriSatSun
    123
45678910
11121314151617
18192021222324
25262728293031
CalendarCalendar
Affiliates
free forum

free forum


 

 Full Tutorial On How To Make World At War ISO Mod Menu

Go down 
AuthorMessage
Neon Haxor
Admin
Neon Haxor


Posts : 16
Reputation : 0
Join date : 2012-07-30
Age : 27
Location : Alabama

Full Tutorial On How To Make World At War ISO Mod Menu Empty
PostSubject: Full Tutorial On How To Make World At War ISO Mod Menu   Full Tutorial On How To Make World At War ISO Mod Menu I_icon_minitimeFri Aug 10, 2012 6:33 pm

:: How To Make Your Own CoD5 Mod Menu/ISO Patch ::


Hey Guys, In This Post im going to teach you how to create your own
call of duty world at war mod menu. This will require very few downloads and
scripting. I Will supply a menu base which will allow you to add your own options
and features. This menu base is customizable, You can edit the background color,
the scroller color and the text size/font in the mod menu.

First! Download The Menu Base, Patch Scripts And Notepad++ Below.


Menu Base

Scripts

Notepad ++


Open Notepad++ And Open The (_debug.gsc) File From Your Menu Base Folder.

- ONCE ITS OPEN IT SHOULD LOOK LIKE THIS -


Full Tutorial On How To Make World At War ISO Mod Menu StickyImage1

The Menu Titles Named ( Menu 1-8 ) Can Be Edited To What You Want. The First Title
Named (MAIN MENU) Is What The Title of The Mod Menu Will Say At The Top Of Each Menu.

Full Tutorial On How To Make World At War ISO Mod Menu StickyImage3


The Sub Menus Are texts after the first Menu title like shown below.

Full Tutorial On How To Make World At War ISO Mod Menu StickyImage4


After Everything is renamed you will need to add functions so your mod menu
works. The menu already opens correctly but you need some mods behind the menu to
make it fun for friends and yourself to enjoy. So to add a Option scroll down to the
first menu and it should look like the image below.


Full Tutorial On How To Make World At War ISO Mod Menu StickyImage5


When Adding A Function You Will see the text (Test) You need to edit that to your
commands title that you would like to add for your first mod, To Find a command
open up the Patch Scripts Folder and choose a mod. Im Going to use God Mode So the
God Mode Mini Script would look like this below.


Full Tutorial On How To Make World At War ISO Mod Menu StickyImage6


If You look at the top the title of it is (toggle_god) so edit the Test Text to the
title of your command, So i would rename myn to toggle_god Like Shown Below.


Full Tutorial On How To Make World At War ISO Mod Menu StickyImage7


Once You have the title placed COPY the script from the patch scripts folder that
you have chosen and go to the very bottom and PASTE The Code. It Should Look Like This.


Full Tutorial On How To Make World At War ISO Mod Menu StickyImage8

Thank You For Reading Part 1 out of 2 of my CoD5 Mod Menu Scripting Thread.

:: How To Add Scripts To Your CoD5 Mod Menu/ISO Patch ::


Hey Guys, In this post im going to teach you how to add scripts to
your custom call of duty world at war ISO/Mod Menu Patch.

First! Download The Menu Base, Patch Scripts And Notepad++ Below.


Menu Base

Scripts

Notepad ++


Open Notepad++ and Open the (_debug.gsc) You Got From The Menu Base Folder.
Once Its Open, Go The First Menu Called SubMenu 1. It Should Look Like This Below.

Full Tutorial On How To Make World At War ISO Mod Menu Sticky2Image1


You will see the Menu Title, Options and Functions. Each Option is Named SubOption
1-8 And The Title is Named Sub Menu 1-8. Each SubOption has a Function
that makes the option work for players in game Like shown in the image below.

Full Tutorial On How To Make World At War ISO Mod Menu Sticky2Image2


Alright, Each script has a title. So if you open the patch scripts and click on a script like
god mode, noclip, UFO, or notarget then each title will be the first line of code shown below.


Full Tutorial On How To Make World At War ISO Mod Menu Sticky2Image3

So if you want god mode, you will go the first menu option and type God Mode. Then in
The FUNCTION area you will type the Title of the script like the example shown below.

Full Tutorial On How To Make World At War ISO Mod Menu Sticky2Image4

After you have typed that go to the VERY BOTTOM of the menu base and copy the
entire GOD MODE script and paste it and the bottom like in the image below.


Full Tutorial On How To Make World At War ISO Mod Menu Sticky2Image5


So each function has a Title to the script you pasted at the bottom of the menu base.
So when you hit the option in the game it will look for the mod with that title. If the title
isnt there you will get a (Unknown Function Error Message).

Alright! Now god mode will work in your mod menu. Now im going to do 1 more script so
you can understand how the functions/titles work for this menu base.

Im Going to use THIRD PERSON for example so i would type Third Person as a option in the menu. Then
add the function title from the patch list folder

Full Tutorial On How To Make World At War ISO Mod Menu Sticky2Image6


Then i would go to the very bottom and paste the ENTIRE script code from third person
right after the last script we did (God Mode or toggle_god)


Full Tutorial On How To Make World At War ISO Mod Menu Sticky2Image7

Once Your Done Editing everything you want, You will need to test the changes you
made by going into ur CoD WaW Directory folder & creating a MODS Folder. Once
This folder is created you will need to make a folder inside that Called Whatever then
make a folder called MAPS inside of that folder you just made, Then drag the .gsc
files into that folder and go into CoD WaW For PC and run the patch in Zombie Mode.
Back to top Go down
https://neonmodz.board-directory.net
 
Full Tutorial On How To Make World At War ISO Mod Menu
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
 :: Call of Duty Forums :: Call of Duty WaW Discussion-
Jump to: