Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Atlantica Online
You last visited: Today at 10:33

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



New Year's surprise!

Discussion on New Year's surprise! within the Atlantica Online forum part of the MMORPGs category.

Reply
 
Old 03/18/2020, 03:31   #256
 
HighGamer.'s Avatar
 
elite*gold: 0
Join Date: May 2014
Posts: 1,598
Received Thanks: 714
Quote:
Originally Posted by x123x123x View Post
To get rid of a error in the LogDBManager:

42S01 [Microsoft][ODBC SQL Server Driver][SQL Server]There is already an object named 'tbl_AT_Inca_20200110' in the database.


Modify the rows in the stored procedure [AtlanticaLog].[dbo].[rsp_Log_TotalSet]


EXEC dbo.rasp_MakeLogTable @TableName

To
if OBJECT_ID @TableName) IS NULL AND OBJECTPROPERTY(OBJECT_ID @TableName), 'IsTable') = 0
begin
EXEC dbo.rasp_MakeLogTable @TableName
end

The error is that the manager is trying to create a table that has already been created.
Changes make it a condition that if such a table exists, the table is not recreated.
After that, you will quickly fill the database with logs and increase the size of the database even faster.
This is not the right way to fix it..

If you look inside the dbo.rasp_MakeLogTable function you will see it already has this functionality



CREATE PROCEDURE [dbo].[rasp_MakeLogTable]
@TableName sysname
AS
SET NOCOUNT ON
SET XACT_ABORT ON
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED

DECLARE @ nvarchar(2000)

-- 肺弊抛捞喉捞 绝栏搁 货肺 父电促.
IF NOT EXISTS (SELECT * FROM sysobjects where name = @TableName)
begin
-- ...


---------------------------------------------------------------------------------------------------
Updated my Database Installer with a few fixes I found in all 18 pages of this thread!.
if you want x123x123x can you put the Database Installer links to first page to help people quicker but its up to you though .

It's pre-setup so it will work on fresh servers out of the box.. only need to modify the Master Server's serverinfo.txt with the correct paths in ExecFile and PublicIP's for FrontServer and GameServer

Code:
Comes with accounts
GM accounts
----------------
user: highgamer pw: test
user: test1 pw: test
----------------
Regular accounts
----------------
user: test pw: test
user: test2 pw: test114
user: test5 pw: test114
user: test114 pw: test114
user: testacc pw: asdfqwerty
Install Video

New Update Download link for small DB (Installed size 261 MB, .BAK size: 145 MB) :
Comes with auto installer! [Run Restore Database Backups.bat] file!

MediaFire

Mirror Google Drive:

Mirror Google Drive 2:

----------------------------------------------------------------------------------------------------

Got database down from 50GB to 1.95 GB to 285 MB and now final version 261 MB!

the .bak files some dropped in half their sizes because I backed up twice in previous update.. so now they total 145 MB.

Added a few fixes to 3 Database files.. also updated the .BAK files with new changes, from scanning all 18 pages of New Year's surprise! thread I updated these 3 patches to the database files.

Fixed all database .SQL/.Bak file growths from 5 MB to 1 MB.
---------------------------------
Found a bug when you perform a Backup to .BAK files if a previous .BAK file exists it will not overwrite it but append to it.. so your .BAK file will have 2 backup's of the same database so your .BAK file will grow twice the size for no reason thats why I deleted all .BAK's and recreated them to make them as small as possible.
------------------------------------------
updated
AT_GameDB01.sql
AT_InterDB01.sql

replaced
UPDATE [dbp].[tbl_VillageStructure]
to
UPDATE [dbo].[tbl_VillageStructure]

updated
AT_Community.sql

replaced
UPDATE dbo.tbl_GuildTraning SET StartHourvary = 0 WHERE GuildUnique = @Unique
to
UPDATE dbo.tbl_GuildTraining SET StartHourvary = 0 WHERE GuildUnique = @Unique

Another bug I discovered in AT_InterDB01
---------------------------------
A bunch of procedures in AT_InterDB01 like
rasp_PersonInfoToWeb117_VIP
rasp_PersonInfoToWeb117

require new database's (LinkedServer doesn't help here).
AT_GameDB01,
AT_GameDB02,
AT_GameDB03,
AT_GameDB10,
AT_GameDB11,
AT_GameDB12,
AT_GameDB14,

Also AT_AccountDB uses these databases..

They call procedure
rasp_PersonInfoToWeb

Figured best way to fix this is call AT_GameDB01 instead..
but what I found out was AT_GameDB01's rasp_PersonInfoToWeb requires 2 parameters (ServerId, IDNum),
but this one only sent (IDNum) so it's not AT_GameDB01
I found in AT_InterDB01 it contains rasp_PersonInfoToWeb which requires 1 paramter (IDNum), thats probably the right way to fix it.

I decided not to fix it by changing AT_GameDB's in AT_InterDB01 to AT_InterDB01 instead of AT_GameDB##.
Since this is for updating stats like leaderboards on website. It will never be used.
HighGamer. is offline  
Thanks
3 Users
Old 03/18/2020, 13:03   #257
 
elite*gold: 50
Join Date: Apr 2015
Posts: 781
Received Thanks: 235
Quote:
Originally Posted by HighGamer. View Post
if you want x123x123x can you put the Database Installer links to first page to help people quicker but its up to you though .
Add to first page.
x123x123x is offline  
Old 03/18/2020, 16:57   #258
 
elite*gold: 0
Join Date: Feb 2014
Posts: 12
Received Thanks: 1
Currently use client 3.23.71 sharing here

Can anyone share newer server and client Like 4x
aveyond is offline  
Old 03/18/2020, 18:11   #259
 
HighGamer.'s Avatar
 
elite*gold: 0
Join Date: May 2014
Posts: 1,598
Received Thanks: 714
Quote:
Originally Posted by x123x123x View Post
Add to first page.
Thanks bro, btw all the links you posted in first page are incomplete
HighGamer. is offline  
Old 03/18/2020, 21:32   #260
 
elite*gold: 50
Join Date: Apr 2015
Posts: 781
Received Thanks: 235
Quote:
Originally Posted by HighGamer. View Post
Thanks bro, btw all the links you posted in first page are incomplete
Corrected links
x123x123x is offline  
Thanks
1 User
Old 03/22/2020, 09:17   #261
 
xlw00tlx's Avatar
 
elite*gold: 0
Join Date: Aug 2015
Posts: 149
Received Thanks: 28
we progressed a lot but still we have no 4.0 australia expansion client compatible,maybe someday,thanks for the db fixes to i ll try em later
xlw00tlx is offline  
Old 03/23/2020, 20:46   #262
 
elite*gold: 0
Join Date: Jun 2010
Posts: 30
Received Thanks: 6
Quote:
Originally Posted by x123x123x View Post
All this works. Just caught an outdated feature that remained in the database as garbage. She's misleading.

-----------------------
Client\Server base 3.23.71 (Eng) (4.41Gb)


Default = Client.
Client -> Server:
Rename file Atlantica.exe to Atlantica.client
Rename file Atlantica.exe.srv to Atlantica.exe
Rename folder --ServerInfo to ServerInfo
Open file GameMode.txt and replace 2000 to 100

Folder 'Config' Server rewrite everyday.
Save the original 'Config' folder for the client.


Starting the client will delete the ServerInfo folder! Be attentive.

MasterServer
VersionInfo.txt
add:


ServerInfo.txt
Check the path to the server executable file.


FrontServer
lastopenversion.txt
replace № version


Previously, this version of the client encountered errors.
Mostly linked to monster names and description of items.
This version may work better than previous versions.


Hello,
Everything is good except for gigas, thanks x123x123x and HighGamer.

Btw I upload and run this server, everything goes well. Everyone is welcome and everyone can be GM. Server is USA based.

Just apply ServerIP.ndt attached here.
Attached Files
File Type: zip ServerIP.zip (379 Bytes, 37 views)
leoretro is offline  
Old 03/23/2020, 23:28   #263
 
elite*gold: 0
Join Date: Jan 2020
Posts: 5
Received Thanks: 0
bro do u have discord ?
Quote:
Originally Posted by leoretro View Post
Hello,
Everything is good except for gigas, thanks x123x123x and HighGamer.

Btw I upload and run this server, everything goes well. Everyone is welcome and everyone can be GM. Server is USA based.

Just apply ServerIP.ndt attached here.
tugimenmantap is offline  
Old 03/24/2020, 02:30   #264
 
elite*gold: 0
Join Date: Jul 2011
Posts: 170
Received Thanks: 63
Quote:
Originally Posted by xlw00tlx View Post
we progressed a lot but still we have no 4.0 australia expansion client compatible,maybe someday,thanks for the db fixes to i ll try em later
Australia is going to just be a manual job. It's a lot of work but possible..




magenub is offline  
Thanks
2 Users
Old 03/24/2020, 07:32   #265
 
xlw00tlx's Avatar
 
elite*gold: 0
Join Date: Aug 2015
Posts: 149
Received Thanks: 28
I have the working map of Antilles but i cant tp to Australia,need more patches but they are impossible to get
xlw00tlx is offline  
Old 03/24/2020, 12:32   #266
 
elite*gold: 0
Join Date: Jul 2011
Posts: 170
Received Thanks: 63
Quote:
Originally Posted by xlw00tlx View Post
I have the working map of Antilles but i cant tp to Australia,need more patches but they are impossible to get
I admire your spirit but read my response. You can make it yourself, you just need to fix the map and add the gates.
magenub is offline  
Old 03/26/2020, 15:19   #267
 
xlw00tlx's Avatar
 
elite*gold: 0
Join Date: Aug 2015
Posts: 149
Received Thanks: 28
i reinstalled client now i get version error,my server says 32380 but client is 32347
any way to patch or i revert server version?
xlw00tlx is offline  
Old 03/27/2020, 03:49   #268
 
elite*gold: 0
Join Date: Oct 2017
Posts: 5
Received Thanks: 0

can someone help me ?, does not go from here :C
Jojasaz is offline  
Old 03/27/2020, 05:18   #269
 
xlw00tlx's Avatar
 
elite*gold: 0
Join Date: Aug 2015
Posts: 149
Received Thanks: 28
@ @ you forget to add master level in database
also change in accounts db master ip

id =your account id number
ip =ANY
if not it doesnt let you login

USE [AT_AccountDB]
GO


INSERT INTO [dbo].[tbla_ManagerIP]
([IP])
VALUES
('127.0.0.1')
GO


USE [AT_AccountDB]
GO


INSERT INTO [dbo].[tbla_masterip]
([IP])
VALUES
('127.0.0.1')
GO

USE [AT_AccountDB]
GO

UPDATE [dbo].[tbl_Account]
SET
[MasterLevelExpireTime] = '2900-12-06 21:33:00.000',
[MasterLevelValue] = 120
WHERE ID = 'test1' OR ID = 'test1'
GO
xlw00tlx is offline  
Thanks
1 User
Old 03/27/2020, 06:25   #270
 
elite*gold: 0
Join Date: Oct 2017
Posts: 5
Received Thanks: 0
I can enter

but,but i press "ingresar al servidor"
and it looks like this
Jojasaz is offline  
Reply


Similar Threads Similar Threads
VipSrO Hapy New Year Surprise Start Acc 120 Lvl
01/30/2020 - SRO PServer Advertising - 8 Replies
VipSrO PvP serverimiz adı üstünde PvP serverdir.. Bu amaçla 110 olan başlangıç charları yılbaşı eventi olarak 120 ye yükseltilmiştir.. Bundan böyle yeni oyuncularımız 120 level ve 5m sp + Full nova set ile başlayacaktır.. VipSrO Online Silkroad PvP Server 120 Start + 5m SP + Full Nova Set + Max Level 120 + All Map Open Max Level 120 Client version: v1.404 ServerFiles: Vietnam Silkroad Start 120 Level + 5m SP + nova full set Gift
ScriptVessel (surprise, surprise)
12/31/2006 - Conquer Online 2 - 3 Replies
Hi, Before I purchase ScriptVessel can people please post any feedback on stability, ease of use, features, developer support, etc. Just wandering as it appears to be mixed reception upto now. thx in advance



All times are GMT +2. The time now is 10:33.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.