i have no idea what path your using for your include but my include paths are like this
include('SMDinclude/includes/Include.lua')
function load_include(a,b)
if a and not Disable_All then
if gearswap.pathsearch({"SMDinclude/includes/"..b}) then
include("SMDinclude/includes/"..b)
else
error("Unable to find include file SMDinclude/includes/"..b)
end
end
end
load_include(MJi, 'mjob/main_job_'..player.main_job..'.lua')
load_include(SJi, 'sjob/sub_job_'..player.sub_job..'.lua')
load_include((MSi and jobs.magic:contains(player.main_job)), 'more/MSi.lua')
load_include((Ammo and jobs.ammo:contains(player.main_job)), 'more/Ammo.lua')
load_include(Special_Weapons, 'more/Special_Weapons.lua')
load_include(Conquest_Gear, 'more/Conquest_Gear.lua')
load_include(true, 'more/Registered_Events.lua')
load_include(Debug, 'more/Debug.lua')
load_include(true, 'more/Display.lua')
load_include(File_Write, 'more/File_Write.lua')
load_include((player.main_job == "NIN" or player.sub_job == "NIN"), 'more/Ninja_Tool.lua')
load_include((player.main_job == "COR" or player.sub_job == "COR"), 'more/CorsairShot_Cards.lua')
load_include((player.main_job == "DNC" or player.sub_job == "DNC"), 'more/DNC_Potency.lua')
load_include((player.main_job == "WHM" or player.sub_job == "WHM"), 'more/WHM_Potency.lua')
load_include(true, 'more/Commands.lua')
load_include(true, 'more/Spell_control.lua')
you files must be in one of these folders no mater what
Windower4\addons\libs-dev\
Windower4\addons\libs\
Windower4\addons\GearSwap\data\<player.name>\
Windower4\addons\GearSwap\data\common\
Windower4\addons\GearSwap\data\
Windower4\addons\GearSwap\<player.name>\
Windower4\addons\GearSwap\common\
Windower4\addons\GearSwap\
so you cant put them on your c drive (aka. ; C:\geaswap files)