Skills cap problem

07/17/2016 23:39 !Ego#1
Hello guy's

I've edited max lvl to 100 and max mastery cap lvl to 300 from ollydbg
but when i got my skill mastery like 'rouge' to lvl 100 the max icon doesn't appear beside it

and also the skills the up icon just disappear
i need to show the max icon

thanks in advance
:handsdown::handsdown:
07/18/2016 00:26 AceSpace#2
Quote:
Originally Posted by BuiLt4KiLl View Post
Hello guy's

I've edited max lvl to 100 and max mastery cap lvl to 300 from ollydbg
but when i got my skill mastery like 'rouge' to lvl 100 the max icon doesn't appear beside it

and also the skills the up icon just disappear
i need to show the max icon

thanks in advance
:handsdown::handsdown:
In order to show the max "label" you need to disable every skill which requires higher than the max level. Ex: You want the max level to be 100 so you need to disable any skills which has the level requirement of higher than 100.

Query:
Code:
  UPDATE SRO_VT_SHARD.dbo._RefSkill
  SET Service = 0
  WHERE ReqCommon_Mastery1 IN (SELECT MasteryID FROM SRO_VT_SHARD.dbo._RefCharDefault_SkillMastery)
  AND ReqCommon_MasteryLevel1 > 100
After using it, you'll need to apply those on client-side; to do:

Code:
SELECT * FROM SRO_VT_SHARD.dbo._RefSkill WHERE ID BETWEEN 0 AND 4999 ORDER BY ID ASC

SELECT * FROM SRO_VT_SHARD.dbo._RefSkill WHERE ID BETWEEN 5000 AND 9999 ORDER BY ID ASC

SELECT * FROM SRO_VT_SHARD.dbo._RefSkill WHERE ID BETWEEN 10000 AND 14999 ORDER BY ID ASC

SELECT * FROM SRO_VT_SHARD.dbo._RefSkill WHERE ID BETWEEN 15000 AND 19999 ORDER BY ID ASC

SELECT * FROM SRO_VT_SHARD.dbo._RefSkill WHERE ID BETWEEN 20000 AND 24999 ORDER BY ID ASC

SELECT * FROM SRO_VT_SHARD.dbo._RefSkill WHERE ID BETWEEN 25000 AND 29999 ORDER BY ID ASC

SELECT * FROM SRO_VT_SHARD.dbo._RefSkill WHERE ID BETWEEN 30000 AND 999999999999 ORDER BY ID ASC
Copy and paste them all into skilldata_5000enc, skilldata_10000enc, skilldata_15000enc, skilldata_20000enc, skilldata_25000enc, skilldata_30000enc, skilldata_35000enc /.txt\
07/18/2016 02:18 !Ego#3
I am very thankful to you !!!
thanks a lot
now the skills shows the max label
but it doesn't appear near to the world Lv100 which means that the mastery like 'Warrior' is Lvl 100 how could i fix it ?

up