blob: 92be20f246302dfc23d477810c91b8e224966211 (
plain) (
tree)
|
|
function script useScissors {
if (rand(3))
goto L_Change;
message strcharinfo(0), "Whoops!";
itemheal -20 - rand(Hp >> 1), 0;
getitem "Scissors", 1;
end;
L_Change:
setlook 1, rand(18);
getitem "Scissors", 1;
end;
}
|