Cashshop support

Since our neighbors were a little earlier with releasing the cash shop system, here is our version of it.
It supports TXT and SQL databases and even features kafra point support.
Don't forget to run your SQL updates, since this feature needs another log table for your own security. ;)

Follow up to r17240 finalizing pincode feature. Should be stable now - no beta anymore. Fixes bugreport:7505

Fixed guild creation bug bugreport:7502

Implemented the new NPC range tid:81303

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@17242 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
lemongrass3110
2013-04-10 02:09:34 +00:00
parent 5fdada6013
commit 386f0ae36e
31 changed files with 715 additions and 43 deletions

View File

@@ -0,0 +1,7 @@
DROP TABLE IF EXISTS `item_cash_db2`;
CREATE TABLE `item_cash_db2` (
`tab` smallint(6) NOT NULL,
`item_id` smallint(5) unsigned NOT NULL,
`price` mediumint(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`tab`,`item_id`)
) ENGINE=MyISAM;