diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-13 22:49:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-13 22:49:33 -0300 |
commit | 2438a0d77172a5326f7e24b686664908987a9e8e (patch) | |
tree | 37eaf6401d4f61adea2f26f4cca7d6f3ad735151 /npc/002-2 | |
parent | eaf8bd0c57ef85accb6fb7bea07499c0005e92d4 (diff) | |
download | serverdata-2438a0d77172a5326f7e24b686664908987a9e8e.tar.gz serverdata-2438a0d77172a5326f7e24b686664908987a9e8e.tar.bz2 serverdata-2438a0d77172a5326f7e24b686664908987a9e8e.tar.xz serverdata-2438a0d77172a5326f7e24b686664908987a9e8e.zip |
Add missing flags to database - how were they missed o.o
Diffstat (limited to 'npc/002-2')
-rw-r--r-- | npc/002-2/stranger.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/002-2/stranger.txt b/npc/002-2/stranger.txt index 8be7ac21..3af0c57a 100644 --- a/npc/002-2/stranger.txt +++ b/npc/002-2/stranger.txt @@ -7,7 +7,7 @@ if (FLAGS & FLAG_TOWEL_COMPLETED) goto L_Event_Done; if ((gettimetick(2)-TUT_var < 6*7*86400) || (BaseLevel < 42)) //player must be created at least 6 weeks ago and at least level 42 goto L_No_Event; - if (FLAGS & FLAG_TOWEL_HelpED) goto L_Towel; + if (FLAGS & FLAG_TOWEL_HELPED) goto L_Towel; mes "[Stranger]"; mes "\"Hello, hello! It's great to see you. Maybe you can help me with a little problem I have.\""; @@ -27,7 +27,7 @@ L_Items: delitem "IronIngot", @iRONINGOT; delitem "PinkAntenna", @PINKANTENNA; getexp @Exp, 0; - FLAGS = FLAGS | FLAG_TOWEL_HelpED; + FLAGS = FLAGS | FLAG_TOWEL_HELPED; mes "[Stranger]"; mes "\"Great! Thank you!\""; |