Home   Help Search Login Register  

Author Topic: How to remove useless addons.  (Read 433 times)

0 Members and 1 Guest are viewing this topic.

Ace Productions

  • Guest
How to remove useless addons.
« on: 31 Aug 2003, 11:03:05 »
When making a mission sometimes you use addons that finally you change or remove cause you don't need them. When you try to install this mission again and it's final addons the game gives an error looking for these non-existing addons! I've checked all the scripts I did as well as my map in the editor and they are not used or refered to anywhere. How can you fix that so you don't have to add useless addons?  ???

Offline Tomb

  • Contributing Member
  • **
  • in2 Metal? Go 2 my sig
Re:How to remove useless addons.
« Reply #1 on: 31 Aug 2003, 11:16:24 »
Howdy m8!  :-*

Ya need to DELETE the class_names from yer "Mission.sqm" file!  :o :D

...those removed addons are STILL mentioned in the "addons" part of the mission, m8, so read that file (using NOTEPAD) and delete the unwanted class names.

Here's an example:

=======================


   addOns[]=
   {
      "AGS_harbour",
      "Trabant",
      "Mini",
      "Baracken",
   };
   addOnsAuto[]=
   {
      "AGS_harbour",
      "Trabant",
      "Mini",
      "Baracken",
   };


===========================

 :) See?! just delete, say "Trabant" if that is what you wanna get rid of.


Ace Productions

  • Guest
Re:How to remove useless addons.
« Reply #2 on: 31 Aug 2003, 11:35:55 »
Cheers mate!

Splendid work indeed!

Thanks a lot  ;D