Permalink
4 comments
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
647 additions
and 100 deletions.
- +5 −1 conf/battle/feature.conf
- +1 −0 conf/inter_athena.conf
- +1 −0 conf/log_athena.conf
- +2 −1 conf/map_athena.conf
- +4 −0 conf/msg_conf/map_msg.conf
- +42 −0 db/packet_db.txt
- +1 −0 sql-files/main.sql
- +1 −0 sql-files/upgrades/upgrade_svn17600.sql
- +93 −4 src/char/char.c
- +3 −1 src/common/mmo.h
- +1 −0 src/login/account.h
- +37 −34 src/login/account_sql.c
- +35 −4 src/login/login.c
- +8 −0 src/map/battle.c
- +1 −0 src/map/battle.h
- +1 −0 src/map/channel.c
- +88 −42 src/map/chrif.c
- +3 −0 src/map/chrif.h
- +238 −9 src/map/clif.c
- +34 −3 src/map/clif.h
- +1 −0 src/map/log.c
- +1 −0 src/map/log.h
- +42 −0 src/map/pc.c
- +4 −0 src/map/pc.h
- +0 −1 src/map/status.c
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -0,0 +1 @@ | ||
| ALTER TABLE `login` ADD `bank_vault` BIGINT( 64 ) NOT NULL DEFAULT '0'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
1290826There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok sorry about the log message, wasn,t exactly what I expecting.
Thx to Hercule and akinari for implementing this.
note:
-Fix default name for skillcooldown_db
-Test multiclient support for outgoing packet
-Add few missing documentation of used packet in chrif
1290826There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bank_vault in the login table? O.o
What happens if multiple character servers connect to the same login server? (I've seen that scenario pretty often with testservers sharing the same login as the main server, or high+lowrate servers sharing the same login)
1290826There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ye but that arguments could be made in other way around. bank_vault in chartable; what if they wanted to share ?
Fact is that we already have some shared variable handle in login. group_id, all #var, charactere_slots. So looking at this I think it's more coherent to put them in logging. or you could move all those into account_table wich is readen by char cause we could very well say that testserv need a different group_id then mainserv, or even number of char allowed to create (charslot).
In short on char_table it could be ok if you want separation but you already have some var in that case so it's more coherent like this.
1290826There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I miss this conversation.
but the problem is not that @lighta you out bank vault pure in login table that handled directly by login-server
you have many server with various rates and custom that different each server. you make money on high-rate (that easy to get money) then throw it on Bank, and withdraw from low-rate server (I hardly find money at this server!). it's ruining server economy.
group_id, everyone know and no issue with this and character_slots server owner know how to use this, and doesn't bother at all for multiple char-servers.
uhh what, #var login-server? Did u meant ##var?