Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

New account bonus

Newbie Spellweaver
Joined
Jan 24, 2019
Messages
15
Reaction score
0
Hello

How can i disable Level booster from x-pasa to 2031 year ?? :D

How can i enable BlessingBead ( 30 days) for new registered players ???

How can i add other items for time playing to players
 
Newbie Spellweaver
Joined
Jan 24, 2019
Messages
15
Reaction score
0
Okay but if i edit everybody is too much...

I want to disable lvl booster and add only blessingBead :D
 
Upvote 0
Junior Spellweaver
Joined
Jul 15, 2020
Messages
100
Reaction score
15
Hello

How can i disable Level booster from x-pasa to 2031 year ?? :D

How can i enable BlessingBead ( 30 days) for new registered players ???

How can i add other items for time playing to players

1. Level booster? U mean premium service? If so, I think u can delete this part in Account.dbo.cabal_tool_registerAccount_web although I havent tried that yet.

Code:
insert into cabal_charge_auth(usernum, type, expiredate, payminutes, ServiceKind)    values(@UserNum, 5, DATEADD(day, 1000, getdate()), 0, 1)

2. Create new char. Put all item in inventory you want to give to newbie. Logout from game. Go to SQL. Run stored procedure Server01.dbo.GetInventory on your Character ID. Copy the binary in result area. Now, run 'new query' on [Server01]

Code:
UPDATE [Server01].[dbo].[cabal_new_character_data] SET
    [InventoryData] = *paste your inventory binary here.*
WHERE [ClassType] = @y
Code:
ClassType: 
1 Warrior
2 Blader
3 Wizard
4 FA
5 FS
6 FB
*credit to punkstyle and window123*

3. Specialinventory.scp
 
Upvote 0
Back
Top