Jump to content
Sign in to follow this  
Sgt Smash

Removing a EXAD's app tile?

Recommended Posts

I managed to disable the tracking app, but how do i remove it from the XM8 apps tiles?

Share this post


Link to post
Share on other sites

I have looked thought more of the files and i'm at a lost, A bit like this thread if it falls down the home page list!!

Share this post


Link to post
Share on other sites

Would deleting the whole JxUnitScanner folder work?

Share this post


Link to post
Share on other sites

Check if its in your config.cpp, at the bottom where all XM8 Rsc things go. Maybe it was added there.
Or at class CfgXM8 >    extraApps

Share this post


Link to post
Share on other sites
9 minutes ago, chernaruski said:

Check if its in your config.cpp, at the bottom where all XM8 Rsc things go. Maybe it was added there.

This file?

Spoiler

/*  
    RscTitles.cpp

    Copyright 2016 Jan Babor

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

#include "StatsBar\RscTitles.cpp"
//#include "HUD\RscTitles.cpp"

 

Share this post


Link to post
Share on other sites
28 minutes ago, chernaruski said:

config.cpp in your mission.pbo 

Ah i forgot i added stuff to that when i installed it lol, So should i /* */ it out?

Spoiler

class ExAd_JX
    {
        title = "Unit Scanner";
        controlID = 85100;                    
        logo = "ExadClient\XM8\Apps\JX\logo.paa";
        onLoad = "ExAdClient\XM8\Apps\JX\onLoad.sqf";
        onOpen = "ExAdClient\XM8\Apps\JX\onOpen.sqf";
        onClose = "ExAdClient\XM8\Apps\JX\onClose.sqf";
    };

 

Share this post


Link to post
Share on other sites

I tried using /* */ to remove them but the tiles still showed up on the XM8

Share this post


Link to post
Share on other sites

Hi, I have this in config.cpp. 

 

class XM8_App07_Button: RscExileXM8AppButton1x1

{

textureNoShortcut = "ExadClient\XM8\Apps\JX\logo.paa";

text = "Unit Scanner";

onButtonClick = "['ExAd_JX', 0] call ExileClient_gui_xm8_slide";

resource = "";

};

 

If you have it anyway, just delete it

 

class XM8_App07_Button: RscExileXM8AppButton1x1

{

textureNoShortcut = "";

text = "";

onButtonClick = "";

resource = "";

};

  • Like 1

Share this post


Link to post
Share on other sites

It sadly didn't remove them. thanks anyways everyone

Share this post


Link to post
Share on other sites
Sign in to follow this  

×