
11-12-2001, 06:46 AM
|
|
RadioActive Monkeeh
|
 |
Join Date: Apr 2001
Location: dirty south
Posts: 2,112
|
|
|
you would do
if (playertouchsme) { toinventory yourkey; }
then to check you would just do
if (yourkey) { whatever; }
like in a door you would put
if (playertouchsme&&yourkey) {
hidelocal;
unset yourkey;
}
and the key of course
if (playertouchsme&&!yourkey) { toinventory yourkey; } |
|
|
|