blob: 9c724872a3114169182d53a6abcde79c39d47027 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// ------------------------------------------------------------
// Added as a joke but could be used seriously.
// ------------------------------------------------------------
function|script|DrugItem
{
if (strcharinfo(0) == "kytty") goto L_kytty;
//message strcharinfo(0), "TMW does not endorse nor condone with the use of this item in real life, nor with its implications.";
goto L_Return;
L_kytty:
message strcharinfo(0), "Stop smoking, kytty! %%e";
goto L_Return;
L_Return:
return;
}
|