Ability System

Horyon

Пляшущий с бубном
Участник
Сообщения
200
Розыгрыши
0
Решения
4
Репутация
53
Реакции
72
Баллы
273
Хроники
  1. Shadow of the Kamael
Исходники
Присутствуют
Сборка
Mobius Sources
Hey guys, this content is getting me crazy. I Already change in server side to start getting point before 85, but when i click the icon the window just flash and close. Also there is the main way to open the window via Alt T, this A. But is only showing up after character get 85.

I search a lot for it and i dont find atm how to make button get avaliable with other lvl, any tip helps ty.
 
Hello again, well i still with 1 stuff that i dont get it.

I Fixed all the issues even wrong skills in mobius source, but i still dont know how this button work.



Its 100% client side? I was thinking, that button need a request for change from unable


To abled.

Anyone has a tip about this?

Ty in advance.
 
In the screen character level is 85, need level > 85 and awakening. (stupide check method in core)
 
Server Core, Sorry.... Lvl >= 85

This check in:

RequestAbilityWndClose.java
RequestAbilityWndOpen.java
RequestAcquireAbilityList.java

Java:
        if (!player.isAwakenedClass())
        {
            player.sendPacket(SystemMessageId.ONLY_AWAKENED_CHARACTERS_OF_LV_85_OR_ABOVE_CAN_BE_ACTIVATED);
            return;
        }

Yhis is screen i off live server


 
Последнее редактирование:
I change this files and also Player.java for start gain points at lvl 20 or 40, dont remember.

Work pretty well, but the button keep disabled, so its not related the him.

Maybe its client side only in the end.