summaryrefslogtreecommitdiff
path: root/doc/sample/npc_test_func.txt
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-05 11:34:32 +0300
committergumi <git@gumi.ca>2020-07-29 15:02:44 +0000
commit9d59f82368082fb1cf3aec225c483f9e32b4c075 (patch)
tree0200835722c95b4c789ed597cea40d293a650bd3 /doc/sample/npc_test_func.txt
parente8ccbb249b5dcf3aeaa4ba440b20b1c6c1feeaa0 (diff)
downloadhercules-9d59f82368082fb1cf3aec225c483f9e32b4c075.tar.gz
hercules-9d59f82368082fb1cf3aec225c483f9e32b4c075.tar.bz2
hercules-9d59f82368082fb1cf3aec225c483f9e32b4c075.tar.xz
hercules-9d59f82368082fb1cf3aec225c483f9e32b4c075.zip
Remove unused dirs
Diffstat (limited to 'doc/sample/npc_test_func.txt')
-rw-r--r--doc/sample/npc_test_func.txt35
1 files changed, 0 insertions, 35 deletions
diff --git a/doc/sample/npc_test_func.txt b/doc/sample/npc_test_func.txt
deleted file mode 100644
index a57b6cfb1..000000000
--- a/doc/sample/npc_test_func.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-//===== Hercules Script =======================================
-//= Sample: Functions
-//===== By: ==================================================
-//= Hercules Dev Team
-//===== Current Version: =====================================
-//= 20131225
-//===== Description: =========================================
-//= Demonstrates use of functions.
-//============================================================
-
-// Define the function func001
-function script func001 {
- mes "Hello there!";
- next;
- return; // Return to script
-}
-
-// Define the function func002
-function script func002 {
- return "I'm a function";
-}
-
-// Uses 3 different methods of displaying dialogue from both internal and external sources.
-prontera,168,189,1 script Functions 4_F_KAFRA6,{
- callfunc "func001"; // Calls func001 and displays "Hello there!"
- mes callfunc("func002"); // Calls func002 and displays "I'm a function"
- next;
- callsub L_SUB001; // Calls the label L_SUB001 and displays "I'm a label"
- close;
- end;
-
-L_SUB001:
- mes "I'm a label";
- return;
-}