Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

How add Combo and skill points?

Newbie Spellweaver
Joined
Feb 24, 2013
Messages
10
Reaction score
0
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.
 
Last edited:
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.
 
Upvote 0
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
 
Upvote 0
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.
 
Upvote 0
Back