Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Atlantica Online
You last visited: Today at 04:48

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

Advertisement



[RELEASE] Atlantica Online Server V3.02.11

Discussion on [RELEASE] Atlantica Online Server V3.02.11 within the Atlantica Online forum part of the MMORPGs category.

Reply
 
Old 12/29/2018, 17:16   #901
 
elite*gold: 100
Join Date: Aug 2009
Posts: 245
Received Thanks: 39
EDIT #2

How can I access any account from the DB ? I can only modify passwords for max 200 accounts ( from edit first 200 rows table )

My old character is around No.900 , not accesible from this edit window.
rockerbla is offline  
Old 01/01/2019, 01:43   #902
 
xlw00tlx's Avatar
 
elite*gold: 0
Join Date: Aug 2015
Posts: 149
Received Thanks: 28
Quote:
Originally Posted by x123x123x View Post
Client and server file:
x:\Atlantica\CharInfo\AttackType.ndt
line:
CodeBulletKindRangeReachGridWpnType
ATTACKTYPE_GUN1BK_LASER1AT_RANGE_RANGEAT_REACH_0AT_GRID_COLUMNWPNTYPE_GUN
BulletKind = BK_LASER1


Sword attack cross in the same file:
CodeBulletKindRangeReachGridWpnType
ATTACKTYPE_SWORDNULLAT_RANGE_MELEEAT_REACH_0AT_GRID_CROSSWPNTYPE_SWD
AT_GRID_CROSS = Cross attack

file:
what are those other attack types,and did you check the playeable "npc" that are spawnable for party?
some are recolored base ones and others are weird with special unique names
xlw00tlx is offline  
Old 01/01/2019, 04:20   #903
 
elite*gold: 0
Join Date: Apr 2016
Posts: 22
Received Thanks: 1
some new server where you start creating +10 or +7
Niels05 is offline  
Old 01/01/2019, 10:26   #904
 
elite*gold: 50
Join Date: Apr 2015
Posts: 781
Received Thanks: 235
Quote:
Originally Posted by rockerbla View Post
EDIT #2

How can I access any account from the DB ? I can only modify passwords for max 200 accounts ( from edit first 200 rows table )

My old character is around No.900 , not accesible from this edit window.
Press 'Tools'; Select 'Option'; Select 'SQL Server Object Explorer'; Select 'Table and View Option'; Enter the desired value.


Or use code (update the value in the table):

Code:
USE [AT_AccountDB]
GO

UPDATE [dbo].[tbl_Account]
SET [Password] = 'Password'
WHERE [ID] = 'login_account'
GO
where
'login_account' = game login;
'Password' = MD5 hash password.



Quote:
Originally Posted by Niels05 View Post
some new server where you start creating +10 or +7
You can modify the stored procedure [dbo].[rsp_PersonInfoCreate] Database [AT_GameDB01].

In the procedure code, add 1 variable:
Quote:
, @SendDate int
Declare it in the procedure code:

Quote:
...
DECLARE
@ret int
, @ID nvarchar(64)
, @MakeNumber int
, @Gender tinyint
, @ErrCode int
, @Count int
, @ClassMateUnique int
, @ServerCode nvarchar(35)
, @LastCreateDeleteTime datetime
, @MakeNum smallint
, @DatePerson int
, @DateBank int
, @Flag int
, @IP nvarchar(20)
, @MasterLevel int
, @ChannelIndex tinyint
, @SendDate int
...
Add the following code to the end of the procedure code:

Quote:
SELECT @SendDate = [Datevary] FROM [dbo].[tbl_GameTime]
exec [AT_GameDB01].[dbo].[rsp_PostSend] 1, 1, @PersonID, NULL, 0, 0, 0, 501, 1, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, N'Gift!', @SendDate, 0, 1
This code calls for the execution of the procedure that will send a game mail to the player item.
In line figure 501 is an ID Item. (501 - "Officer's Shotgun")
Follows 1 - it is quantity, for item which can be piled.
Further in line figure 15 is a rank of a item (rank 15 = enchant +10; rank 5 = enchant +0)


If it is necessary to send several items, then we cause necessary number of times the procedure of sending a parcel. Example, 2 ring +10 "Lea's Piercing Signet":
Quote:
SELECT @SendDate = [Datevary] FROM [dbo].[tbl_GameTime]
exec [AT_GameDB01].[dbo].[rsp_PostSend] 1, 1, @PersonID, NULL, 0, 0, 0, 7781, 1, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, N'Gift!', @SendDate, 0, 1
exec [AT_GameDB01].[dbo].[rsp_PostSend] 1, 1, @PersonID, NULL, 0, 0, 0, 7781, 1, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, N'Gift!', @SendDate, 0, 1
Save changes in the stored procedure code. Now any character created on the server will be automatically sent to the game mail items that you specified in the stored procedure.
x123x123x is offline  
Old 01/02/2019, 07:10   #905
 
elite*gold: 0
Join Date: Jan 2019
Posts: 8
Received Thanks: 0
Excuse me, I have some problems with the Item ... As in the picture ... after I tweaked Sql so I made an error in the AT_GameDB01 section ... Stored Procedures ... I forgot what I changed ... please help me it's too far to play atlantica offline T_T ... Thank you in advance for the masters here


mirdad is offline  
Old 01/02/2019, 11:10   #906
 
elite*gold: 100
Join Date: Aug 2009
Posts: 245
Received Thanks: 39
I think there was a post about this but I can't really find it.

How do I make FL/CL open with only me on server ?
rockerbla is offline  
Old 01/02/2019, 11:46   #907
 
elite*gold: 50
Join Date: Apr 2015
Posts: 781
Received Thanks: 235
Perhaps someone found a solution and write what to change in the settings FL\CL.
I have changed the conditions of quests, so that there were never requests for the League.
x123x123x is offline  
Old 01/02/2019, 19:47   #908
 
elite*gold: 100
Join Date: Aug 2009
Posts: 245
Received Thanks: 39
Quote:
Originally Posted by x123x123x View Post
Perhaps someone found a solution and write what to change in the settings FL\CL.
I have changed the conditions of quests, so that there were never requests for the League.
Can you help me with that please ?
rockerbla is offline  
Old 01/03/2019, 00:10   #909
 
elite*gold: 50
Join Date: Apr 2015
Posts: 781
Received Thanks: 235
Ok. As an example, will a quest to gain 100 LVL (the main character).
Quest in the file: ..\Atlantica\NewQuest\Sub36_1\Quest_Sub36_1.ndt
Part of the quest where you send 2 times to win the tournament (FL\CL does not matter what):
Quote:
...
<Clear Condition>
ClearCondition Target Count MapIndex Postion_X Postion_Y Radius MapPos
QUEST_CLEAR_COND_TMPASS 0 2 -1 0 0 5
0 0 0 0 0 0 0
...
TMPASS = tournament match pass, 2 = Count = 2 times.

As a table:
ClearConditionTargetCountMapIndexPostion_XPostion_YRadiusMapPos
QUEST_CLEAR_COND_TMPASS02-1005 
0000000 

Suppose we do not want to do this or CL\FL does not work.
So you need in the quest to change the conditions for its completion.
For example, instead of CL\FL open 1 time map of the world.
Change the condition to:
Quote:
...
<Clear Condition>
ClearCondition Target Count MapIndex Postion_X Postion_Y Radius MapPos
QUEST_CLEAR_COND_OPENWORLDMAP 0 1 -1 0 0 5
0 0 0 0 0 0 0
...
OPENWORLDMAP - open map of the world, 1 = Count = 1 time.

As a table:
ClearConditionTargetCountMapIndexPostion_XPostion_YRadiusMapPos
QUEST_CLEAR_COND_OPENWORLDMAP01-1005 
0000000 

The changes must be the same on the server and client!
x123x123x is offline  
Old 01/05/2019, 12:16   #910
 
elite*gold: 0
Join Date: Dec 2018
Posts: 22
Received Thanks: 0
Ao client file is missing please lay out
nightmander is offline  
Old 01/05/2019, 13:11   #911
 
elite*gold: 100
Join Date: Aug 2009
Posts: 245
Received Thanks: 39
I have a little issue with my client.Whenever I try to upgrade a merc it crashes...Why that's happening ?
rockerbla is offline  
Old 01/05/2019, 13:59   #912
 
elite*gold: 50
Join Date: Apr 2015
Posts: 781
Received Thanks: 235
Quote:
Originally Posted by nightmander View Post
Ao client file is missing please lay out

Downloaded, connects to the server (English client v3.02.12).

Quote:
Originally Posted by rockerbla View Post
I have a little issue with my client.Whenever I try to upgrade a merc it crashes...Why that's happening ?
I have never had, something difficult to imply.
x123x123x is offline  
Thanks
1 User
Old 01/05/2019, 14:13   #913
 
elite*gold: 0
Join Date: Dec 2018
Posts: 22
Received Thanks: 0
Thank you
nightmander is offline  
Old 01/08/2019, 00:06   #914
 
nephren's Avatar
 
elite*gold: 92
Join Date: Aug 2009
Posts: 731
Received Thanks: 971
Quote:
Originally Posted by sarint01 View Post
Evior Want to continue to improve
Im not sure what you mean. Unfortunately, I do not have my files anymore. I wanted to share, previous but I forgot to check back, back then.

However, if there is any question I can help, just feel free to ask.
nephren is offline  
Old 01/17/2019, 01:58   #915
 
elite*gold: 0
Join Date: Jul 2011
Posts: 170
Received Thanks: 63
Quote:
Originally Posted by x123x123x View Post
Ok. As an example, will a quest to gain 100 LVL (the main character).
Quest in the file: ..\Atlantica\NewQuest\Sub36_1\Quest_Sub36_1.ndt
Part of the quest where you send 2 times to win the tournament (FL\CL does not matter what):

TMPASS = tournament match pass, 2 = Count = 2 times.

As a table:
ClearConditionTargetCountMapIndexPostion_XPostion_YRadiusMapPos
QUEST_CLEAR_COND_TMPASS02-1005 
0000000 

Suppose we do not want to do this or CL\FL does not work.
So you need in the quest to change the conditions for its completion.
For example, instead of CL\FL open 1 time map of the world.
Change the condition to:

OPENWORLDMAP - open map of the world, 1 = Count = 1 time.

As a table:
ClearConditionTargetCountMapIndexPostion_XPostion_YRadiusMapPos
QUEST_CLEAR_COND_OPENWORLDMAP01-1005 
0000000 

The changes must be the same on the server and client!
You can also just set the count to 0 instead of changing the objective type and the quest insta completes
magenub is offline  
Reply




All times are GMT +2. The time now is 04:48.


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.