Jump to content
kyeme

Logs for cashshop_db

Recommended Posts

Please add the logs for Cash Shop. Thankssss!

 

http://trac.rathena.org/changeset/17242/rathena

CREATE TABLE `cashlog` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',  `char_id` int(11) NOT NULL DEFAULT '0',  `type` enum('T','V','P','M','S','N','D','C','A','E','I','B','$') NOT NULL DEFAULT 'S',  `cash_type` enum('O','K','C') NOT NULL DEFAULT 'O',  `amount` int(11) NOT NULL DEFAULT '0',  `map` varchar(11) NOT NULL DEFAULT '',  PRIMARY KEY (`id`),  INDEX `type` (`type`)) ENGINE=MyISAM AUTO_INCREMENT=1; 

 

Edited by kyeme

Share this post


Link to post
Share on other sites

I'm think should follow aegis log.

CREATE TABLE [dbo].[CashItemShopLog](	[Index] [int] IDENTITY(1,1) NOT NULL,	[Date] [datetime] NOT NULL,	[Action] [int] NULL,	[ServerID] [int] NULL,	[MapName] [varchar](24) NULL,	[AccountID] [int] NULL,	[AccountName] [varchar](24) NULL,	[CharacterID] [int] NULL,	[CharacterName] [varchar](24) NULL,	[CharacterIPaddr] [varchar](20) NULL,	[PosX] [int] NULL,	[PosY] [int] NULL,	[NpcName] [varchar](51) NULL,	[ItemID] [int] NULL,	[ItemName] [varchar](24) NULL,	[ItemCount] [int] NULL,	[ItemSerial] [bigint] NULL,	[ItemSlot1] [int] NULL,	[ItemSlot2] [int] NULL,	[ItemSlot3] [int] NULL,	[ItemSlot4] [int] NULL,	[ItemRefiningLevel] [int] NULL,	[Cash_Price] [int] NULL,	[Cash_View] [int] NULL,	[Cash_Before] [int] NULL,	[Cash_After] [int] NULL,

 

CREATE TABLE [dbo].[Cash_Reload_Log](	[AutoID] [int] IDENTITY(1,1) NOT NULL,	[game_id] [varchar](20) NOT NULL,	[aid] [int] NOT NULL,	[card_id] [varchar](20) NOT NULL,	[card_point] [int] NOT NULL,	[cash_after] [int] NOT NULL,	[log_date] [datetime] NOT NULL,
Edited by Beret

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.