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!

I want to add table in RanUser and Point in my Juver files

Newbie Spellweaver
Joined
May 9, 2023
Messages
15
Reaction score
0
Hello, I want to add table in RanUser and Point in my Juver files. What files do I need to use to use my new created table?
 
Banned
Banned
Joined
Jun 11, 2021
Messages
42
Reaction score
9
just follow the userpoint source, which table that it read.
if read from user info, just add the column in userinfo with BIGINT type.
you can use the code here. for example of UserPoint & UserPoint2

SQL:
use RanUser
go
Alter Table UserInfo
add
UserPoint bigint not null default(0),
UserPoint2 bigint not null default(0)
 
Upvote 0
Back
Top