Permalink
3 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.
Browse files
Initial release of VIP System.
By default system is disabled (src/config/core.h). This follows the iRO implementation VIP System. More information can be found on the iRO Wiki. All settings also have individual configs. Official VIP scripts will be implemented later. Big thanks to lighta and Cydh for support and debugging.
- Loading branch information
Showing
with
945 additions
and 242 deletions.
- +47 −1 conf/battle/player.conf
- +0 −5 conf/char_athena.conf
- +13 −0 conf/groups.conf
- +17 −0 conf/login_athena.conf
- +10 −0 conf/msg_conf/map_msg.conf
- +3 −0 db/packet_db.txt
- +2 −0 sql-files/main.sql
- +134 −60 src/char/char.c
- +3 −2 src/common/mmo.h
- +1 −1 src/common/utils.c
- +1 −1 src/common/utils.h
- +18 −0 src/config/core.h
- +5 −2 src/login/account.h
- +29 −4 src/login/account_sql.c
- +174 −59 src/login/login.c
- +9 −2 src/login/login.h
- +74 −5 src/map/atcommand.c
- +13 −3 src/map/battle.c
- +13 −0 src/map/battle.h
- +47 −3 src/map/chrif.c
- +3 −0 src/map/chrif.h
- +84 −12 src/map/clif.c
- +18 −5 src/map/clif.h
- +19 −4 src/map/mob.c
- +30 −24 src/map/pc.c
- +15 −3 src/map/pc.h
- +73 −0 src/map/script.c
- +22 −18 src/map/skill.c
- +5 −5 src/map/status.c
- +12 −12 src/map/storage.c
- +1 −1 src/map/unit.c
- +3 −1 vcproj-10/char-server_sql.vcxproj
- +11 −1 vcproj-10/char-server_sql.vcxproj.filters
- +3 −1 vcproj-10/login-server_sql.vcxproj
- +11 −1 vcproj-10/login-server_sql.vcxproj.filters
- +3 −1 vcproj-12/char-server_sql.vcxproj
- +7 −1 vcproj-12/char-server_sql.vcxproj.filters
- +3 −1 vcproj-12/login-server_sql.vcxproj
- +7 −1 vcproj-12/login-server_sql.vcxproj.filters
- +2 −2 vcproj-9/login-server_sql.vcproj
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
Oops, something went wrong.
3064821There 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 hope this the right place commit for some bug
compiling when using vip enable make some loss data, vip_time not save to database sql
rathena\src\login\login.c(491): warning C4244: '=' : conversion from 'time_t' to 'uint32', possible loss of data
rathena\src\map\atcommand.c(9205): warning C4244: 'function' : conversion from 'time_t' to 'int', possible loss of
rathena\src\map\script.c(17996): warning C4244: 'function' : conversion from 'time_t' to 'int', possible loss of data
3064821There 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.
update ur files
3064821There 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 had update and its still have warning message and vip_time data cannot store to database