Результаты поиска по запросу: *

  1. KouGou

    Interface BIND

    Again, as discussed in the previously opened topic - the method you choose to bind the interface to the particular player or PC is irrelevant. It is the information of that player or PC that you need before you can do anything else. (IP, Nickname, HWID, Geolocation, PID, Timezone... doesn't...
  2. KouGou

    Bug when adding Adding click-to-buff removal to interlude

    It will do that if you are using custom fame icon size while calculating the pointer offset to another size (NSTATUSICON_FRAMESIZE <- has to equal the size of your icon frame) otherwise you are pointing at a different icon hence why it removes something else. targetRow = (Y -...
  3. KouGou

    Размер текста в Tooltip (HF)

    можешь показать скриншот именно той части которую хочешь изменить? А то тут несколько вариантов ответа
  4. KouGou

    Mobius Essence 8.2

    It's the version you could have gotten your hands on :D
  5. KouGou

    Display the loading screen with the texture "L2Font-e.loading02-e" on teleport

    You need a custom Window and a Texture in the XDAT and a control script in the .u with "OnShow()" event with: local int x; local int y; GetCurrentResolution(x, y); YourCustomWindow.SetWindowSize(x, y); YourCustomTexture.SetWindowSize(x, y); And finally a custom server side packet that sends 0...
  6. KouGou

    Помощь с текстурой в xdat.

    Принцип тот же, но методика разная
  7. KouGou

    Doubt about error

    I think you need to give a little bit more context than that 😅
  8. KouGou

    Экран выбора персонажа / выбор персонажа

    CharacterSelectWnd.uc модул в интерфейс и ui6.ugx (по спомени) вообще не вярно, я мешал с CharacterCreateMenu
  9. KouGou

    High Five interface editing.

    Projack has a wonderful autofarm that comes with both server/client support and it's well documented. The price is more than fair and you can learn a lot about how it's made
  10. KouGou

    High Five interface editing.

    Interface is build in a scripting language so any text editing software would do - it's all up to your preference. (Notepad++, IntelliJ, Eclipse, VS Code, UExplorer etc)
  11. KouGou

    Chat Mobius

    Тебе нужно изменить файл ChatWnd.uc в интерфейсе. Там есть условные проверки типа "IsBuilderPC()", которые мешают твоему сообщению отображаться.
  12. KouGou

    Цена продажи товаров НПС

    long totalPrice = 0; // Proceed the sell for (UniqueItemHolder i : _items) { final Item item = player.checkItemManipulation(i.getObjectId(), i.getCount(), "sell"); if ((item == null) || (!item.isSellable())) { continue...
  13. KouGou

    Цена продажи товаров НПС

    RequestSellItem.java // line 142~ long totalPrice = 0; for (UniqueItemHolder i : _items) { final Item item = player.checkItemManipulation(i.getObjectId(), i.getCount(), "sell"); if ((item == null) || (!item.isSellable())) {...
  14. KouGou

    музыка в логин скрине клиента классик

    я хотел сказать, что есть простой метод узнать: создай папку внутри папку 'music', запусти игру и попробуй переместить все файлы в эту папку, тот файл, который не получится переместить, и есть твой виновник!
  15. KouGou

    систем л2 арена

    Там нет ничего, чего бы уже не было у следующих клиентов, кроме нескольких файлов _arena.dat 🫠
  16. KouGou

    Accessories Not displayed properly

    Normally it wouldn't glitch that way, unless you've attempted to port accessories or hair styles from different chronicle or server type where .dats or mesh points aren't allocated with hair attach points. There's also another way you could get this glitch and it's around the saving of the hair...
  17. KouGou

    Accessories Not displayed properly

    Define "edit my hair". You modify the client or you refer to the Beauty Shop? In any case, does a wrong looking accessory ever look normal again (after rr or game reset etc) or it's broken for good?
  18. KouGou

    Закрыть окно при клике на экран вне определённого окна.

    function OnFocus(bool bFlag, bool bTransparency) { if (!bFlag) { _configPotions.HideWindow(); } }
  19. KouGou

    Fullscreen при загрузке чаров

    Впервые об этом слышу, хотя я с 140 уже давно. Ты уверен, что это не связано с системой? Другого объяснения не вижу, разве что ты выбираешь персонажа через Enter, и как-то "Alt" мешает.:oops:
Назад
Сверху