### Example Script Reference Source: https://github.com/bob74/ifruitaddon2/blob/master/README.md Reference the iFruitAddon2.ddl in your project and copy it to the ScriptHookVDotNet scripts folder to use the addon. ```csharp using iFruitAddon2.Api; // ... // Example of adding a contact var contact = new iFruitContact("My Contact", "123-456-7890"); contact.Bold = true; iFruitAddon2.Api.CustomiFruit.AddContact(contact); // Example of opening the phone to a specific contact iFruitAddon2.Api.CustomiFruit.Open(contact); // Example of closing the phone after a delay iFruitAddon2.Api.CustomiFruit.Close(5000); // Close after 5 seconds // Example of closing the phone immediately iFruitAddon2.Api.CustomiFruit.Close(); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.