# Gang App

* All you need to do is go to config.lua and set this value to true :<br>

  ```lua
  Config.UseGangApp       = true
  ```
* To add the mission into the gang app go to config.lua and add this under Config.Contracts :<br>

  ```lua
      {
          id = 1, -- change this ofc if it is not the first ...
          label = 'Laundromat',
          requirements = {
              'Laundromat USB',
          },
          price = 15,
          available = true,
          image = 'https://www.trycents.com/hubfs/doing-laundry-in-nyc-laundromat-header.jpg',
          resource = 'zat-laundromat',
          text = 'Laundromat mission started, head over to the location and contact the responsable...',
          coords = vector3(510.69, -1951.57, 23.99) -- npc location
      },
  ```
* NPC interaction :&#x20;
  * If you <mark style="color:red;">don't use zat dialog</mark> then make sure that you have disabled the group option from the client/target.lua.
  * If you <mark style="color:green;">use zat dialog</mark> then use this part : <br>

    ```lua
    -- laundromat
        {
            img         = 'https://live.staticflickr.com/65535/54170502885_2d3aa67a37_o.png',
            ped         = 'a_m_m_eastsa_02',
            anim        = 'CODE_HUMAN_MEDIC_TIME_OF_DEATH',
            coords      =  vector4(510.69, -1951.57, 23.99, 307.67),
            job         = "all", -- { ["police"] = 0, ["ambulance"] = 0}  if you are using target
            gang        = "all", -- { ["ballas"] = 2, ["thelostmc"] = 0}  if you are using target
            groups      = "all", -- { ["police"] = 2, ["ambulance"] = 0}  if you are using intearaction
            firstname   = 'ASTA',
            lastname    = 'CLEAN',
            rep         = 0,
            mission     = 'Laundromat',
            text        = 'Hey there, always on the lookout for a side gig, huh? I have got this idea that is a bit out there, but trust me, it pays off. Imagine sneaking onto Suds Law laundromat and break all the whashmachines in there?',
            buttons     = {
                {
                    text= 'I want to work',
                    rep = 0,
                    answer ='Ready for a day of hard work?',
                    buttons={{
                            text = 'yes',
                            shop =false,
                            rep = 0,
                            action= {
                                isServer= false,
                                event= 'zat-laundromat:client:StartWorking',
                                data= {}
                            },
                            canInteract = CanToggleSignIn(),
                        },
                        {
                            text = 'Leave Conversation',
                            shop =false,
                            rep = 0,
                            action= {
                                isServer= false,
                                event= 'zat-dialog:client:HideUi',
                                data= {}
                            },
                            canInteract = true
                        }
                    },
                    canInteract = true
                },
                {
                    text = 'Abandon Mission',
                    rep = 0,
                    shop =false,
                    action= {
                        isServer= false,
                        event= 'zat-laundromat:client:StopWorking',
                        data= {}
                    },
                    canInteract = true
                },
                {
                    text    = 'Open Shop',
                    rep = 0,
                    shop    = true,
                    answer  = null,
                    canInteract = true
                },
            },
            items={
                {
                    name   = 'laundromatusb',
                    label  = 'USB',
                    image  = 'nui://'..Config.Img..'laundromatusb.png',
                    type   = 'Equipement',
                    price  = 1000,
                    rep    = 0,
                    amount = 0, -- keep it 0
                    info   = {},
                    canInteract = true
                },        
            }
        }, 
    ```
