📚Installation

This section includes a brief tutorial on how to install Samy Pregnancy Test correctly. Please follow all the instructions and if you have any issues please open a ticket on Discord so our support team can help you out. General installation.

STEP 1

  • You must install the items in your inventory. If you use ox_inventory or tgiann-inventory, proceed to step 2.

  • If you use a different inventory system, configure your framework to register the item as usable through your framework.

STEP 2

  • If your inventory is neither ox_inventory nor tgiann_inventory, remove the export and add it as a normal item to your inventory.

OX_INVENTORY:

    ['pregtest'] = {
        label = 'Pregnancy Test',
        weight = 120,
        stack = true,
        description = 'Unsure if you are pregnant? Find out!',
        client = {
			export = 'samy_pregnancytest.PregnancyMenu'
		}
    },

    ['pregtest-yes'] = {
        label = 'Pregnancy Test',
        weight = 120,
        stack = true,
        description = 'Result: Positive',
    },

    ['pregtest-no'] = {
        label = 'Pregnancy Test',
        weight = 120,
        stack = true,
        description = 'Result: Negative',
    },

TGIANN_INVENTORY:

    ['pregtest'] = {
        label = 'Pregnancy Test',
        weight = 120,
        description = 'Unsure if you are pregnant? Find out!',
        client = {
			export = 'samy_pregnancytest.PregnancyMenu'
		}
    },

    ['pregtest-yes'] = {
        label = 'Pregnancy Test',
        weight = 120,
        description = 'Result: Positive',
    },

    ['pregtest-no'] = {
        label = 'Pregnancy Test',
        weight = 120,
        description = 'Result: Negative',
    },

Last updated