Перейти к содержанию

Дайджесты за январь-февраль

Обновления гайдов и аддонов

Январь Февраль

Мониторинг серверов и редактор аддонов

Представляем вам две легенды. То, о чем можно было только мечтать, стало реальностью.

Мониторинг серверов Редактор аддонов

Подсказки из игры на вашем сайте

Теперь вы можете отображать сведения о внутриигровых элементах простым наведением курсора мыши.

Подробнее

Апдейтер аддонов

Представляем вам программу для автообновления аддонов и делимся подробностями.

Подробнее Скачать

Ciuine

Пользователь
  • Постов

    480
  • Зарегистрирован

  • Посещение

1 Подписчик

Посетители профиля

4 424 просмотра профиля

Достижения Ciuine

Новичок

Новичок (1/14)

  1. Ciuine

    ActionsMod

    Версия 20

    12 961 раз скачали

    Позволяет настраивать внешний вид кнопок-заклинаний на панели действий. Allows for the modification of the Action Bar slots. Usage Instruction Инструкция по использованию Этот аддон, скорее, модификация, чем аддон. Потому, что он лишь помогает настроить внешний вид стандартной панели заклинаний. По умолчанию так: Но, с помощью команды (/ab): Можно сделать, НАПРИМЕР, вот так: (Здесь, анимация готового заклинания (EffectColor) стала зелёной, недоступные заклинания (NotCastable) - красными, цвет надписи (Color) - золотым, и размер текста (Scale) сделан .8). Каждая кнопка, на панели заклинаний, полностью работоспособна, работает и перетаскивание кнопок. Можно СКРЫВАТЬ любые кнопки, и даже скрытые кнопки продолжают работать. Слэш-команды: /ab - показывает окно Настроек. /abdnd - вкл/выкл перетаскивание кнопок (Drag&Drop). /abdndreset - перезагружает Drag&Drop. /abhide # - скрыть/показать кнопку в слоте #, причём, в скрытом состоянии, кнопка продолжает работать (здесь, # - число от 1 до 48). /absize # - изменить размер слотов (иконок) панели заклинаний. (только числа, например: "/absize 35") /abscale # - изменить размер надписи "комбинация клавиш". (только числа, желательно в диапазоне 7-13, например: /abscale 10 = 1, /abscale 1 = 0.1) /abcdscale # - изменить размер надписи "счётчик кулдауна". (те же ограничения) /abstscale # - изменить размер надписи "кол-во штук в стеке". (те же ограничения) /abcusset - применить подобранный пользователем цвет. /abdis - превращает панельки в стандартный вид и обратно, в стандартном виде работает только эта команда и ничего больше /abx - задать позицию Х /aby - задать позицию Y
    Бесплатный
  2. Ciuine

    PlayerHUD

    Версия 13

    4 040 раз скачали

    What it does is display your health/mana/energy and target's health/mana/energy in the center of the screen around your character. Классический HUD. Показывает ваше здоровье/ману/энергию и здоровье/ману/энергию вашей цели, в центре экрана, вокруг вашего персонажа. Очень удобно в PvP. Настройка Для того, чтобы убрать лишние элементы аддона или отключить ДнД (белый фон у полосок баффов/дебаффов) установите аддон ConfigWindow и напишите в чат /phud для вызова настроек аддона.
    Бесплатный
  3. unit.GetTarget fetches the SecondaryTarget, unit.GetPrimaryTarget fetches the PrimaryTarget. SecondaryTargets change from a large number of things, whereas PrimaryTargets only changes under specific circumstances. It's the reason that EVENT_AVATAR_SECONDARY_TARGET_CHANGED is used over EVENT_AVATAR_PRIMARY_TARGET_CHANGED in my targeting interfaces and why the developers specifically state that PrimaryTargets should only be used for simple tracking. I made the mistake in one of the versions of PlayerHUD a while ago and used PrimaryTarget changes rather than SecondaryTargets and found this out. Additionally this is one of the reasons that avatar.SelectTarget (rather than avatar.SelectSecondaryTarget) was essentially a function "break" in particular codes. Edit: Changed "is" to "was" in last statement, as Setras informed me that the code was changed to have both be the same function.
  4. Art Up Your Allods! These are going to be quite old for your interface. My newest version "Arisen" which is unreleased is slightly updated and more inclusive but doesn't have the action bar modification required for 3.0.5+.
  5. RaidPlates Does everything that Setras says is doable, and doesn't do everything he says can't be done.
  6. Conceptual idea to remove the need for pre-coded definitions. (Keep having to deal with changes to non-RU/EU/NA localizations. BR is now Terra Santa using the old localization and I couldn't get info about the CHN one.) This code assumes that the developers use the language naming conventions to figure out localizations. Code: function GetGameLocalization() local LocOption = options.GetOptionsByCustomType("interface_option_localization") if LocOption then for i, v in LocOption do for j, x in options.GetOptionInfo(v) do if j == "values" then for k, y in x do for l, z in y do if l == "name" then return userMods.FromWString(z) end end end end end end end end Spatially shortened form: Code: function GetGameLocalization() local LocOption = options.GetOptionsByCustomType("interface_option_localization") if LocOption then for i, v in LocOption do for j, x in options.GetOptionInfo(v) do if j == "values" then for k, y in x do for l, z in y do if l == "name" then return userMods.FromWString(z) end end end end end end end end
  7. I made a simple add-on for this a while back. But everyone uses ShipControl. Type /cw to bring up the color changing menu, there are also a few different types of crosshairs to choose from. GT: Я просто надстройка для этого некоторое время назад. Но каждый использует ShipControl. Тип /cw, чтобы вызвать изменение цвета меню, есть также несколько различных типов перекрестье на выбор. CrosshairChange
  8. These functions are protected despite what the API says.
  9. Quote: LLE: I want to align the text on my buttons to the left. Can anyone please help me with that? It doesn't seem to work for me. I didn't look your code/paneling over too much, but from what I can see North, you're using a Prototype button. Add alignx='left' to the ButtonFormatNormal.txt's <button> and it will align the Prototype to the left. Your text reference in the ListButton.(WidgetButton).xdb is unused.
  10. Curse - TargSelection Simple add-on that super highlights your target; also included is my /tar selection code which is probably not as useful in other localizations. This add-on is a .pak file. Just put the .pak file in your Addons folder and it'll work like other add-ons.
  11. There's an issue with the RU version; the container is self-sizing but from what I can tell from the picture (as I told nordfox) is that the left to right containers are being ignored when it comes to sizing the container. (This does not occur in my version of the game.) As a result only the TextViews are setting the container's size. I'll have to either set the size static or figure out why the container isn't self-sizing in the RU version.
  12. Sent you a message with a test version of the localized add-on.
  13. I was going to use that for the translation of the words; but I still need the exact string that is used for the text at the top of the Unexplored Astral. Scratch that, found it on a picture; Неисследованный астрал is correct?
  14. All I need to know is what it says at the top of the RU Unexplored Astral map. Another issue will arise is that we're not as far as y'all in astral. So the buttons won't totally be in the right place, and I don't have 29-35 in full; despite trying to sift through the RU Astral threads to get that information. Google Translate: Все что мне нужно знать, что он говорит в верхней части RU Неизведанные астральной карте. Еще одна проблема возникает в том, что мы не так далеко, как вы все в астрале. Таким образом, кнопки не будут полностью находиться в нужном месте, и я не имею 29-35 в полном объеме; несмотря на попытки, чтобы просеять через RU Астральная темы, чтобы получить эту информацию.
×
×
  • Создать...

Важная информация

Пользуясь сайтом, вы принимаете Условия использования