T6 Map Vote by: Resxt
-
Re: [MP/ZM] Black Ops II Mapvote
idk if anyone has tried by is it possible to have 2 groups of maps stacked on top of each other; one labeled stock maps and the other DLC?
since there is a growing number of players without dlc and this way they can differentiate from the 2
even if i have to give up the game mode options i would be okay with it
-
undefined Resxt moved this topic from BO2 Modding Releases & Resources on
-
I'm not sure what you're trying to do. What does 2 groups of maps refer to? What is the end goal?
Some part of your message makes me think you just want to add[DLC]
in front of DLC maps and the other makes me thing you want to replace the modes category with DLCs (why?) -
I'm not sure what you're trying to do. What does 2 groups of maps refer to? What is the end goal?
Some part of your message makes me think you just want to add[DLC]
in front of DLC maps and the other makes me thing you want to replace the modes category with DLCs (why?)Resxt would like to add [DLC] to the front of dlc maps
-
Edit the
mapvote_maps
dvar to have "[DLC] Nuketown" instead of "Nuketown" for exampleThen edit the
GetMapCodeName
function so thatcase "NUKETOWN":
becomescase "[DLC] NUKETOWN":
Make sure to always have it fully uppercase in the function like it is, make sure to respect the syntax and make sure that themapvote_maps
dvars values ALWAYS match the values in that function otherwise it will skip some maps and cause issues -
Edit the
mapvote_maps
dvar to have "[DLC] Nuketown" instead of "Nuketown" for exampleThen edit the
GetMapCodeName
function so thatcase "NUKETOWN":
becomescase "[DLC] NUKETOWN":
Make sure to always have it fully uppercase in the function like it is, make sure to respect the syntax and make sure that themapvote_maps
dvars values ALWAYS match the values in that function otherwise it will skip some maps and cause issuesResxt perfect! Thank you Resxt
-
Edit the
mapvote_maps
dvar to have "[DLC] Nuketown" instead of "Nuketown" for exampleThen edit the
GetMapCodeName
function so thatcase "NUKETOWN":
becomescase "[DLC] NUKETOWN":
Make sure to always have it fully uppercase in the function like it is, make sure to respect the syntax and make sure that themapvote_maps
dvars values ALWAYS match the values in that function otherwise it will skip some maps and cause issuesResxt when you say "get map vote name" where at are you speaking of?
-
@Dr-SparkleFarts edit the
GetMapCodeName
function in the script
https://github.com/Resxt/Plutonium-T6-Scripts/blob/main/mapvote/mapvote.gsc#L956