(02-24-2017, 12:54 AM)MindScope Wrote: It says "cannot use this item this way" or something like that. Here's the script:
![[Image: fhwRuq9.png]](http://i.imgur.com/fhwRuq9.png)
try this. it may work
void OnStart()
{
AddUseItemCallback("", "Key", "Door/", "Unlock", true);
}
void Unlock(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked(asEntity, false, true);
PlaySoundAtEntity("", "unlock_door.snt", asEntity, 0, false);
RemoveItem(asItem);
}
if it does not work someone else can correct the issue.

hopefully this helped you.