Quote:
Originally Posted by BuiLt4KiLl
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
 
|
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\