Hi i got question how add combo with new char or existed char without GM tool and when i change my skill lv too Trans/Trans i dont get skill points from other rank only from Trans.
I will be grateful if someone can help me.
Printable View
Hi i got question how add combo with new char or existed char without GM tool and when i change my skill lv too Trans/Trans i dont get skill points from other rank only from Trans.
I will be grateful if someone can help me.
In your SQL Server go to Server01 and then in the tables check cabal_character_table find the character you want to edit then scroll over to SwdPNT/MagPNT and edit them.
Tip: Editing them both to 99999999 will give your character 1525 stats.
As for combo/aura I'm still trying to figure that out.
Aura is on skill table, so you must decode the skill table.
@GUIDE SECTION.
Well for now you could just send your character the combo skill book lol...
ItemID 2105 - Item Name: Skill Book (Combo Start)
Code:USE [CabalCash]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[up_AddMyCashItemByItem]
@UserNum = UserNum,
@TranNo = 1,
@ServerIdx = 1,
@ItemIdx = 2105,
@ItemOpt = 0,
@DurationIdx = 31
SELECT 'Return Value' = @return_value
GO
Thx Keelz i find this but i want some other way without add item etc. I find this if u want change ur skill lv to Double Trans change Rank to 2570.
How do you know that Combo skill id is ItemIdx = 2105 ?
Thanks