diff options
author | Haru <haru@dotalux.com> | 2017-08-08 16:48:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-08 16:48:12 +0200 |
commit | 89ccf19c2780f80aa475c07fcea5750519266807 (patch) | |
tree | deb8adacb1904b4c86e94e3ab8ce29d4ce862be7 /doc/sample | |
parent | e1e27fd07bfa1a90eeb2d4bfff32c70258cc07df (diff) | |
parent | 544da439e81ff78ec102b754e16b6cc0a28a6d0a (diff) | |
download | hercules-89ccf19c2780f80aa475c07fcea5750519266807.tar.gz hercules-89ccf19c2780f80aa475c07fcea5750519266807.tar.bz2 hercules-89ccf19c2780f80aa475c07fcea5750519266807.tar.xz hercules-89ccf19c2780f80aa475c07fcea5750519266807.zip |
Merge pull request #1686 from guilherme-gm/rodex_
Implementation of RoDEX
Diffstat (limited to 'doc/sample')
-rw-r--r-- | doc/sample/npc_rodex.txt | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/doc/sample/npc_rodex.txt b/doc/sample/npc_rodex.txt new file mode 100644 index 000000000..a808a1aa9 --- /dev/null +++ b/doc/sample/npc_rodex.txt @@ -0,0 +1,39 @@ +//===== Hercules Script ======================================= +//= Sample: RoDEX Send Mail +//===== By: ================================================== +//= KirieZ +//===== Current Version: ===================================== +//= 20170322 +//===== Description: ========================================= +//= Demonstrates sending mails through RoDEX. +//============================================================ + +prontera,150,150,4 script Rodex Mail 1_M_01,{ + // Sends a messsage to attached player from "Rodex Test", with title "Rodex Test1", + // with message "Hello World, How are You?", 1000 Zenies and 5 Red Potions attached + rodex_sendmail( + getcharid(CHAR_ID_CHAR), "Rodex Test", "Rodex Test1", "Hello World, How are You?", + 1000, + Red_Potion, 5 + ); + + // Sends a messsage to attached player "Account Box" from "Rodex Test", with title "Rodex Test3", + // with message "Hello World, How are You?", 1000 Zenies and 5 Red Potions attached + rodex_sendmail_acc( + getcharid(CHAR_ID_CHAR), "Rodex Test", "Rodex Test3", "Hello World, How are You?", + 1000, + Red_Potion, 5 + ); + + // Sends a messsage to attached player "Account Box" from "Rodex Test", with title "Rodex Test6", + // with message "Hello World, How are You?", 1000 Zenies, 5 Red Potions and + // 1 +10 Knife[3] with 3 Poring Cards (Broken) + rodex_sendmail2( + getcharid(CHAR_ID_CHAR), "Rodex Test", "Rodex Test6", "Hello World, How are You?", + 1000, + Red_Potion, 5, 0, 0, 0, 0, 0, 0, + Knife, 1, 10, 1, Poring_Card, Poring_Card, Poring_Card, 0 + ); + + end; +} |