On 2002-09-30 22:06, ZOD wrote: TR2 basically duplicated its $WEaponsHudData arrays in another file TR2Items.cs which is totally screwing up 3rd party mods. The fix for right now is to disable TR2 in your mod until this problem is addressed officially (which it will be). To disable TR2 is as simple as adding 1 line to your server.cs file where it executes the mission types: Code: -------------------------------------------------------------------------------- %search = "scripts/*Game.cs"; for(%file = findFirstFile(%search); %file !$= ""; %file = findNextFile(%search)) { %type = fileBase(%file); // get the name of the script if(%type !$= TR2Game) // ZOD: Add this if statement exec("scripts/" @ %type @ ".cs"); } --------------------------------------------------------------------------------