diff options
author | xazax-hun <xazax-hun@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-25 18:49:58 +0000 |
---|---|---|
committer | xazax-hun <xazax-hun@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-25 18:49:58 +0000 |
commit | 10921d4dbfbe634087c9711971455b7d9281ed31 (patch) | |
tree | d1474bb6742a9956987dbbe0aa9c46668d8cae4e /doc | |
parent | cb5a1ec7d39927184ce79e05f9c453603cb47883 (diff) | |
download | hercules-10921d4dbfbe634087c9711971455b7d9281ed31.tar.gz hercules-10921d4dbfbe634087c9711971455b7d9281ed31.tar.bz2 hercules-10921d4dbfbe634087c9711971455b7d9281ed31.tar.xz hercules-10921d4dbfbe634087c9711971455b7d9281ed31.zip |
Fixed setting and removing restricted mapflags. bugreport:4119
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15273 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc')
-rw-r--r-- | doc/script_commands.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 7029b9b72..cfe409d99 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -1,4 +1,4 @@ -//===== Athena Doc ======================================== +//===== Athena Doc ======================================== //= rAthena Script Commands //===== Description ======================================= //= A reference manual for the rAthena scripting language. @@ -5918,7 +5918,7 @@ kick the reconnecting players off to the alternate map given to the coordinates --------------------------------------- -*setmapflag "<map name>",<flag>; +*setmapflag "<map name>",<flag>{,<zone>}; This command marks a specified map with a map flag given. Map flags alter the behavior of the map, you can see the list of the available ones in @@ -5933,13 +5933,17 @@ skills or open up trade deals (mf_notrade, mf_novending, mf_noskill, mf_noicewal current weather effects (mf_snow, mf_fog, mf_sakura, mf_leaves, mf_rain, mf_clouds, mf_fireworks) and whether night will be in effect on this map (mf_nightenabled). +The zone optional parameter is used to set the zone for restricted mapflags. + --------------------------------------- -*removemapflag "<map name>",<flag>; +*removemapflag "<map name>",<flag>{,<zone>}; This command removes a mapflag from a specified map. See 'setmapflag' for a list of mapflags. +The zone optional parameter is used to remove the zone from restricted mapflags. + --------------------------------------- *getmapflag("<map name>",<flag>) |