Bonjour à tous, je suis entrain de créer des objets pour l'inventaire mais en jeu ils apparaissent dans la catégorie chargeur or je voudrais qu'ils apparaissent dans la catégorie Divers Objets. Voici mon config :
Posté par sup3rcraftfr via discord.
Code:
class CfgPatches
{
class TFLobjet
{
units[]={};
weapons[]={};
requiredVersion=1;
author[]=
{
"Sup3rCraft"
};
};
};
class CfgMagazines
{
class CA_Magazine; //Inherits the base magazine
class ladder: CA_Magazine
{
displayName = "Echelle a coulisse"; //Item's Display Name
scope=2; //Scope 2 will show in editor
author = "Sup3rCraft"; //Your Name
picture = "\TFLechelle\data\Logo.paa"; //Displays icon in your Inventory
model = "TFLechelle\echelle.p3d"; //Path to your model
icon = "iconObject_circle"; //Leave as is
};
};
Posté par sup3rcraftfr via discord.