Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.92 KB | None | 0 0
  1. Executioner.Config.BonusChance = 50 -- The chance 1 - 100% that a Hitman is offered a bonus.
  2. Executioner.Config.BonusMoney = 17500 -- How much money is given on a bonus hit? From a bonus weapon
  3. Executioner.Config.TaxOnKill = 0 -- What percentage is taken when a hit is completed? 0 to disable.
  4.  
  5. Executioner.Config.Max_Hit_Price = 50000 -- The maximum price the customer can place
  6. Executioner.Config.Min_Hit_Price = 3000 -- The minimum price the customer can place
  7.  
  8. Executioner.Config.PhoneEnabled = true -- If this enabled, you may only place hits via the phone.
  9. Executioner.Config.Enable_Face_To_Face = true -- Can people place hits on a Hitman by pressing 'E'?
  10.  
  11. Executioner.Config.EnableDistance = true -- Enable a Distance tracker for the Hitman to see?
  12. Executioner.Config.EnableHitTime = true -- Enable random time limits the hit must be done in?
  13. Executioner.Config.EnableHitGeneration = true -- Enable random hits? (Now works for both face to face and phone hits)
  14.  
  15. Executioner.Config.EnableUTimeSupport = false -- Enable uTime support?
  16. Executioner.Config.Min_Play_Time = 2 -- Minimum time until a hit can be placed on them? (In hours)
  17.  
  18. Executioner.Config.Hit_Time_Min = 180 -- (Seconds). Default: Start at a minimum of 60 seconds
  19. Executioner.Config.Hit_Time_Max = 360 --(Seconds). Default: Max of 300 seconds
  20.  
  21. Executioner.Config.RangeDistance = 500 -- The distance before distance turns into ???? (Too close)
  22. Executioner.Config.HitCooldown = 60 * 3 -- How long must the customer place before placing another Hit?
  23. Executioner.Config.Grace_Cooldown = 60 * 5 -- How long until a hit can be placed on the same person?
  24. Executioner.Config.Draw_Info = true -- When close to a Hitman, show that they're a hitman and their status?
  25.  
  26. Executioner.Config.Generate_Hit_Intervals = 60 * 10 -- How long for a hit to be placed? In seconds?
  27. Executioner.Config.Generate_Remove_Time = 60 * 20 -- How long until a hit is removed as nobody has taken it?
  28.  
  29.  
  30.  
  31. HitPriceFormatError = 'Cos jest nie tak z cena zlecenia. Maximum %s - Minimum %s.',
  32. HitPriceCantAfford = 'Nie mozesz dac zlecenia, kosztuje %s obecnie masz %s.',
  33. BonusWeaponAccepted = 'The %s will be removed once the hit has been attempted.',
  34. HitTimeReached = '%s Skonczyl sie czas. Zlecenie nie powiodlo sie!',
  35. HitTooSoon = 'Nie mozesz dac zlecenia tak wczesnie!',
  36. HitmanBusy = '%s aktualnie ma zlecnie.',
  37. RequestSent = 'Twoje zlecenie zostaล‚o wyslane do %s.',
  38. CustomerNoResponse = '%s nie odpowiedzial na twoje zlecenie.',
  39. HitmanNoResponse = 'Nie zdazyles wykonac zlecenia na czas!',
  40. TargetRejectHit = 'Nie moลผesz dac zlecenia na ta osobe',
  41. InvalidTargets = 'Nie mozesz dac zlecenia. Cel nie nie jest polaczony z serwerem, albo nie zyjesz.',
  42. CustomerOnHitAccepted = '%s przyjal twoje zlecenie na %s. Pieniadze zostaly przelane',
  43. CustomerOnHitDeclined = '%s nie przyjal twojego zlecenia. Nie zostales obciazony.',
  44. HitmanOnHitAccepted = 'Przyjales oferte %s\ zlecenie na %s za %s.',
  45. HitmanOnHitDeclined = 'Nie przyjales zlecenia %s\.',
  46. MessageAllOnAccepted = 'Ktos przyjal zlecenie. Uwazaj, ty mozesz byc celem!',
  47. BonusWeaponHitComplete = '%s ukonczyl zlecenie uzywajac %s przeciwko %s. Zostal nagrodzony %s oraz bonusem %s.',
  48. HitCompletedNoBonus = '%s ukonczyl zlecenie w ktorym celem byl %s i zostal nagrodzony %s.',
  49. TaxOnKill = 'Twoj przychod zostal opodatkowany ' .. Executioner.Config.TaxOnKill .. '%.',
  50. TargetDiedBeforeHit = '%s\ cel %s zostal zabity zanim zdazono skonczyc zlecenie. Zlecenie nie powiodlo sie!',
  51. TargetKilledHitman = '%s Nie pasowal do celu %s. Zostal zabity. Zlecenie nie powiodlo sie!',
  52. HitmanDied = 'Hitman %s zostal zabity zanim dostal szanse na zabicie celu. Zlecenie nie powiodlo sie!',
  53. TargetDisconnected = Cel %s opuscil serwer. Pieniadze zostaly wrocone zleceniodawcy.',
  54. HitmanDisconnected = 'Hitman %s wyszedl z serwera. Pieniadze zostaly wrocone zleceniodawcy.',
  55. CustomerDisconnected = 'Zleceniodawca %s opuscil serwer. Zlecenie zostalo odwolane.',
  56. HitmanChangedJob = 'Hitman %s Zmienil prace. Pieniadze zostaly zwrocone', -- REMOVE
  57. HitmanArrested = 'Hitman %s zostal aresztowany przez %s. Zlecenie zostalo zwrocone.',
  58. TargetArrested = 'Cel %s zostal aresztowany przez %s. Zlecenie zostalo zwrocone.',
  59. PhoneNoSave = 'Nie ma nic do zapisania.',
  60. PhoneOnSave = '%i Phone(s) Zostaly zapisane pomyslnie.',
  61. PhoneOnReset = 'Pomyslnie usunieto %i phones i usunieto dane.',
  62. OnSwitchTeam = '%s zostal zmieniony w %s zlecenie zostalo zwrocone.',
  63. BonusNoReply = 'Przyjecie bonusowej broni zajelo ci zbyt duzo czasu.',
  64. HitActive = 'Ta osoba jest obecnie celem innej oferty. Nie mozesz aktualnie dac na niego zlecenia.',
  65. SameTargetTooSoon = 'Ta osoba byla niedawno celem, nie mozesz dac jeszcze na niego zlecenia.',
  66. CantDrop = 'Nie mozesz wyrzucic bonusowej broni.',
  67. --> Start of Phone Related Messages <--
  68. OnRandomHit = 'Anonymous dal zlecenie na podejrzanego. Wicej informacji masz w telefonie. Type ' .. Executioner.Config.Phone_Command .. '.',
  69. OnRadomHitAccepted = 'Przyjales randomowo generowane zlecenia na %s za %s.',
  70. HitmanActiveHit = 'Masz aktualnie zlecenie. Nie ma potrzeby aby brac drugie!',
  71. NotEnoughHitmen = 'Nie ma aktualnie zadnego hitmana na serwerze. Nie mozesz dac zlecenia.',
  72. CustomerOnPhoneHitPlaced = 'Dales zlecenie na %s. Hitman zajmie sie nim niedlugo. Twoje konto zostalo obciazone %s.',
  73. HitmanNotifyRequest = '%s prosi o zajecie sie zleceniem. Wiecej informacji w telefonie. Type ' .. Executioner.Config.Phone_Command .. '.',
  74. PhoneNotInService = 'Ten telefon nie jest czynny teraz, wroc pownie pozniej!',
  75. HitmanOnUsePhone = 'Nie mozesz uzywac telefonu jako Hitman!'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement