diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-01-11 14:16:10 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-01-11 14:16:46 +0000 |
commit | 89032c4b8eda2d1bf03a8543d8e413d908bb9f56 (patch) | |
tree | 6b95d6cd5dabeb66d636be8fb63c8b9826f2bbc7 /npc/functions/barber.txt | |
parent | a991a5d8865c9b4c058d1900e8c4a07a09f31081 (diff) | |
download | serverdata-89032c4b8eda2d1bf03a8543d8e413d908bb9f56.tar.gz serverdata-89032c4b8eda2d1bf03a8543d8e413d908bb9f56.tar.bz2 serverdata-89032c4b8eda2d1bf03a8543d8e413d908bb9f56.tar.xz serverdata-89032c4b8eda2d1bf03a8543d8e413d908bb9f56.zip |
Add new hair styles to the barber.
Diffstat (limited to 'npc/functions/barber.txt')
-rw-r--r-- | npc/functions/barber.txt | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/npc/functions/barber.txt b/npc/functions/barber.txt index 0edaab73..57c3c598 100644 --- a/npc/functions/barber.txt +++ b/npc/functions/barber.txt @@ -6,10 +6,9 @@ function script Barber { "Change my color", L_Color, "Nah, I'm fine", L_Done; + goto L_Done; + L_Style: - if (Sex == 0) goto L_Style_Female; - -L_Style_Male: menu "Bald", -, "Ponytail", -, @@ -18,27 +17,18 @@ L_Style_Male: "Emo", -, "Mohawk", -, "Pompadour", -, - "Center parting", -, - "Supprise me", -, - "Nah, I'm fine", close; - goto L_Process_Style; - -L_Style_Female: - menu - "Bald", -, + "Center parting/Short and slick", -, "Long and slick", -, "Short and curly", -, - "Ponytail", -, - "Pigtails", -, "Long and curly", -, + "Pigtails", -, "Parted", -, - "Short and slick", -, "Supprise me", -, "Nah, I'm fine", L_Done; L_Process_Style: set @style, @menu - 1; - if (@style == 8) set @style, rand(8); + if (@style == 13) set @style, rand(13); setlook 1, @style; return; |