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!

disable login deley

Elite Diviner
Joined
Sep 7, 2020
Messages
482
Reaction score
87
how disable login deley or new register need to wait 30 secon for login
 
Banned
Banned
Joined
Aug 26, 2016
Messages
336
Reaction score
19
Its on database, user_logout/verify sp if Im not mistaken.
 
Last edited:
Upvote 0
Elite Diviner
Joined
Sep 7, 2020
Messages
482
Reaction score
87
Its on database, user_logout sp if Im not mistaken.
1689396829536 - disable login deley - RaGEZONE Forums

what line sir
 

Attachments

You must be registered for see attachments list
Upvote 0
Joined
Feb 6, 2019
Messages
581
Reaction score
170
SQL:
user_verify sp

Look For:
    ---------
    ---Login delay check
    ---works only on non user gm
    IF @UserLevel < 20
    BEGIN
        IF (SELECT DATEDIFF(SECOND, @LastLoginDate, GETDATE()) ) < 20
        BEGIN
            SET @nReturn = 30
            RETURN @nReturn
        END
    END
    
Change to:

Look For:
    ---------
    ---Login delay check
    ---works only on non user gm
    /*IF @UserLevel < 20
    BEGIN
        IF (SELECT DATEDIFF(SECOND, @LastLoginDate, GETDATE()) ) < 20
        BEGIN
            SET @nReturn = 30
            RETURN @nReturn
        END
    END*/
 
Upvote 0
Back
Top