Game Modding | Call of Duty: Black Ops 3 | Scripting
ModmeBot:
Thread By: MJPW
Hello Ive been trying some new stuff within my mod and something weird has happened. I built a new map to compare the compile and this is what is different. The map is unplayable, when trying to launch the map its just a black screen and nothing else happens till I close out the window.
ModmeBot:
Reply By: DTZxPorter
Most likely related to when you link, post the linker log on pastebin.
ModmeBot:
Reply By: MJPW
DTZxPorterMost likely related to when you link, post the linker log on pastebin.
This is what I get when I compile and link. This is just linking. This is just compiling.
ModmeBot:
Reply By: DTZxPorter
MJPWDTZxPorterMost likely related to when you link, post the linker log on pastebin.
This is what I get when I compile and link. This is just linking. This is just compiling.
Remove all GG machines "zmcore_bgb_machine" is borking it. zbarriers just crash the game if they break.
ModmeBot:
Reply By: MJPW
DTZxPorterMJPWDTZxPorterMost likely related to when you link, post the linker log on pastebin.
This is what I get when I compile and link. This is just linking. This is just compiling.
Remove all GG machines "zmcore_bgb_machine" is borking it. zbarriers just crash the game if they break.
Still broken :( Ive had them in there for the last few big updates.
ModmeBot:
Reply By: DTZxPorter
Added any code to the mod recently?
ModmeBot:
Reply By: MJPW
DTZxPorterAdded any code to the mod recently?
I did add in my easter egg script that was tested on a test map to perfect the script and make everything work. I just took it all out and its still the black screen. :(
ModmeBot:
Reply By: MJPW
Okay so after the last few hours Ive found the issue but Im not 100% on what it is EXACTLY. I had something like this happen before where I added a bit of code into the main function of the map's GSC and the problem there was that something was coming before another default section that needs to happen before others or it will not start the match it will just be a black screen. So what I did is copy and paste a clean section of main from a new maps GSC and it works again. Do you happen to see what it is that may need to go lower or higher? Ive had these in the main for the last few months but after the last update it just broke. Messed up main.
ModmeBot:
Reply By: DTZxPorter
You need to level thread all functions near or in main so it doesn't block the main
ModmeBot:
Reply By: MJPW
Okay so by changing the "thread" to "level thread" Im still getting the black screen with no start unfortunatly :(
ModmeBot:
Reply By: MJPW
I found out exactly what the problem was. For some weird reason the "level thread buyable_powerup();" part was preventing the entire map from starting. Very crazy how such a small error is so huge. Thank you for all the help fellas for helping me understand this a bit better :)