[help]making house permit and upgrade cert undroppable

06/06/2009 16:56 n0mansland#1
Hi what I made a little house code nothing much. Might actually make the whole proccess like the vouchers and stuff but what I need now is how to make a house permit and upgrade certificate undroppable and untradable.

Thanks,
06/06/2009 17:35 scottdavey#2
Make a case and then add delete = false.
06/06/2009 19:44 Zeroxelli#3
Actually, in dropitem.cs

Where it deletes it from your inventory, and adds it to the IG array. Just add
Code:
if(Item.ItemID == 000000)
    break;
where 000000 is the ItemID of of what you don't want to drop.