Game Modding | Call of Duty: Black Ops 3 | Scripting
Soggy_Shaw:
I keep getting this error when I try to link and compile my map:
^1 level.pathdist_type
^1-------------------^
^1ERR(0) scripts/zm/zm_soggy_flyingship_v1.gsc (122,20) : syntax error, unexpected TOKEN_IDENTIFIER, expecting $end : level.pathdist_type
I have checked my GSC lines 122 and 20 but there is no misspellings or any mistakes yet I keep getting the error. I haven't even made any changes to line 122 which is: level.pathdist_type = PATHDIST_ORIGINAL;
I just recently added madgaz's perk standalone pack and followed the steps in which I had to download libtiff64r.dll from modme. I added that to my BO3 bin file and than after a little more editing of my map I went to link and compile and got this error.
Can anyone help with my issue? I would greatly appreciate it.
Spiki:
might be the line above.
post entire function
Soggy_Shaw:
might be the line above.
post entire function
Spiki:
You have a closing bracket above it }
Soggy_Shaw:
You have a closing bracket above it }
Spiki:
Isn’t that for wardogs perks? Wouldn’t taking out the closed bracket mess That up?
Soggy_Shaw:
how about you try and see
Wild:
Not a scripter or anything so this is just a suggestion, but all of my map GSC's have that line "level.pathdist_type = PATHDIST_ORIGINAL; " in the function main(). Yours looks like it isn't and is mixed in with the functions below it instead. You could try cutting it and pasting it at the bottom of the function main() like I have mine:
function main()
{
zm_usermap::main();
//-----Perk FX/Lights-----
level thread perk_init();
level._zombie_custom_add_weapons =&custom_add_weapons;
//Setup the levels Zombie Zone Volumes
level.zones = [];
level.zone_manager_init_func =&usermap_test_zone_init;
init_zones[0] = "start_zone";
level thread zm_zonemgr::manage_zones( init_zones );
level.pathdist_type = PATHDIST_ORIGINAL; <----- PASTE IT HERE <----- PASTE IT HERE <----- PASTE IT HERE
}
level.pathdist_type = PATHDIST_ORIGINAL; <----- CUT FROM HERE <----- CUT FROM HERE <----- CUT FROM HERE