[Release] Compiled Server+Client fully working

I don't know where I might be going wrong anymore, I've done everything and it doesn't work

View attachment 274059
On DBDaemonServer.INI DataSourceCombat and DataSourceCombatLog use "localhost" or the SQL Server name.

Screenshot_14.webp
 
Last edited:
what did you do to fix it ? I keep getting the port connect failure 20000, Could you explain what to change ? please
need to fix the database connection when I fixed mine stopped the error now the lobby error remained, I got a vps I'll test it
 
Hello, how solve this in LobbyServer?

View attachment 274072


Firewall disabled and all ports open...
Your LaunchServer is not working, you are missing the odbc or the sql user UID=combatadmin PWD=Admin123456 for the COMBATARMS_LOG.

these won't install for me to save my life. I get the xampp error about
View attachment 274073

Installers say it failed because I already have it lol
It is as the error says you need vc redist 2008, if you already have it you can try to download a new version of xampp but you will need to set up the vhosts and mssql extensions.
 
Your LaunchServer is not working, you are missing the odbc or the sql user UID=combatadmin PWD=Admin123456 for the COMBATARMS_LOG.


It is as the error says you need vc redist 2008, if you already have it you can try to download a new version of xampp but you will need to set up the vhosts and mssql extensions.
thankss!
 
Your LaunchServer is not working, you are missing the odbc or the sql user UID=combatadmin PWD=Admin123456 for the COMBATARMS_LOG.
i have both and launchserver still dies, though noticeably much later
1736145125925.webp
 
Last edited:
aslhay how did you do to create the account I was looking in the databases but I couldn't find it would it be possible to provide the way to even add the cash
 
aslhay how did you do to create the account I was looking in the databases but I couldn't find it would it be possible to provide the way to even add the cash
If you are using the database I posted the SHA1 is disabled if not you need to change the lines remove the "--" from HASHBYTES and add "--" to the line "@strPassword".
--HASHBYTES('SHA1', @strPassword), -- Hashed password
@strPassword, -- If the password SHA1 is disabled

To add cash you need to edit DB VISMS table VISMS_UserList.

Code:
DECLARE @strNexonID NVARCHAR(64) = 'ashlay'; -- Replace with actual value
DECLARE @strPassword NVARCHAR(128) = 'test';
DECLARE @strEmail NVARCHAR(200) = '[email protected]';

-- Ensure required values are not NULL
IF @strNexonID IS NULL OR @strPassword IS NULL OR @strEmail IS NULL
BEGIN
    PRINT 'Error: strNexonID, strPassword, and strEmail cannot be NULL.';
    RETURN;
END

INSERT INTO CBT_UserAuth (
    strNexonID,
    strLNexonID,
    strPassword,
    strEmail,
    bIsMailActive,
    BlockStartDate,
    BlockEndDate,
    RegDate,
    strLastMacAddress,
    strLastLoginIP,
    strLastHWID
)
VALUES (
    @strNexonID,                           -- Original Nexon ID
    LOWER(@strNexonID),                    -- Lowercase Nexon ID for consistent lookups
    --HASHBYTES('SHA1', @strPassword),       -- Hashed password
    @strPassword,                          -- If the password SHA1 is disabled
    @strEmail,                             -- Email address
    1,                                     -- Email not active initially
    NULL,                                  -- No block start date
    NULL,                                  -- No block end date
    GETDATE(),                             -- Registration date
    NULL,                                  -- Last MAC address (not set yet)
    NULL,                                  -- Last login IP (not set yet)
    NULL                                   -- Last HWID (not set yet)
);
 
Hi,

Nice release.

However, i'm having the exact same issue with the bill server "json parsing error"

nN7IYm.png


Also, manage to make work Server Monitor DB Tool and CombatNotice (no clue on what it does)

Just edit ServerMonitor_DB.INI > [MANAGER SERVER] > ServerPort and change it to 15002

X88S8Q.png


CombatNotice.INI > [CONTROL SERVER] > ServerPort and change it to 15002

ZFWR9W.png



I think my Broadcast Server is not working properly

fkM7im.png


Also, what server is the "Guard" one? or is related to BroadCast?

1c6ald.png


Cheers
 
Last edited:
Back