Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×

UHAX

Member
  • Content Count

    2
  • Joined

  • Last visited

  • Medals

  • Medals

Community Reputation

1 Neutral

About UHAX

  • Rank
    Newbie
  1. Hi, Thanks for the reply. 1: I am not stealing anyone else's work, and even if I was integrating someone else's mod into a mission that is not stealing, as long as you provide credits I don't see the problem. 2: My mod is quite simple, it disables tab locking in tanks (say the M1A2 and T90 for example), I do this with the code below, if you know a way to do this server side then please let me know. 3: BI really need to add this into the game, having to download mods that are only making tiny changes to some class structures is stupid, there is no reason why this should not be possible from within the mission. class CfgPatches { class TestClassV1 { units[] = {}; weapons[] = {}; requiredVersion = 1.0; }; }; class cfgWeapons { class CannonCore; // External class reference class MissileLauncher; class LauncherCore; class Launcher : LauncherCore { canlock = 0; }; class AT5Launcher : MissileLauncher { canlock = 0; }; class M256 : CannonCore { canlock = 0; }; class D81 : CannonCore { canlock = 0; }; class 2A42 : CannonCore { canlock = 0; }; }; class CfgVehicles { class All{}; class AllVehicles: All{}; class Land: AllVehicles{}; class LandVehicle: Land{}; class Tank: LandVehicle { commanderCanSee = "2 + 4 + 8 + 16"; gunnerCanSee = "2 + 4 + 8 + 16"; driverCanSee = "2 + 4 + 8 + 16"; }; };
  2. Hi all, I have been working on a mission for some time now, currently I have some required mods that players need in order to connect to the server, the mods are not large, only a few KB in size, however the users still need to download \ install then execute the mod with the game in order to connect (I know I can remove the mod from the mission requirements but I want all players to have the same experience). So here is my question how can I integrate the mod into the mission? Is this possible? It seem like it should be something the game should allow me to do… But I cannot find any examples of this. To be more specific, can I access and make changes to the CFGWeapon class from a mission? If so can someone please provide me with an example? If this is not possible can we please make some noise so BI can add this as a feature, as it would be a very useful! Regards,
×