summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authoreuphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-11-23 03:22:28 +0000
committereuphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-11-23 03:22:28 +0000
commitbd4e344a476439af984995540cb3d037752981c8 (patch)
tree4cd55defb83cc7f8ef1efeb7485f8b7db45e2cff /doc
parent252d548e533389f18b80c8a35976eca893791355 (diff)
downloadhercules-bd4e344a476439af984995540cb3d037752981c8.tar.gz
hercules-bd4e344a476439af984995540cb3d037752981c8.tar.bz2
hercules-bd4e344a476439af984995540cb3d037752981c8.tar.xz
hercules-bd4e344a476439af984995540cb3d037752981c8.zip
* Added Guillotine Cross job quest, again thanks to Muad_Dib! (bugreport:5834)
* Follow-up r16941: added documentation. * Updated WOE Controller script to v1.4, which modifies LoadEvent mapflag settings for easier cross-compatibility and standardizes script format. * Minor tweaks here and there. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16947 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc')
-rw-r--r--doc/sample/npc_test_checkweight.txt (renamed from doc/sample/npc_test_chekweight.txt)6
-rw-r--r--doc/script_commands.txt32
2 files changed, 20 insertions, 18 deletions
diff --git a/doc/sample/npc_test_chekweight.txt b/doc/sample/npc_test_checkweight.txt
index 1f4d1d2d8..195ff856e 100644
--- a/doc/sample/npc_test_chekweight.txt
+++ b/doc/sample/npc_test_checkweight.txt
@@ -1,14 +1,14 @@
//===== rAthena Script =======================================
-//= Sample: ChekWeight
+//= Sample: CheckWeight
//===== By: ==================================================
//= rAthena Dev Team
//===== Current Version: =====================================
//= 20121113
//===== Description: =========================================
-//= Demonstrates ChekWeight commands.
+//= Demonstrates 'checkweight' command.
//============================================================
-new_1-1,56,106,5 script ChkSpace 763,{
+prontera,161,181,6 script ChkSpace 763,{
function ChkResult;
function FinalReport;
diff --git a/doc/script_commands.txt b/doc/script_commands.txt
index 7d7124f34..2a7d4329b 100644
--- a/doc/script_commands.txt
+++ b/doc/script_commands.txt
@@ -3316,39 +3316,41 @@ aren't. You can also pass the char_id to check for both account and char id.
---------------------------------------
-*checkweight(<item id>,<amount>)
-*checkweight("<item name>",<amount>)
+*checkweight(<item id>,<amount>{,<item id>,<amount>,<item id>,<amount>,...});
+*checkweight("<item name>",<amount>{,"<item name>",<amount>,"<item name>",<amount>,...});
+*checkweight2(<id_array>,<amount_array>);
-This function will compute and return 1 if the total weight of a specified
+These functions will compute and return 1 if the total weight of the specified
number of specific items does not exceed the invoking character's carrying
capacity, and 0 otherwise. It is important to see if a player can carry the
items you expect to give them, failing to do that may open your script up to
abuse or create some very unfair errors.
-This function, in addition to checking to see if the player is capable of
-holding a set amount of items, also ensures the player has room in their
+The second function will check an array of items and amounts, and also
+returns 1 on success and 0 on failure.
+
+The functions, in addition to checking to see if the player is capable of
+holding a set amount of items, also ensure the player has room in their
inventory for the item(s) they will be receiving.
Like 'getitem', this function will also accept an 'english name' from the
database as an argument.
+Example 1:
+
if (checkweight(512,10)) {
getitem 512,10;
} else {
- mes "Sorry you cannot hold this amount of apples";
+ mes "Sorry, you cannot hold this amount of apples!";
}
- close;
-Or to put this another way:
+Example 2:
- if (checkweight("Apple",10) == 0) {
- mes "Sorry you cannot hold this amount of apples";
- } else {
- getitem 512,10;
+ setarray .@item[0],512,513,514;
+ setarray .@amount[0],10,5,5;
+ if (!checkweight(.@item,.@amount)) {
+ mes "Sorry, you cannot hold this amount of fruit!";
}
- close;
-
-Both examples have the same effect.
---------------------------------------