Modme Forums

more than one sound aliases

Game Modding | Call of Duty: Black Ops 3 | Scripting


jfuvv:

anyone know how to script and where to put a copy of your user_aliases in your custom map so that map runs of that one only and make more copys for other maps ??


D-2-K:

you would just call the alias you want to use in your map in the mapnames.szc you could copy the user alias rename it to your mapname and do that for every other map you make


jfuvv:

you would just call the alias you want to use in your map in the mapnames.szc you could copy the user alias rename it to your mapname and do that for every other map you make

could i get instruction pal im new to all this please


D-2-K:

goto Call of Duty Black Ops III\share\raw\sound\aliases look for user_aliases copy past and rename it to what ever your mapname is

then goto Call of Duty Black Ops III\usermaps\YOURMAPNAME\sound\zoneconfig and open zm_yourmapname.szc

open it in a text editor i use notepad++ or sublime

it will look something like this

{
"Name" : "zm_whateveryourmapnameis",
"GameMode" : "mpl",
"IsCommon" : false,
"Parent" : "",
"Overlay" : "",
"IsStandalone" : true,
"IsProduction" : false,
"IsShipped" : false,
"DontDeploy" : false,
"NoStreamBank" : false,
"MapFile" : "",
"Standalone" : true,
"Builds" : [ "T7" ],
"Sources" : [
{
"Type" : "ALIAS",
"Name" : "user_aliases",
"Filename" : "user_aliases.csv",
"Specs" : [ ]
},
{
"Type" : "AMBIENT",
"Name" : "ambient_mod",
"Filename" : "ambient_mod.csv",
"Specs" : [
"mpl_mod"
]
},
]
}

copy this section

{
"Type" : "ALIAS",
"Name" : "user_aliases",
"Filename" : "user_aliases.csv",
"Specs" : [ ]
},

and paste it underneath like so

{
"Name" : "zm_yourmapname",
"GameMode" : "mpl",
"IsCommon" : false,
"Parent" : "",
"Overlay" : "",
"IsStandalone" : true,
"IsProduction" : false,
"IsShipped" : false,
"DontDeploy" : false,
"NoStreamBank" : false,
"MapFile" : "",
"Standalone" : true,
"Builds" : [ "T7" ],
"Sources" : [
{
"Type" : "ALIAS",
"Name" : "user_aliases",
"Filename" : "user_aliases.csv",
"Specs" : [ ]
},
{
"Type" : "ALIAS",
"Name" : "user_aliases", <<<<<<<<<<<<rename this to "what ever your mapname is"
"Filename" : "user_aliases.csv", <<<<<<<< rename this to "what ever your map name is.csv"
"Specs" : [ ]
},
{
"Type" : "AMBIENT",
"Name" : "ambient_mod",
"Filename" : "ambient_mod.csv",
"Specs" : [
"mpl_mod"
]
},
]
}


jfuvv:

goto Call of Duty Black Ops III\share\raw\sound\aliases look for user_aliases copy past and rename it to what ever your mapname is

then goto Call of Duty Black Ops III\usermaps\YOURMAPNAME\sound\zoneconfig and open zm_yourmapname.szc

open it in a text editor i use notepad++ or sublime

it will look something like this

{
"Name" : "zm_whateveryourmapnameis",
"GameMode" : "mpl",
"IsCommon" : false,
"Parent" : "",
"Overlay" : "",
"IsStandalone" : true,
"IsProduction" : false,
"IsShipped" : false,
"DontDeploy" : false,
"NoStreamBank" : false,
"MapFile" : "",
"Standalone" : true,
"Builds" : [ "T7" ],
"Sources" : [
{
"Type" : "ALIAS",
"Name" : "user_aliases",
"Filename" : "user_aliases.csv",
"Specs" : [ ]
},
{
"Type" : "AMBIENT",
"Name" : "ambient_mod",
"Filename" : "ambient_mod.csv",
"Specs" : [
"mpl_mod"
]
},
]
}

copy this section

{
"Type" : "ALIAS",
"Name" : "user_aliases",
"Filename" : "user_aliases.csv",
"Specs" : [ ]
},

and paste it underneath like so

{
"Name" : "zm_yourmapname",
"GameMode" : "mpl",
"IsCommon" : false,
"Parent" : "",
"Overlay" : "",
"IsStandalone" : true,
"IsProduction" : false,
"IsShipped" : false,
"DontDeploy" : false,
"NoStreamBank" : false,
"MapFile" : "",
"Standalone" : true,
"Builds" : [ "T7" ],
"Sources" : [
{
"Type" : "ALIAS",
"Name" : "user_aliases",
"Filename" : "user_aliases.csv",
"Specs" : [ ]
},
{
"Type" : "ALIAS",
"Name" : "user_aliases", <<<<<<<<<<<<rename this to "what ever your mapname is"
"Filename" : "user_aliases.csv", <<<<<<<< rename this to "what ever your map name is.csv"
"Specs" : [ ]
},
{
"Type" : "AMBIENT",
"Name" : "ambient_mod",
"Filename" : "ambient_mod.csv",
"Specs" : [
"mpl_mod"
]
},
]
}

thanks man for your help mean alot