summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-12-12 06:24:02 +0000
committerbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-12-12 06:24:02 +0000
commit143aea2beeb5bf7485d05a62d31854009b09a30b (patch)
tree5832b81bf97851f2fa690a26dcef3ed68fe492a3
parent5188729a691d15d3d3128e84b2daba274d1788af (diff)
downloadhercules-143aea2beeb5bf7485d05a62d31854009b09a30b.tar.gz
hercules-143aea2beeb5bf7485d05a62d31854009b09a30b.tar.bz2
hercules-143aea2beeb5bf7485d05a62d31854009b09a30b.tar.xz
hercules-143aea2beeb5bf7485d05a62d31854009b09a30b.zip
- Added $Revision$ and $LastChangedDate$ keyword properties to README.txt
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@17019 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--README.txt10
-rw-r--r--conf/login_athena.conf2
-rw-r--r--doc/script_commands.txt17
3 files changed, 14 insertions, 15 deletions
diff --git a/README.txt b/README.txt
index 37c8305c3..f82c1b942 100644
--- a/README.txt
+++ b/README.txt
@@ -1,10 +1,12 @@
-//============================================================
+//============================================================
//= rAthena Readme File
-//===== By: ==================================================
+//===== By: ==================================================
//= rAthena Dev Team
//===== Current Version: =====================================
-//= 20121128
-//===== Description: =========================================
+//= $Revision$
+//===== Last Updated: ========================================
+//= $LastChangedDate$
+//===== Description: =========================================
//= Basic information and installation guide with links to
//= various forum posts and Wiki articles.
//============================================================
diff --git a/conf/login_athena.conf b/conf/login_athena.conf
index 11e1108f3..d50935bd1 100644
--- a/conf/login_athena.conf
+++ b/conf/login_athena.conf
@@ -119,7 +119,7 @@ use_dnsbl: no
dnsbl_servers: bl.blocklist.de, socks.dnsbl.sorbs.net
// Here are some free DNS Blacklist Services: http://en.wikipedia.org/wiki/Comparison_of_DNS_blacklists
//==============================================================================
-// dnsbl_servers Description
+// dnsbl_servers Description
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// bl.blocklist.de IP-Addresses who attack other servers/honeypots over SSH, FTP, IMAP, etc.
// ircbl.ahbl.org AHBL (open proxies, compromised machines, comment spammers)
diff --git a/doc/script_commands.txt b/doc/script_commands.txt
index 0362e5a87..50c364de3 100644
--- a/doc/script_commands.txt
+++ b/doc/script_commands.txt
@@ -6572,16 +6572,15 @@ The commands can also run without an attached rid.
---------------------------------------
*bindatcmd "command","<NPC object name>::<event label>"{,<atcommand level>,<charcommand level>};
-*bindatcmd("command","<NPC object name>::<event label>"{,<atcommand level>,<charcommand level>});
This command will bind a NPC event label to an atcommand. Upon execution of the
atcommand, the user will invoke the NPC event label. Each atcommand is only allowed
one binding. If you rebind, it will override the original binding.
-The following variables are created upon execution:
- .@atcmd_command$: The atcmd used.
- .@atcmd_numparameters: The number of parameters defined.
- .@atcmd_parameters$[]: Array containing the given parameters, starting from an index of 0.
+The following variables are set upon execution:
+ .@atcmd_command$ = The name of the @command used.
+ .@atcmd_parameters$[] = Array containing the given parameters, starting from an index of 0.
+ .@atcmd_numparameters = The number of parameters defined.
Example:
@@ -6589,7 +6588,7 @@ When a user types the command "@test", an angel effect will be shown.
- script atcmd_example -1,{
OnInit:
- bindatcmd("test","atcmd_example::OnAtcommand");
+ bindatcmd "test",strnpcinfo(3)+"::OnAtcommand";
end;
OnAtcommand:
specialeffect2 338;
@@ -6599,17 +6598,15 @@ OnAtcommand:
---------------------------------------
*unbindatcmd "command";
-*unbindatcmd("command");
This command will unbind a NPC event label from an atcommand.
---------------------------------------
*useatcmd "command";
-*useatcmd("command");
-This command will execute an atcommand binding on the attached RID from a script.
-Variables will not be created when invoking scripts with this command.
+This command will execute an atcommand binding on the attached RID from a script.
+The three .@atcmd_***** variables will NOT be set when invoking scripts-atcommands this way.
---------------------------------------