Originally posted by qmbmodz
Hi I am A noob yes but i feel we all start somewhere! Im trying to make a bo2 gsc mod menu but im having issues with adding options everytime i go to game and open menu My ps3 freezes with the bo2 notification connection inturrupted and I freeze can anyone help me with the coding!
You must login or register to view this content.You must login or register to view this content.
If you want direct help with code you need to post all the code in question in the thread instead of linking a picture of some of the code.
Use Code brackets, when making a thread its the "#" icon near the right side of the middle row of options. Or put the code in a text file and link a download to it (if its a large amount of code). This will make it much easier for others to assist you.
Connection interrupted as host is sometimes caused by loops without any form of delay such as a wait or waittill. There are also other reasons for this to happen as well.
I'd check the function that opens your menu, It's likely named OpenMenu() (or something similar to that) or is part of the function that does the stuff needed before you open the menu for the first time. That's the first place to start.
If you're having additional issues, save what you had then load up another project with the original menu you were editing, with out any of your edits. Verify that is stable and doesn't have issues loading and opening the menu. If the original menu with out edits has issues, then change menu bases or find another menu to edit. If it works, proceed to make a few edits. Once you made a few edits, inject the menu to your system and test it. If it works correctly, save and make more edits. Go in the cycle of making edits, testing then saving. Back up your project every hour or so. Doing this allows you see what code you placed or changed that is causing issues and allows you to undo it easily by re-opening the project without saving the problematic edits. Not testing your work regularly while working on it is a rookie mistake, I learned this the hard way.