//TAG.NAMEDISGUISED 0 = not disguised, 1 = disguised
//TAG.REALNAME = your real name
//TAG.REALTITLE = your real title
//You will be undisguised if hit
//If a person steps on you, they recieve a message saying
//"You see <name> is wearing a fake nose and makeup"
[DIALOG d_disguise_name TEXT]
<VAR.BLANKLINE>
Disguise Kit - Name
Title
[DIALOG d_disguise_name BUTTON]
ONBUTTON=901 // The apply button
SRC.EVENTS +e_namedisguised
SRC.SFX 302
SRC.SYSMESSAGE Your name has been changed to <ARGTXT[1]>
SRC.SYSMESSAGE Your title has been changed to <ARGTXT[3]>
text 55 73 2101 2
text 55 103 2101 3
text 55 133 2101 4
text 55 163 2101 5
text 55 193 2101 6
text 55 223 2101 7
text 55 253 2101 8
text 55 283 2101 9
text 55 313 2101 10
text 55 343 2101 11
text 55 43 2101 12
[DIALOG d_disguise_hair TEXT]
<VAR.BLANKLINE>
Disguise Kit - Choose a hair style.
Short Hair
Long Hair
Pony Tail
Mohawk
Pageboy
2 Buns
Afro
Receeding
Pig Tails
Topknot
Bald
text 55 43 2101 2
text 55 73 2101 3
text 55 103 2101 4
text 55 133 2101 5
text 55 163 2101 6
text 55 193 2101 7
text 55 223 2101 8
text 55 253 2101 9
[DIALOG d_disguise_beard TEXT]
<VAR.BLANKLINE>
Disguise Kit - Choose a beard style.
No Facial Hair
Long Beard w/o Mustache
Short Beard w/o Mustache
Goatee
Mustache
Short Beard
Long Beard
Vandyke
ON=@PersonalSpace
IF <TAG.NAMEDISGUISED>
SRC.SYSMESSAGE You notice that <NAME> is wearing make-up and a fake nose...
ENDIF
ON=@GetHit
IF <TAG.NAMEDISGUISED>
NAME=<TAG.REALNAME>
TITLE=<TAG.REALTITLE>
TAG.REALNAME=
TAG.REALTITLE=
TAG.NAMEDISGUISED=
SAY *<NAME>'s disguise is knocked off!*
EVENTS -e_namedisguised
SFX 302
END IF