PeppSess

Config of fnx-1vs1

Apr 4th, 2022 (edited)
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.52 KB | None | 0 0
  1. Config = {
  2.     -- command used to join in matchmaking
  3.     ChatCommand = '1v1',
  4.  
  5.     -- match settings
  6.     SpawnTeamA = vec3(-3179.6437988281,7243.6186523438,443.83868408203),    -- spawn point first team
  7.     SpawnTeamB = vec3(-3228.1062011719,7243.6079101563,443.8391418457),     -- spawnn point second team
  8.     WeaponHash = `WEAPON_PISTOL_MK2`,                                       -- weapon used in the match
  9.     SpawnPoint = vec3(-419.44586181641,1145.9458007813,325.85501098633),    -- respawn poin after match end
  10.  
  11.     -- discord settings
  12.     webhook1v1 = "https://discord.com/api/webhooks/960480023628898334/O23DDQk4pBoFGvUuREDdz58zmI2dO56uurj3tVpzc8S5-zdHbnQ5k5_I1Xt00bSoBBQS",
  13.     title = '1v1',
  14.     color = 15105570,
  15.     thumbnail = 'https://media.discordapp.net/attachments/752677237118992394/933320111333474324/logo_fenix-removebg-preview.png',
  16.     footer = 'https://media.discordapp.net/attachments/752677237118992394/933320111333474324/logo_fenix-removebg-preview.png',
  17.  
  18.     -- ESX Stuff
  19.     UseESX = true,
  20.     TriggerDeath = 'esx:onPlayerDeath',
  21.  
  22.     -- FNX Death System Stuff
  23.     UseFnxDeath = false,
  24.     FnxTriggerDeath = 'fnx-death_system:updatedeath'
  25. }
  26.  
  27. Lang = {
  28.     ['matchend'] = "Match Finished",
  29.     ['matchstart'] = "Match Started",
  30.     ['matchexited'] = "You have exited matchmaking",
  31.     ['matchjoined'] = "You have entered MatchMaking",
  32.     ['winner'] = "Winner: ",
  33.  
  34. }
  35.  
  36. Config.Notify = function(msg,src)
  37.     TriggerClientEvent('dopeNotify2:Alert', src, '1V1', msg, 5000, 'success')
  38. end
  39.  
  40.  
Add Comment
Please, Sign In to add comment