No description
Find a file
Image a1f8fb9ed2 Deposit tab in the house supports deposits, track deposit history and escrow balance
In support of issue 
- /house_deposit [??] [coin_amount] [status_amount] added
update query:
update commands set handler=518 where command='house_deposit';

- Escrow balance is tracked on the house
- Deposits are tracked for total and last deposit
- House upkeep payment now takes from escrow first
- character_house_deposits table added

CREATE TABLE `character_house_deposits` (
  `timestamp` int(10) unsigned NOT NULL DEFAULT 0,
  `house_id` int(10) unsigned NOT NULL DEFAULT 0,
  `instance_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(64) not null default '',
  `amount` bigint unsigned NOT NULL DEFAULT 0,
  `last_amount` bigint unsigned NOT NULL DEFAULT 0,
  `status` int(10) unsigned NOT NULL DEFAULT 0,
  `last_status` int(10) unsigned NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
2020-06-19 08:45:12 -04:00
Content @xonos icon extraction 2020-03-12 17:50:24 -04:00
DB/updates Deposit tab in the house supports deposits, track deposit history and escrow balance 2020-06-19 08:45:12 -04:00
EQ2 Deposit tab in the house supports deposits, track deposit history and escrow balance 2020-06-19 08:45:12 -04:00
installer Updated to V0.5.2 2020-06-05 01:29:54 +00:00
server Updates to VerminSnye 2020-06-19 09:00:42 +00:00
.gitignore Update .gitignore 2020-04-16 10:08:31 -04:00
LICENSE.md Base 2020-02-28 09:17:24 -05:00
README.md Update 'README.md' 2020-06-08 20:41:56 +00:00

EQ2Emulator Project - ALPHA BUILD

Visit https://www.eq2emu.com for more project details, wiki and server installation instructions.

Building/Compiling

Linux Compile Instructions: On our Wiki

Authors

Project team site at EQ2EMu and ZekLabs

License

This project is licensed under the GNU General Public License - see the LICENSE.md file for details