diff options
author | Jared Adams <jaxad0127@gmail.com> | 2008-12-11 18:16:56 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2008-12-11 18:26:46 +0000 |
commit | e7555990a4d5811bfc0d05dcca4bbc0bda2289bd (patch) | |
tree | 255b7daf1c149647419edf49c37a1260ecf4906f | |
parent | d3f480e2a893446b15deb3d6cc9503de86880c4d (diff) | |
download | serverdata-e7555990a4d5811bfc0d05dcca4bbc0bda2289bd.tar.gz serverdata-e7555990a4d5811bfc0d05dcca4bbc0bda2289bd.tar.bz2 serverdata-e7555990a4d5811bfc0d05dcca4bbc0bda2289bd.tar.xz serverdata-e7555990a4d5811bfc0d05dcca4bbc0bda2289bd.zip |
Alter rules function to return read status
-rw-r--r-- | npc/functions/game_rules.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/npc/functions/game_rules.txt b/npc/functions/game_rules.txt index 83e69d73..d486e6f9 100644 --- a/npc/functions/game_rules.txt +++ b/npc/functions/game_rules.txt @@ -1,6 +1,8 @@ // function script GameRules { + set @read, 0; + menu "English", L_English, "Deutsch (German)", L_German, @@ -132,6 +134,7 @@ L_Polish: goto L_End; L_End: + set @read, 1; set TUT_var, TUT_var | 1; return; } |