ERROR: function name 'launch' already defined as builtin
-
When I attempt to start a private match I get this result:
Com_ERROR: [ERROR]:compiler:maps/mp/mp_dwarf_sh.gsc:118:1: function name 'launch' already defined as builtin
Any ideas how to fix this? I saw a similar post but instead of 'launch' it was 'float'. I tried all troubleshooting ideas for that to no avail. This happens with all maps.
-
Looks like the gsc of a custom map has a function called
launch
which causes that issue since the game already does define a function calledlaunch
.
Either ask the map dev to change it or rename the function in the gsc yourself. -
The author of the map should go in the map's GSC source code and change the
launch
function to anything that's not already used by the game likedwarfLaunch
for example. Both for the declaration and the call of the function.The error is self explanatory, means that function is already defined/already exists as a built-in aka provided by the game/Plutonium
If he has no GSC knowledge you can tell him to contact me and I'll fix it for him. Already did it on other maps
-
Thank you so much
-