Help with server

08/14/2008 19:04 cabal_lovexxx#1
I created a cabal server.I have that bug when LOG IN with user is already connected.. How can i fix it?
08/14/2008 22:55 Mirceagab#2
thats easy,i cant fix the login delay.the one when u must press esc all the time
08/15/2008 17:41 cypherbad#3
u can fix the channel bug with a addon in the server source code. i got mine working :D
08/15/2008 20:02 darktrance#4
Quote:
Originally Posted by cypherbad View Post
u can fix the channel bug with a addon in the server source code. i got mine working :D
can u pls share it?
08/15/2008 20:12 Mirceagab#5
open the ACCOUT database, and on cabal_auth_table table right click, select "all task" -> "manage triggers" paste the:

Quote:
CREATE TRIGGER [fixlogin] ON [dbo].[cabal_auth_table]
FOR INSERT, UPDATE, DELETE
AS
begin
update cabal_auth_table set login = 0
end
After you do this it will only work if you give the table permissions for public :)