diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-10 16:03:07 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-10 16:03:07 +0000 |
commit | 76ed57676c0ed81a433f45c4350b5b5fcba11a7d (patch) | |
tree | be354f9ea7671184d5da1a0bafa0e910aa277f52 /doc/script_commands.txt | |
parent | a43e9fd3ea3a8d9d987ded2cfce535d804c04d76 (diff) | |
download | hercules-76ed57676c0ed81a433f45c4350b5b5fcba11a7d.tar.gz hercules-76ed57676c0ed81a433f45c4350b5b5fcba11a7d.tar.bz2 hercules-76ed57676c0ed81a433f45c4350b5b5fcba11a7d.tar.xz hercules-76ed57676c0ed81a433f45c4350b5b5fcba11a7d.zip |
* Added documentation for new mounts (doc\script_commands.txt)
* Minor fix in "eA Job System" documentation for third classes (doc\ea_job_system.txt)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16262 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc/script_commands.txt')
-rw-r--r-- | doc/script_commands.txt | 44 |
1 files changed, 39 insertions, 5 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index c672559c3..a130a68cd 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -3450,19 +3450,53 @@ and 0 if they don't. *checkriding() If <flag> is 0 this command will remove the mount from the character. -Otherwise it give the invoking character a PecoPeco (if they are a Knight -series class) or a GrandPeco (if they are a Crusader series class). Unlike -'setfalcon' and 'setcart' this will not work at all if they aren't of a class -which can ride. +Otherwise it gives the invoking character a PecoPeco (if they are a Knight +series class), a GrandPeco (if they are a Crusader series class), or +a Gryphon (if they are a Royal Guard). Unlike 'setfalcon' and 'setcart' +this will not work at all if they aren't of a class which can ride. Note: the character needs to have the skill KN_RIDING to gain a mount The accompanying function will return 1 if the invoking character is riding a -bird and 0 if they don't. +bird and 0 if they aren't. if (checkriding()) mes "PLEASE leave your bird outside! No riding birds on the floor here!"; --------------------------------------- +*setdragon {<flag>}; + +If <flag> is 0 this command will remove the mount from the character. +Otherwise it gives the invoking character a dragon mount, which is +checked using checkriding(). +Note: the character needs to have the skill KN_RIDING to gain a mount + +The accompanying function will return 1 if the invoking character is riding a +dragon and 0 if they aren't. + +--------------------------------------- + +*setmadogear {<flag>}; +*checkmadogear() + +If <flag> is 0 this command will remove the mount from the character. +Otherwise it gives the invoking character a Mado (if they are a Mechanic). + +The accompanying function will return 1 if the invoking character has a +Mado and 0 if they don't. + +--------------------------------------- + +*setmounting; +*ismounting() + +Gives the invoking character a cash mount. Unlike the other mount +commands, it cannot be used to remove a cash mount. + +The accompanying function will return 1 if the invoking character has a +mount and 0 if they don't. + +--------------------------------------- + *checkvending({"<player name>"}) *checkchatting({"<Player Name>"}) |