You are viewing our Forum Archives. To view or take place in current topics click here.
Making a Modded ISO disk
Posted:

Making a Modded ISO diskPosted:

-Ricky-
  • Ladder Climber
Status: Offline
Joined: Dec 08, 201013Year Member
Posts: 331
Reputation Power: 13
Status: Offline
Joined: Dec 08, 201013Year Member
Posts: 331
Reputation Power: 13
Hi I have some knowledge of modding etc. and I need to find a standard ISO to download as I have tried to download about 5 different ones and they never finish downloading can anyone suggest where to find one that is seeded as whenever I try to download one there is no-one seeding and so it doesn't download, I have checked if I have room on my computer to save it and I do.

I also want to know how to put in the more extravagant lettering such as in cod 6 lobbies that show for example YouTube.com/??????? but it goes small to big continuously if this is possible in cod 5 lobbies and to have text at the beginning of the lobby saying " Welcome to a Ricky-MoDz Lobby " for example. I also want to use the Phoenix v2 patch and just edit it to have my name in it. I have seen a shop patch on YouTube that looks like a fun lobby but I wondered if this can be incorporated into the menu so I don't need to have two separate disks just so I can have a fun lobby with my friends when I want to and save myself a disk as they cost like 20 for a bunch.

To sum it up I just want to know where I can find a good download for a standard unmodded cod 5 ISO download that will download and is used a lot. The second thing is to learn how to put in YouTube advertising and the lobby to say something like " Welcome to a Ricky-MoDz Lobby " or something like that. NOTE - I don't want it to say other peoples names at the beginning because I know people add these and then upload the patches and they end up getting their YouTube channel or something in someone else's lobby.

If someone can help me I will host for them some of the time and I will +REP when I figure out how to. As I have forgotten how to do it since I haven't really +REPPED in a while.

Please Help ! Thanks for reading my Topic xD (I hope someone can point me in the right direction as to finally making my ISO disk as I have been attempting this for a few weeks and have got nowhere.)
#2. Posted:
-Ricky-
  • Ladder Climber
Status: Offline
Joined: Dec 08, 201013Year Member
Posts: 331
Reputation Power: 13
Status: Offline
Joined: Dec 08, 201013Year Member
Posts: 331
Reputation Power: 13
I also forgot to mention that I live in the UK so a PAL or Region Free would be perfect.
#3. Posted:
TTG_FaTaLiTyZz
  • Junior Member
Status: Offline
Joined: Dec 12, 201013Year Member
Posts: 83
Reputation Power: 5
Status: Offline
Joined: Dec 12, 201013Year Member
Posts: 83
Reputation Power: 5
hey, i have made a tutorial on how to make one. it has all the downloads you need and work. i used them to make mine.
[ Register or Signin to view external links. ]


to edit your youtube into it, open the common.ff if .ff viewer and find the arts.gfx i think.
(i know its arts.something)
then find where it says text like "^1TTGxMODZ ^2V1 ^4Patch" or text like that and change it to your likings
hope i helped
#4. Posted:
-Ricky-
  • Ladder Climber
Status: Offline
Joined: Dec 08, 201013Year Member
Posts: 331
Reputation Power: 13
Status: Offline
Joined: Dec 08, 201013Year Member
Posts: 331
Reputation Power: 13
It's because of people like you that I love the tech game. Thanks will give it a try ! do you have a XBL gamertag i can add if I manage to make a disk so I can invite you or talk to you ?
#5. Posted:
-Ricky-
  • Ladder Climber
Status: Offline
Joined: Dec 08, 201013Year Member
Posts: 331
Reputation Power: 13
Status: Offline
Joined: Dec 08, 201013Year Member
Posts: 331
Reputation Power: 13
You couldn't link me to a Phoenix v2 could you ? A good one and do you know if it's possible to put other patch things into mod menu like when I said about the shop lobby ? I just want to have it in the Mod menu to use when I want rather than having a separate disk. Again Thanks for your help !
#6. Posted:
Moderatez1v8
  • TTG Senior
Status: Offline
Joined: Sep 17, 201013Year Member
Posts: 1,354
Reputation Power: 69
Status: Offline
Joined: Sep 17, 201013Year Member
Posts: 1,354
Reputation Power: 69
this might help:

In this tutorial I will be showing you how to add basic mod codes and threading them in order for them to work. Back long ago when modding Zombies was young codes were add to the Nazi_Zombie_Prototype and the mods only worked for the first map, now we add codes to the common.ff which allows you to mod all maps.

Heres a list in the common.ff where you will most likely find mod codes:

maps/_art.gsc
maps/_compass.gsc
maps/_cheat.gsc
maps/_createcam.gsc
maps/_createdynents.gsc

Ok, so lets say you want to edit the text in the common.ff so when you start a lobby it will say something like "Welcome To My 10th Lobby".

Open up the common.ff using .FF viewer and scroll down until you find Maps/_art.gsc, click on it and look for this code:

doStart() 

        notifyData = spawnStruct(); 
        notifyData.titleText = "whatever text you want";
        notifyData.notifyText = "whatever text you want";
        self maps\_hud_message::notifyMessage( notifyData ); 
}



Look where it say's add text here, and then add "Welcome To My 10th Lobby", so it will look like this:

doStart() 

        notifyData = spawnStruct(); 
        notifyData.titleText = "Welcome To My 10th Lobby";
        notifyData.notifyText = "Welcome To My 10th Lobby";
        self maps\_hud_message::notifyMessage( notifyData ); 
}


Its that simple lol.

Or if you add in "wait 5",( 5 being the number of seconds ), in between the text codes like this:

doStart() 

        notifyData = spawnStruct(); 
        notifyData.titleText = "Welcome To My 10th Lobby";
        wait 5;
        notifyData.notifyText = "I sLaP ZoMbIeZ Iz HoStInG";
        self maps\_hud_message::notifyMessage( notifyData ); 
}


you will have a 5 second wait inbetween text messages.



All of this work and tutorial was done by me.
#7. Posted:
-Ricky-
  • Ladder Climber
Status: Offline
Joined: Dec 08, 201013Year Member
Posts: 331
Reputation Power: 13
Status: Offline
Joined: Dec 08, 201013Year Member
Posts: 331
Reputation Power: 13
TTG_FaTaLiTyZz wrote hey, i have made a tutorial on how to make one. it has all the downloads you need and work. i used them to make mine.
[ Register or Signin to view external links. ]


to edit your youtube into it, open the common.ff if .ff viewer and find the arts.gfx i think.
(i know its arts.something)
then find where it says text like "^1TTGxMODZ ^2V1 ^4Patch" or text like that and change it to your likings
hope i helped


Thanks for your help I have a cod 5 ISO at last ! =D I am so happy to finally have a Cod 5 ISO to mod on. I am so glad you helped me with this and that their are people happy to help. xD

Thanks so much and would you be able to PM me your gamertag so I can play zombies with you one time or thank you properly for helping me.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.