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 do i give rank 1 the mimic command?

Experienced Elementalist
Joined
Nov 25, 2012
Messages
270
Reaction score
17
Location
England
All in the title, at the moment it's only available to VIP people in the permissions_VIP table but i'd like to add it to the ranks table please:)
 
You can't, for everyone to recieve the mimic command, you must give everyone VIP.

And to do that just run the SQL query

update users set VIP = 2

and modify the users table so that the default for VIP is 1.
 
Upvote 0
Yes sorry. Can't do this without giving them VIP.

If you want to give a certain user access to a certain command without giving them a new rank, you can use the permission_users table - just in case you didn't know ;p
 
Upvote 0
You can't, for everyone to recieve the mimic command, you must give everyone VIP.

And to do that just run the SQL query

update users set VIP = 2

and modify the users table so that the default for VIP is 1.

Can give me the SQL query to make users vip to 1?
 
Upvote 0
Back