How to K-Line a player from a shard
A K-line is a permanent ban from a server based on their registered Username with cyan, not their created avatar on your server.
You may also use giveright script into ServerScripts page.
- On the server run mysql -u parable -p uru_authdb
Enter the password for the user parable when asked 1
Type
INSERT INTO Permissions VALUES ('username', 'KLINE');Where username is the name of the user that will be permanently banned from this shard. (The Username is the one entered when registering an auth key)
Finding an avatar's username
In Vault Manager and open the AllPlayers folder.
- Right click on the avatar name of the user you wish to K-Line and choose "Subscribe to player"
- Right click on the newly subscribed node and choose edit.
The IString64_2 field contains their GUID. copy this value and then click cancel.
On the server look at the AuthServer.0.log file and find that GUID in the log file and choose the matching Username that goes with it.. This is the username that needs to be put in the Permissions table in the Database. 2
NOTES
You can use your favorite database administration program for example PHPMyAdmin.
Submitted by - Urkle
The database username and password may be different depending on how you setup your Untìl URU server (1)
You need to have global.StatusLogMask with kStatusLogShowDebugMsg(32) enabled to match GUIDs to Usernames (2)