summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-29 05:44:26 +0000
committerL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-29 05:44:26 +0000
commit5cf415fe79143e46f95369df131b3ece5d0ead8e (patch)
tree342473deeb4e5ba984400ca7c84ba626836eccad
parentb4446fe25bb94d21ec0eec391e755ae9c32cd37d (diff)
downloadhercules-5cf415fe79143e46f95369df131b3ece5d0ead8e.tar.gz
hercules-5cf415fe79143e46f95369df131b3ece5d0ead8e.tar.bz2
hercules-5cf415fe79143e46f95369df131b3ece5d0ead8e.tar.xz
hercules-5cf415fe79143e46f95369df131b3ece5d0ead8e.zip
Added some information and documentation for cash shop.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12268 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt2
-rw-r--r--conf/Changelog.txt2
-rw-r--r--conf/charhelp.txt2
-rw-r--r--conf/help.txt2
-rw-r--r--doc/script_commands.txt11
5 files changed, 18 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index dbe933dbd..cf09ef960 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -3,6 +3,8 @@ Date Added
AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
+2008/02/29
+ * Rev. 12268 Added documentation for Cash shop NPC heading. [L0ne_W0lf]
2008/02/28
* Added cash shop support [Zephyrus]
2008/02/27
diff --git a/conf/Changelog.txt b/conf/Changelog.txt
index 17e80c4e1..cd19691f8 100644
--- a/conf/Changelog.txt
+++ b/conf/Changelog.txt
@@ -1,6 +1,8 @@
Date Added
2008/02/27
+ * Rev. 12268 Added information for cash related @ and # commands. [L0ne_W0lf]
+2008/02/27
* Disabled idle_no_autoloot setting (bugreport:1051)
2008/02/14
* Removed atcommand @whozeny [ultramage]
diff --git a/conf/charhelp.txt b/conf/charhelp.txt
index c64a0c330..fe877b5e3 100644
--- a/conf/charhelp.txt
+++ b/conf/charhelp.txt
@@ -11,6 +11,8 @@
60:#jlvl <#> <nickname> - Change a characters job level.
60:#job/#jobchange <job ID> <char name> - Changes target characters job.
60:#zeny <amount> <name> - Give/take a players Zeny
+ 60:#cash <amount> <name> - Give/take a player cash points
+ 60:#points <amount> <name> - Give/take a player Kafra points
60:#stpoint <amount> <name> - Give/take a players stat points
60:#skpoint <amount> <name> - give/take a players skill points
60:#skreset <charname> - Reset skills of a character.
diff --git a/conf/help.txt b/conf/help.txt
index 2fe7726ef..0e1f65427 100644
--- a/conf/help.txt
+++ b/conf/help.txt
@@ -131,6 +131,8 @@
60:@stpoint <number of points> - Gives you the desired number of stat points.
60:@skpoint <number of points> - Gives you the desired number of skill points.
60:@zeny <amount> - Gives you desired amount of Zeny.
+ 60:@cash <amount> - Gives you the specified amount of cash points.
+ 60:@points <amount> - Gives you the specified amount of Kafra Points.
60:@str,@agi,@vit,@int,@dex,@luk <amount> - Adds desired amount to any stat. For example "@str 10" raises your str by 10
60:@statall/@statsall/@allstats/@allstat [value] - Adds value in all stats (maximum if no value).
60: @addwarp <map name> <x coord> <y coord>
diff --git a/doc/script_commands.txt b/doc/script_commands.txt
index bc5bbd1e3..4783a1d20 100644
--- a/doc/script_commands.txt
+++ b/doc/script_commands.txt
@@ -4,7 +4,7 @@
//= A reference manual for the eAthena scripting language.
//= Commands are sorted depending on their functionality.
//===== Version ===========================================
-//= 3.14.20080211
+//= 3.16.20080229
//=========================================================
//= 1.0 - First release, filled will as much info as I could
//= remember or figure out, most likely there are errors,
@@ -101,6 +101,8 @@
//= Updated 'input' (new arguments and return value). [FlavioJS]
//= 3.15.20080227
//= Updated 'checkweight' description slightly. [L0ne_W0lf]
+//= 3.16.20080229
+//= Updated 'Shop' NPC type description to include cashshop. [L0ne_W0lf]
//=========================================================
This document is a reference manual for all the scripting commands and functions
@@ -383,6 +385,13 @@ to -1, the 'buy price' given in the item database will be used. Otherwise, the
price you gave will be used for this item, which is how you create differing
prices for items in different shops.
+Since trunk r12264 you can alernatively use "cashshop" in place of "shop"
+so use the Cash Shop interface, allowing you to buy items with special points
+(currently stored as account vars in global_reg #CASHPOINTSand and #FREEPOINTS.)
+This type of shop will not allow you to sell items at it, you may only
+purchase items here. The layout used to define sale items still count, and
+"<price>" referes to how many points will be spent purchasing the them.
+
** Define a function object
function%TAB%script%TAB%<function name>%TAB%{<code>}