ITEM = {} ITEM.Name = "Medicine" ITEM.Description = "Heals you!" ITEM.Icon = "items/medicine.png" ITEM.UniqueData = false local use_medicine = function(ln, player) LocalPlayer():ConCommand( "gms_takemedicine" ) end ITEM.Actions = {} genericMakeDroppable(ITEM) ITEM.Actions["Use"] = use_medicine GMS.RegisterResource(ITEM)