[Tutorial] How to block Player per database :P

Newbie Spellweaver
Joined
Dec 1, 2007
Messages
57
Reaction score
1
So, here is my guide. It allows to block player with the kal_auth.
---------------------------------------------------------------

1. Start Enterprise Manager
2. Go on kal_auth > Tables.
3. Click with the right mousebutton, on Login, OpenTable > Return all rows.
4. Set Type and Info from the ID to 2

The Player is now, blocked. If he wants to log-in it appears a windows with "Your ID is blocked".

How to remove it?
Simple, just set 2 to 0.

IMPORTANT: You must restart your MAINSERVER maybe the auth server, db too.

--
I've used the search function.., ^^
 
Last edited:
Re: [Guide] How to block Player per database :P

Rofl. Maybe i should make a guide on how to change a players name!1!!

Code:
UPDATE [kal_auth].[dbo].[Login]
   SET [Type] = 2
 WHERE ID = 'test10'
GO
Query.
 
Re: [Guide] How to block Player per database :P

/block playername

then the whole account is blocked......
 
Re: [Guide] How to block Player per database :P

The whole account is blocked like this too.
 
Re: [Guide] How to block Player per database :P

I was thinking the same heh. Kinda shows i dont know shit about privates anymore ;D.
 
Back