lotrointerface.com
Search Downloads


Go Back   LoTROInterface > LotRO Stand-Alone Plugins > Action Bars & Main Bar

Category: Action Bars & Main BarHorseStable
Interface Information
Download
homeopatix's Portal Bug Reports Feature Requests
How do I install this? (FAQ)
Name: HorseStable   Popular!
Author:
Date: 02-18-2024 07:31 AM
Size: 26.85 Kb
Version: 1.20
Rate File: 5 out of 5 with 5 votes  
Pictures
Click to enlarge 

Views: 0
Size: 235.36 Kb
Dimensions: 800 x 220
TinyWindow
 
Click to enlarge 

Views: 0
Size: 332.88 Kb
Dimensions: 600 x 500
SmallWindow
 
Click to enlarge 

Views: 0
Size: 493.34 Kb
Dimensions: 800 x 560
BigWindow
 
Click to enlarge 

Views: 0
Size: 114.80 Kb
Dimensions: 248 x 253
RandomMonts
 
Description
DESCRIPTION (Francais)

HorseStable est un petit plugin pour avoir un acces rapide a vos montures
Vous pouvez effacer un raccourci avec la mollete de la souris sur le reccourci
Vous pouvez cliquez sur le bouton HORSESTABLE pour afficher la fenetre ou cliquez sur le bouton pour la cacher
Permet d'afficher une monture aléatoire a chaque ouverture de la fenetre
Vous pouvez ferme la fenetre en cliquant sur la croix
et vous pouvez la reouvrir en cliquant sur l'icon HORSESTABLE

DESCRIPTION (English)

HorseStable is a small plugin to have quick access to your mounts
You can delete a shortcut with the mouse wheel on the shortcut
You can click the HORSESTABLE button to display the window or click the button to hide it
Allows you to display a random mount each time you open the window
You can close the window by clicking on the cross
and you can reopen it by clicking on the icon HORSESTABLE

DESCRIPTION (Deutsche)

HorseStable ist ein kleines Plugin, mit dem Sie schnell auf Ihre Reittiere zugreifen konnen
Sie konnen eine Verknupfung mit dem Mausrad auf der Verknupfung loschen
Sie konnen auf die Schaltflache HORSESTABLE klicken, um das Fenster anzuzeigen, oder auf die Schaltflache klicken, um es auszublenden
Ermöglicht die Anzeige eines zufälligen Mount bei jedem Öffnen des Fensters
Sie konnen das Fenster schliessen, indem Sie auf das Kreuz klicken
und Sie konnen es erneut offnen, indem Sie auf das Symbol HORSESTABLE klicken

LIST OF ALL COMMANDS

(French)
Raccourci disponible
/Ho show -- montre la fenetre
/Ho hide -- cache la fenetre
/Ho clear -- effacer toutes les entrees
/Ho alt - Active ou désactive la touche alt pour le déplacement de l'icon
/Ho options - affiche la fenètre d'options
/Ho toggle - affiche ou cache la fenetre

(English)
Shortcut available
/Ho show - show the window
/Ho hide - hide the window
/Ho clear - clear all entries
/Ho alt - ALT-Taste gedrückt halten, um das Symbol zu verschieben
/Ho options - display the options window
/Ho toggle - display or hide the window

(Deutsche)
Verknupfung verfugbar
/Ho show - zeige das Fenster
/Ho Hide - Verstecke das Fenster
/Ho clear - Alle Eintrage loschen
/Ho alt - Activate or deactivate the alt key to move the icon
/Ho options - Zeigen Sie das Optionsfenster an
/Ho toggle - Fenster ein-oder ausblenden

UPDATE V1.20
(French)
Correction d'un bug avec la touche alt
(English)
Fixed a bug with the alt key
(Deutsche)
Ein Fehler mit der Alt-Taste wurde behoben

UPDATE V1.19
(French)
Mise à jour de la version Allemande, merci à Farothhen pour son travail
(English)
Update of the German version, thanks to Farothhen for his work
(Deutsche)
Aktualisierung der deutschen Version, Dank an Farothhen für seine Arbeit


Rest of changelog can be found here
Archive List (Old Versions)
File Name
Version
Size
Author
Date
1.19
26.75 Kb
homeopatix
02-12-2024 12:59 PM
1.18
26.67 Kb
homeopatix
01-26-2022 01:23 PM
1.17
26.44 Kb
homeopatix
12-28-2021 09:08 AM
1.16
25.87 Kb
homeopatix
12-10-2021 09:05 AM
1.15
24.70 Kb
homeopatix
11-16-2021 11:49 AM
1.14
24.55 Kb
homeopatix
05-14-2021 03:27 AM
1.13
24.10 Kb
homeopatix
04-03-2021 04:50 PM
1.12
24.05 Kb
homeopatix
03-31-2021 05:50 AM
1.11
24.05 Kb
homeopatix
02-28-2021 03:06 PM
1.10
24.06 Kb
homeopatix
02-18-2021 04:48 PM
1.09
24.03 Kb
homeopatix
02-18-2021 04:37 PM
1.08
21.93 Kb
homeopatix
01-30-2021 08:27 PM
1.07
21.92 Kb
homeopatix
01-08-2021 05:02 PM
1.06
27.77 Kb
homeopatix
01-06-2021 11:12 AM
1.05
27.76 Kb
homeopatix
01-04-2021 06:06 PM
1.04
29.93 Kb
homeopatix
01-02-2021 01:07 PM
File Statistics
User Rating:
5 out of 5 with 5 votes
Downloads: 36452
Views: 45587
Favorites: 19
Uploaded By:
 
Last Modified: N/A

View Pictures. Download Now! Post A Comment


Post A Reply
Author Comments Comment Options
Unread 01-02-2021, 05:29 AM  
Tappo
The Wary
 
Tappo's Avatar

Forum posts: 2
File comments: 22
Uploads: 0
F12

Hello, can you please change the Main.lua so that the function HorseStableWindow.KeyDown looks like this, in order to correctly hide the window and icon on F12
Code:
HorseStableWindow.KeyDown=function(sender, args)
	if ( args.Action == Turbine.UI.Lotro.Action.Escape ) then
		HorseStableWindow:SetVisible(false);
		settings.isWindowVisible = false;
	end
	-- https://www.lotro.com/forums/showthread.php?493466-How-to-hide-a-window-on-F12&p=6581962#post6581962
	if ( args.Action == 268435635 ) then
		hudVisible=not hudVisible;
		if hudVisible then
			HorseStableWindow:SetVisible(false);
			MainMinimizedIcon:SetVisible(false);
		else
			HorseStableWindow:SetVisible(settings.isWindowVisible);
			MainMinimizedIcon:SetVisible(true);
		end
	end
end
Tappo is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-02-2021, 05:32 AM  
Tappo
The Wary
 
Tappo's Avatar

Forum posts: 2
File comments: 22
Uploads: 0
windows always visible at startup

hello,
i would like the window to be hidden at startup, i believe the code should remember the latest state, but it doesn't.

first issue seems to be
Code:
MainMinimizedIcon = MinimizedIcon(Images.MinimizedIcon, 40, 40, HorseStableWindow:SetVisible(true));
this forces the window to visible, why do you need a callback here?

the second issue i did not track down yet
Tappo is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-02-2021, 06:07 AM  
homeopatix
The Indomitable
 
homeopatix's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 355
Uploads: 32
Needed help

Hello Tappo,

Thank you for your feed back

I have done the two changes you asked me


Happy new year and play well

Last edited by homeopatix : 01-02-2021 at 06:07 AM.
homeopatix is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-06-2021, 05:05 AM  
Tappo
The Wary
 
Tappo's Avatar

Forum posts: 2
File comments: 22
Uploads: 0
Fix for clicking on minimized icon

Hello,
i would like to propose two changes to the MouseClick in minimized window
  1. the window was toggled everytime i tried to move the icon
    wrapping the funcioin inside a check for tresholdTrigger will prevent this
  2. sometimes when clicking the icon the window would appear below other screen elements
    increasing ZOrder by one seems to fix it for me

added lines are shown in red
Code:
	self.trigger.MouseClick = function( sender, args )
		if not self.thresholdTrigger then
			if(settings.isWindowVisible == "false") then
				HorseStableWindow:SetVisible(true);
				HorseStableWindow:SetZOrder(HorseStableWindow:GetZOrder()+1);
				settings.isWindowVisible = true ;
				SaveSettings(4);
			else
				HorseStableWindow:SetVisible(false);
				settings.isWindowVisible = false ;
				SaveSettings(4);
			end
		end
	end

by the way, why did you change the check to
Code:
settings.isWindowVisible == "false"
in 1.05?
it should be a boolean, what is it that resets it to string?

and last i would add the ZOrder fix to the 'show' command.

Thanks in advance

Last edited by Tappo : 01-06-2021 at 05:51 AM.
Tappo is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-06-2021, 07:59 AM  
homeopatix
The Indomitable
 
homeopatix's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 355
Uploads: 32
Re: Fix for clicking on minimized icon

Quote:
Hello,
i would like to propose two changes to the MouseClick in minimized window
  1. the window was toggled everytime i tried to move the icon
    wrapping the funcioin inside a check for tresholdTrigger will prevent this
  2. sometimes when clicking the icon the window would appear below other screen elements
    increasing ZOrder by one seems to fix it for me

added lines are shown in red
Code:
	self.trigger.MouseClick = function( sender, args )
		if not self.thresholdTrigger then
			if(settings.isWindowVisible == "false") then
				HorseStableWindow:SetVisible(true);
				HorseStableWindow:SetZOrder(HorseStableWindow:GetZOrder()+1);
				settings.isWindowVisible = true ;
				SaveSettings(4);
			else
				HorseStableWindow:SetVisible(false);
				settings.isWindowVisible = false ;
				SaveSettings(4);
			end
		end
	end

by the way, why did you change the check to
Code:
settings.isWindowVisible == "false"
in 1.05?
it should be a boolean, what is it that resets it to string?

and last i would add the ZOrder fix to the 'show' command.

Thanks in advance

tanks for the comment i will check that asap

for the boolean i changed them becaue it was not working for me...i do not know why, i am a carpenter not a code writer... i am trying

Last edited by homeopatix : 01-18-2021 at 05:53 PM.
homeopatix is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-06-2021, 11:20 AM  
homeopatix
The Indomitable
 
homeopatix's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 355
Uploads: 32
Version 1.06

Tappo i have done the changes you proposed me

Thank you very much for your help in this

Happy new year and play well

Homeo
homeopatix is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-13-2021, 02:47 AM  
Aedros
The Wary

Forum posts: 0
File comments: 3
Uploads: 0
Unable to move icon

I installed HorseStables and plan to install your other shortcuts, but I ran into a problem: I can't move the icon from its initial location. I'm sure it is user error but what am I doing wrong?

EDIT: IT WAS USER ERROR!!!! I figured out that the key was Alt-left click. Thanks for an awesome plugin that I've been looking for for years!

Last edited by Aedros : 02-13-2021 at 03:26 AM.
Aedros is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-17-2021, 02:48 PM  
greyhare
The Wary

Forum posts: 0
File comments: 9
Uploads: 0
Missing icon

I love this plugin but I have a problem...The icon for it does not load and I cant figure out how to get it loaded. Right now I am using the / commands but theicon would sure be easier
greyhare is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-17-2021, 02:51 PM  
homeopatix
The Indomitable
 
homeopatix's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 355
Uploads: 32
Re: Missing icon

Quote:
I love this plugin but I have a problem...The icon for it does not load and I cant figure out how to get it loaded. Right now I am using the / commands but theicon would sure be easier
i you do nat have any error, that means the icon muste be behind another one
because the icon needs to be loaded for the plugin to work

in case you do not find it, just delete the setting file in the plugindata folder of you server and your character name and that will reinit the plugin to it initial state and the icon would be in the up left corner

Last edited by homeopatix : 02-17-2021 at 02:54 PM.
homeopatix is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-17-2021, 06:02 PM  
greyhare
The Wary

Forum posts: 0
File comments: 9
Uploads: 0
Re: Re: Missing icon

i you do nat have any error, that means the icon muste be behind another one
because the icon needs to be loaded for the plugin to work

in case you do not find it, just delete the setting file in the plugindata folder of you server and your character name and that will reinit the plugin to it initial state and the icon would be in the up left corner


Thank you...I was just missing it behind something. Thank you for the fast response!
greyhare is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-18-2021, 01:39 PM  
homeopatix
The Indomitable
 
homeopatix's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 355
Uploads: 32
Re: Re: Re: Missing icon

Quote:
i you do nat have any error, that means the icon muste be behind another one
because the icon needs to be loaded for the plugin to work

in case you do not find it, just delete the setting file in the plugindata folder of you server and your character name and that will reinit the plugin to it initial state and the icon would be in the up left corner


Thank you...I was just missing it behind something. Thank you for the fast response!
you are welcome
homeopatix is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-01-2021, 06:03 AM  
mmoblitz
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
Getting Error

For some reason I'm getting the following script error when the plugin tries to load:

...ine\Plugins\Homeopatix\OneToRuleThemAll\Library s.lua:7: Unable to resolve package "Turbine.UI.Extensions".
... Online\Plugins\Homeopatix\OneToRuleThemAll\Main.lu a:9: Failed to import package "Homeopatix.OneToRuleThemAll.Librarys".

This is for your "One to rules them all" plugin, but I get the same thing no matter which of your plug-ins I try to use. All produce the same error. I have other plug-ins in use, but all of those are working. It's just yours throwing this error and I can't figure out why.
mmoblitz is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-01-2021, 10:04 AM  
homeopatix
The Indomitable
 
homeopatix's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 355
Uploads: 32
Re: Getting Error

Quote:
For some reason I'm getting the following script error when the plugin tries to load:

...ine\Plugins\Homeopatix\OneToRuleThemAll\Library s.lua:7: Unable to resolve package "Turbine.UI.Extensions".
... Online\Plugins\Homeopatix\OneToRuleThemAll\Main.lu a:9: Failed to import package "Homeopatix.OneToRuleThemAll.Librarys".

This is for your "One to rules them all" plugin, but I get the same thing no matter which of your plug-ins I try to use. All produce the same error. I have other plug-ins in use, but all of those are working. It's just yours throwing this error and I can't figure out why.
Hello,

It is because you need to have the turbine package installed

you can download them at this adress : Here

or you can download them with the Compendium plugins too they are called Turbine Examples

Homeo

Last edited by homeopatix : 04-01-2021 at 10:26 AM.
homeopatix is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-28-2021, 07:00 PM  
Taalyn
The Wary
 
Taalyn's Avatar

Forum posts: 0
File comments: 2
Uploads: 0
moving/removing mounts

If I move a mount to another location it copies the mount leaving two copies of the mount in the panel.

I can't find a way to remove any item from the panel.
Taalyn is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-30-2021, 03:47 PM  
homeopatix
The Indomitable
 
homeopatix's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 355
Uploads: 32
Re: moving/removing mounts

Quote:
If I move a mount to another location it copies the mount leaving two copies of the mount in the panel.

I can't find a way to remove any item from the panel.
Hello,

You can delete a shortcut with the mouse wheel on the shortcut

have a nice day


Homeo

Last edited by homeopatix : 10-30-2021 at 03:48 PM.
homeopatix is offline Report comment to moderator   Reply With Quote Reply With Quote
Post A Reply

 
Category Jump:
Search this Category:
 

All times are GMT -5. The time now is 09:36 PM.


Our Network
EQInterface | EQ2Interface | Minion | WoWInterface | ESOUI | LoTROInterface | MMOUI | Swtorui