> For the complete documentation index, see [llms.txt](https://mamang-irgi-scrips.gitbook.io/mamang-irgi-scripts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mamang-irgi-scrips.gitbook.io/mamang-irgi-scripts/sleeporsex/common-error.md).

# Common Error

**I didn't use any target, is that possible?**

* Yeah it's possible, if you want to use non-target make sure you have change this value on *config/shared.lua*

```lua
target = false, -- qtarget/qb-target/ox_target/false (check folder bridge | i dont really recommend not using target/interact because bad perfomance for finding bed!)
```

* But you if you using new interact like sleepless or something you can edit on *bridge/client.lua*

**I want to add more sleep or sex animation, how to do it?**

* You have add more value on *config/shared.lua* on this column

<pre class="language-lua"><code class="lang-lua"><strong>animationsleep = { -- sleep animation
</strong>        {
            label = 'Sleep 1',
            description = 'This is Decription',
            dict = 'timetable@tracy@sleep@',
            name = 'idle_c',
        },
        {
            label = 'Sleep 2',
            description = 'This is Decription',
            dict = 'anim@amb@nightclub@lazlow@lo_sofa@',
            name = 'lowsofa_base_laz',
        },
        {
            label = 'Sleep 3',
            description = 'This is Decription',
            dict = 'anim@amb@nightclub@lazlow@lo_sofa@',
            name = 'lowsofa_dlg_crying_laz',
        },
        {
            label = 'Sleep 4',
            description = 'This is Decription',
            dict = 'anim@amb@nightclub@lazlow@lo_sofa@',
            name = 'lowsofa_dlg_fuckedup_laz',
        },
        {
            label = 'Sleep 5',
            description = 'This is Decription',
            dict = 'anim@amb@nightclub@lazlow@lo_sofa@',
            name = 'lowsofa_dlg_notagain_laz',
        },
        {
            label = 'Sleep 6',
            description = 'This is Decription',
            dict = 'anim@amb@nightclub@lazlow@lo_sofa@',
            name = 'lowsofa_dlg_shit2strong_laz',
        },
    },

--[[ 
animationsex = { -- sex animation | removed due tebex policy
        {
            label = 'Sex 1',
            description = 'This is Decription',
            maledict = 'misscarsteal2pimpsex',
            malename = 'pimpsex_punter',
            femaledict = 'misscarsteal2pimpsex',
            femalename = 'pimpsex_hooker',
            bone = 9816,
            x = 0.0,
            y = 0.60,
            z = 0.0,
            xrot = 120.0,
            yrot = 0.0,
            zrot = 180.0,
        },
        {
            label = 'Sex 2',
            description = 'This is Decription',
            maledict = 'misscarsteal2pimpsex',
            malename = 'shagloop_pimp',
            femaledict = 'misscarsteal2pimpsex',
            femalename = 'shagloop_hooker',
            bone = 9816,
            x = 0.05,
            y = 0.35,
            z = 0.1,
            xrot = 120.0,
            yrot = 0.0,
            zrot = 180.0,
        },
        {
            label = 'Sex 3',
            description = 'This is Decription',
            maledict = 'rcmpaparazzo_2',
            malename = 'shag_loop_a',
            femaledict = 'rcmpaparazzo_2',
            femalename = 'shag_loop_poppy',
            bone = 9816,
            x = 0.015,
            y = -0.25,
            z = 0.0,
            xrot = 0.9,
            yrot = 0.3,
            zrot = 0.0,
        },
        {
            label = 'Sex 4',
            description = 'This is Decription',
            maledict = 'oddjobs@towing',
            malename = 'm_blow_job_loop',
            femaledict = 'oddjobs@towing',
            femalename = 'f_blow_job_loop',
            bone = 9816,
            x = -0.8,
            y = 0.1,
            z = 0.0,
            xrot = 0.0,
            yrot = 0.3,
            zrot = 0.0,
        },
        {
            label = 'Sex 5',
            description = 'This is Decription',
            maledict = 'mini@prostitutes@sexlow_veh',
            malename = 'low_car_sex_loop_player',
            femaledict = 'mini@prostitutes@sexlow_veh',
            femalename = 'low_car_sex_loop_female',
            bone = 9816,
            x = -0.8,
            y = 0.0,
            z = 0.0,
            xrot = 0.0,
            yrot = -0.3,
            zrot = 0.0,
        },
        {
            label = 'Sex 6',
            description = 'This is Decription',
            maledict = 'oddjobs@assassinate@vice@sex',
            malename = 'frontseat_carsex_loop_m',
            femaledict = 'oddjobs@assassinate@vice@sex',
            femalename = 'frontseat_carsex_loop_f',
            bone = 9816,
            x = -0.8,
            y = 0.1,
            z = 0.0,
            xrot = 0.0,
            yrot = 0.3,
            zrot = 0.0,
        },
        {
            label = 'Sex 7',
            description = 'This is Decription',
            maledict = 'random@drunk_driver_2',
            malename = 'cardrunksex_loop_m',
            femaledict = 'random@drunk_driver_2',
            femalename = 'cardrunksex_loop_f',
            bone = 9816,
            x = 0.7,
            y = 0.0,
            z = 0.01,
            xrot = 0.0,
            yrot = 0.3,
            zrot = 0.0,
        },
    },
    ]]
</code></pre>

* ~~For sex animation, if you add more animation you must change this value only if the animation need fix z value |~~  removed due tebex policy

<pre class="language-lua"><code class="lang-lua"><strong>sos = {
</strong>        --dictmaleanimationsexfixz = sexmaledict == 'xxx' or sexmaledict == 'xxx',  -- some example for fix animation needs z reduction (for addon sex animation?) | removed due tebex policy
        --dictfemaleanimationsexfixz = sexfemaledict == 'xxx' or sexfemaledict == 'xxx', -- some example for fix animation needs z reduction (for addon sex animation?) | removed due tebex policy
    },
</code></pre>

**I want to add more bed, how to do it?**

* For add more bed, you can add on this column

```lua
bed = { -- bed hash
        `v_res_msonbed_s`,
        `p_lestersbed_s`,
        `p_mbbed_s`,
        `p_v_res_tt_bed_s`,
        `v_res_msonbed_s`,
        `v_res_mbbed`,
        `v_res_d_bed`,
        `v_res_tre_bed1`,
        `v_res_tre_bed2`,
        `v_res_tt_bed`,
        `apa_mp_h_bed_double_09`,
        `apa_mp_h_yacht_bed_02`,
        `apa_mp_h_bed_double_08`,
        `apa_mp_h_bed_with_table_02`,
        -- new bed
        `v_16_bdr_mesh_bed`,
        `v_16_mid_bed_bed`,
        `v_24_bdr_mesh_bed`,
        `v_61_bd2_mesh_bed`,
        `v_8_bedrm4stuff`,
        `v_8_bed3stuff`,
        `apa_mp_h_bed_wide_05`,
        `apa_mp_h_yacht_bed_01`,
        `gr_prop_bunker_bed_01`,
        `hei_heist_bed_double_08`,
        `imp_prop_impexp_sofabed_01a`,
        `sum_mp_h_yacht_bed_01`,
        `sum_mp_h_yacht_bed_02`,
        `v_49_motelmp_bed`,
        `apa_mp_h_01_bed`,
        `mp_b_bed_double_08`,
        `apa_mpa2_bedwide_06`,
        `apa_mp_h_04_bed`,
        `apa_mp_h_05_bed`,
        `apa_mpa6_bedwide_06`,
        `apa_mp_h_08_bed`,
        `xs_x18intmod_high_end_bed`,
        `xs_x18intmod_ind_bed`,
        `xs_x18intmod_standard_bed`,
        `hei_int_heist_bdr_bed`,
        `h4_int_sub_bed`,
        `h4_mp_h_yacht_bed_01`,
        `h4_mp_h_yacht_bed_02`,
        `sf_int1_bdr_bed`,
        `sf_mp_h_yacht_bed_01`,
        `sf_mp_h_yacht_bed_02`,
        `sm_charlie_bed`,
        `sm_hanger_bed_modern_bed`,
        `sm_hanger_bedroom_tradbed`,
        `tr_int1_campbed`,
    },
```

**I have a lot custom ped for male and female**

* You can add more hash on this column

  ```lua
  maleped = { -- male ped on your server
      `mp_m_freemode_01`,
  },

  femaleped = { -- female ped on your server
      `mp_f_freemode_01`,
  },
  ```
* But make sure you change function code on *client/function.lua*
