summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorLance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-01 05:48:06 +0000
committerLance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-01 05:48:06 +0000
commita76908de39c38dcb65afb6d1ab628bc414abd483 (patch)
treebb1cd4e78c3a5f956dd974bd01b02b5c0c8e92e6 /doc
parentb8b2214648b6408c15cd9018a05a6dc63de45535 (diff)
downloadhercules-a76908de39c38dcb65afb6d1ab628bc414abd483.tar.gz
hercules-a76908de39c38dcb65afb6d1ab628bc414abd483.tar.bz2
hercules-a76908de39c38dcb65afb6d1ab628bc414abd483.tar.xz
hercules-a76908de39c38dcb65afb6d1ab628bc414abd483.zip
* Optimized fake npc system. Added npc_checknear back to npc_buysellsel.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6426 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc')
-rw-r--r--doc/Item Inputs and Menus.txt25
1 files changed, 0 insertions, 25 deletions
diff --git a/doc/Item Inputs and Menus.txt b/doc/Item Inputs and Menus.txt
deleted file mode 100644
index a715964a6..000000000
--- a/doc/Item Inputs and Menus.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-============================================================================================================
-Item Menus and Inputs
-============================================================================================================
-
-How to implement -
-1. Create an NPC with the desired script as an event.
-2. Add 'doevent "npcname::eventname";' to your item script.
-
-Example:
-
-- script validation_sys -1,{
-OnValidate:
- mes "Please type: I am validated.";
- input @validate$;
- next;
- if(@validate$ == "I am validated"){
- mes "You are validated";
- }else{
- mes "You are not";
- }
- close;
-}
-
-501,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ doevent "validation_sys::OnValidate"; },{},{}
-