Unacquirable Item

Author Topic: Unacquirable Item  (Read 1505 times)

What is the code to make an item unable for a player to pick up?

This should do the trick.

Code: [Select]
function yourItemDatablock::onAdd(%this)
{
         %this.canPickup = false;
}

Okay, thanks.
I'll test this when I get home.