From bdfddd17127c1642e67a148ee2d8b14baec20394 Mon Sep 17 00:00:00 2001 From: Matthew McConnell Date: Tue, 27 Sep 2016 22:53:23 +0100 Subject: [PATCH] readme --- README.txt => README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) rename README.txt => README.md (95%) diff --git a/README.txt b/README.md similarity index 95% rename from README.txt rename to README.md index dc60c46..b82b9df 100644 --- a/README.txt +++ b/README.md @@ -1,22 +1,27 @@ -Exile Loot Drop +# Exile Loot Drop A server mod/extension to replace the Exile loot drop function with a dll. Examples: + Get single item (returns string so is backwards compatible with Exile): +``` _item = 'table' call ExileServer_system_lootManager_dropItem; +``` Get multiple items (returns an array of items, this is good for mission stuff): +``` _items = ['table', 10] call ExileServer_system_lootManager_dropItem; +``` ExileLootDrop.VR mission contains the original Exile method for loot and the original tables for testing - +``` // SQF 'CivillianLowerClass' call ExileServer_system_lootManager_dropItem_sqf // DLL 'CivillianLowerClass' call ExileServer_system_lootManager_dropItem_ext - +``` To Install: Run the mod on the server and stick the below into CfgExileCustomCode in you mission files ```