diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-01 08:14:36 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-01 08:14:36 +0000 |
commit | d90483d3d0d2c334fff01faa0d1ef4899fce700b (patch) | |
tree | aa8fcd6f7d7ff0743bd00c563caf2862f76aacb5 /doc/script_commands.txt | |
parent | 755aefb11175f1d7f145c74ad2b6e084974ff71f (diff) | |
download | hercules-d90483d3d0d2c334fff01faa0d1ef4899fce700b.tar.gz hercules-d90483d3d0d2c334fff01faa0d1ef4899fce700b.tar.bz2 hercules-d90483d3d0d2c334fff01faa0d1ef4899fce700b.tar.xz hercules-d90483d3d0d2c334fff01faa0d1ef4899fce700b.zip |
Fixed certain typos in src/npc/doc files
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11102 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc/script_commands.txt')
-rw-r--r-- | doc/script_commands.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 17ab0b281..f87cba4a0 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -791,7 +791,7 @@ Logical bitwise operators work only on numbers, and they are the following: if( inProgress&2 == 0 ){ // this will set the bit for quest 2 (inProgress has that bit set to 0) set inProgress,inProgress^2; - mes "Quest 2: find a newbie and be helpfull to him for an hour."; + mes "Quest 2: find a newbie and be helpful to him for an hour."; close; } - After spending some time reading info on Xor's, the player finally completes quest 1: |