summaryrefslogtreecommitdiff
path: root/npc/items/scissors.txt
blob: d27e8f6f54c0a5fffc24a70e98534cb9ccd8dc3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
function	script	useScissors	{
    getitem "Scissors", 1;
    if (rand(3))
        goto L_Change;
    message strcharinfo(0), "Whoops!";
    heal -20 - rand(Hp >> 1), 0;
    return;

L_Change:
    callfunc "getHeadStyles";
    setlook LOOK_HAIR_STYLE, rand(1,getarraysize(@HairStyles$));
    return;
}