Thread Tools Display Modes
11/03/17, 07:06 AM   #1
pearlydragon
Join Date: Nov 2017
Posts: 4
addons not seems by TESO

HI all!

I have OpenSuse 13.2. Wine 1.8. TESO latest.
in the next path I setup game and have AddOns folder:
~/Documents/Elder Scrolls Online/live/
~/.wine/drive_c/users/Documents it's link to ~/Documents.

Switch to OPENGL works. So TESO see folder ~/Documents/Elder Scrolls Online/live/ and seup-files in.
I run Minion, download any addons, install, but in TESO i have no one. Minion still run with TESO.

What i doing wrong??
  Reply With Quote
11/03/17, 10:17 AM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,912
Exit the game.
Are you able to manually download an addon and put it into your folder
~/Documents/Elder Scrolls Online/live/AddOns/

Login and check if this manually added addon was found?


And this seems to be related to Minion?
Please ask in the Minion forum:
http://www.esoui.com/forums/forumdisplay.php?f=183
  Reply With Quote
11/03/17, 10:24 AM   #3
pearlydragon
Join Date: Nov 2017
Posts: 4
Yes, I trying add manually, and by helps Minion - no in game...
  Reply With Quote
11/03/17, 10:36 AM   #4
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,912
Could you make a screenshot of the followinf folder contents please:
~/Documents/Elder Scrolls Online/live/AddOns/

It should look like this (if the addons ActionDurationReminder and AddonProfiles is installed):

~/Documents/Elder Scrolls Online/live/AddOns
/ActionDurationReminder
/AddonProfiles

The subdiretories e.g. AddonProfiles should contain a txt file named the same as the folder (in this case AddonProfiles.txt), some .lua files and subdiretories.
If there is only a subdiretory in the directory this was extracted false!

This is wrong:
~/Documents/Elder Scrolls Online/live/AddOns/ActionDurationReminder/ActionDurationReminder/ActionDurationReminder.txt

This is correct:
~/Documents/Elder Scrolls Online/live/AddOns/ActionDurationReminder/ActionDurationReminder.txt
  Reply With Quote
11/03/17, 11:19 AM   #5
pearlydragon
Join Date: Nov 2017
Posts: 4
More quick ls:

Code:
:~/Documents/Elder Scrolls Online/live/AddOns> ls -1
ActionDurationReminder
MasterMerchant
MM00Data
MM01Data
MM02Data
MM03Data
MM04Data
MM05Data                                                                                                                                              
MM06Data                                                                                                                                              
MM07Data                                                                                                                                              
MM08Data                                                                                                                                              
MM09Data                                                                                                                                              
MM10Data                                                                                                                                              
MM11Data                                                                                                                                              
MM12Data
MM13Data
MM14Data
MM15Data
SlightlyImprovedBuffTracking
Srendarr
wykkyd_core_libraries
wykkydsEnhancedChat
wykkydsEnhancedHUD
wykkydsMacros
wykkydsToolbar
wykkyd_SuiteManager
and, MM:
Code:
:~/Documents/Elder Scrolls Online/live/AddOns> ls -1 MasterMerchant/
AGS_Integration
bindings.xml
description
features
Fonts
i18n
Libs
license
MasterMerchant_DealCalc.lua
MasterMerchant_Graph.lua
MasterMerchant_GuildListings.lua
MasterMerchant_Guild.lua
MasterMerchantGuilds.xml
MasterMerchant_ItemManipulation.lua
MasterMerchantListings.xml
MasterMerchant.lua
MasterMerchantMisc.xml
MasterMerchant_Namespace_Init.lua
MasterMerchantSales.xml
MasterMerchant.txt
MasterMerchant_UI.lua
MasterMerchant_Util.lua
mm_chart_grid.dds
mm_chart_marker.dds
readme
  Reply With Quote
11/03/17, 11:23 AM   #6
pearlydragon
Join Date: Nov 2017
Posts: 4
Code:
:~/Documents/Elder Scrolls Online/live/AddOns> ls -1 Srendarr/
AuraControl.lua
AuraData.lua
Aura.lua
CastBar.lua
Core.lua
Defaults.lua
DisplayFrame.lua
Icons
Lib
Locales
Procs.lua
Settings.lua
Srendarr.txt
Srendarr.xml
  Reply With Quote
11/03/17, 11:39 AM   #7
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,912
Looks ok for me. Seems as if this is a problem with Unix and TESO then somehow.
As I don't know unix that good I can't help any further, sorry.
  Reply With Quote
11/06/17, 06:01 AM   #8
delta1
AddOn Author - Click to view addons
Join Date: Sep 2017
Posts: 1
Possible causes include wrong ESO folder, case-sensitivity and file permissions. See bellow for how to debug them.

First you need to make absolutely sure that is the correct ESO folder.
Do you have an UserSettings.txt file in "~/Documents/Elder Scrolls Online/live/UserSettings.txt" ?

If yes, make sure it is loaded:
1) close game
2) make an obvious change in it, for example set it to play or to skip intro videos by changing both these values to "1" or to "0" respectively:
SET SkipPregameVideos "1"
SET HasPlayedPregameVideo "1"
3) open game and observe if your changes are applied (do you see intro videos?)

If the changes are NOT applied then that is not the correct folder and you need to find it (don't know how...)

If however the changes are applied then it might simply be a case of case-sensitivity for file names (had a similar issue a long while ago with Fallout 3). Try to rename an addon and all its files and folders to lower case only and see if that helps.

Another thing to do: create a test addon with the following:
- cd <addons folder>
- mkdir testaddon
- echo "error('it works')" > testaddon/testaddon.lua
- echo "testaddon.lua" > testaddon/testaddon.txt
- start game and login; you should get a lua error with text "it works" if... well if it works

Last: file permissions. Change all folder permissions to 0755 (user: all, group/others: read/list) and all file permissions to 0644 (user: all, group/others: read only) via the following:
- cd ~/Documents/Elder Scrolls Online/
- find . -type d -exec chmod 0755 {} \;
- find . -type f -exec chmod 0644 {} \;
Relaunch the game and see if it helps.

I hope it helps. If not, please report back and we'll take it from there (I have some more ideas, like intercepting "open()" syscalls).
  Reply With Quote

ESOUI » AddOns » AddOn Help/Support » addons not seems by TESO

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off