Hello, in this tutorial we will see how to delete SpyGlass completely and not disable it...
Why delete it and not just disable it?
Quite simply, when you disable SpyGlass in the Config_Master of your mission it does not completely disable and blocks some scripts like for example : Duty_System or the script of Dynamic Market.
To start, go to your mission for this tutorial I would use the basic mission provided by AsYetUntilted...
Etape 1 - Desactivate SpyGlass :
Go to your file Config_Master.hpp which is located in the folder Config at the root of your Mission
Line 10: (Base)
Replace true with false, like this:
Step 2 - Remove SpyGlass entirely:
Go to the root of your Mission and Delete the SpyGlass folder.
Then go to your folder Config and delete the file Config_SpyGlass.hpp
Then, open the file Functions.hpp which is located at the root of your Mission and Delete :
Line 14: (Base)
Then open the file description.ext which is located at the root of your Mission and Delete :
Line 4:
Then, open the file init.sqf which is located in the folder Core at the root of your Mission then Find and Delete :
Line 22: (by default)
And finally, go to your folder Core which is at the root of your Mission and Delete the file :
Here is hoping that this tutorial will help you to remove SpyGlass completely and correctly
Why delete it and not just disable it?
Quite simply, when you disable SpyGlass in the Config_Master of your mission it does not completely disable and blocks some scripts like for example : Duty_System or the script of Dynamic Market.
To start, go to your mission for this tutorial I would use the basic mission provided by AsYetUntilted...
Etape 1 - Desactivate SpyGlass :
Go to your file Config_Master.hpp which is located in the folder Config at the root of your Mission
Line 10: (Base)
Code:
spyGlass_toggle = true; //Spyglass On/Off Toggle --> True = On & False = Off
Code:
spyGlass_toggle = false; //Spyglass On/Off Toggle --> True = On & False = Off
Go to the root of your Mission and Delete the SpyGlass folder.
Then go to your folder Config and delete the file Config_SpyGlass.hpp
Then, open the file Functions.hpp which is located at the root of your Mission and Delete :
Line 14: (Base)
Code:
class SpyGlass {
tag = "SPY";
class Functions {
file = "SpyGlass";
class cookieJar{};
class notifyAdmins{};
class observe{};
};
};
Line 4:
Code:
#include "config\Config_SpyGlass.hpp"
Line 22: (by default)
Code:
[] call compile preprocessFileLineNumbers "core\clientValidator.sqf";
Code:
clientValidator.sqf
Here is hoping that this tutorial will help you to remove SpyGlass completely and correctly
Dernière édition par un modérateur: