Dev
791ebd4693
Moveed handling of unreasonableModPrices
into ragfair code instead of on game start
...
Lowered weapon mod threshold from 9x to 6x
2024-02-09 14:13:48 +00:00
Dev
44f835fad4
Extend snow event to 15th
2024-02-09 13:31:56 +00:00
Dev
74ea69ffe6
Remoe unused enabled
properties from ragfair config chancePercent
is used instead
2024-02-09 12:46:23 +00:00
Dev
e915d17019
Reworked fence assort generation and partial refresh
...
Split item generation values up, separate value for item/equipment/weapon
Fixed more assorts being generated than were being deleted each partial refresh
Added assort item options to discount assort config
2024-02-09 12:39:58 +00:00
Dev
b7b08f99f2
Add functionality to apply a multipler to individual dynamic offers on flea
...
Use new functionaliy to apply a large multipler to `5.45x39mm BP gs ammo pack` items to match live data
2024-02-09 09:56:18 +00:00
Dev
e95ec8c790
Flea price update
2024-02-08 23:10:38 +00:00
Dev
8015c36468
Fixed fuel having incredibly high values on ragfair
2024-02-08 23:02:30 +00:00
Dev
28677f672b
Fence changes:
...
Larger number of weapon presets
Larger stack size for ammos (override stack size of ammo by parent id, not item id)
Removed ammo boxes from blacklist + add max limit of 2
Removed fence debug logging
Make weapon picker check if weapon is on blacklist before adding
Fixed incorrect weapon mod removal check
Reduced chances mods are removed from weapons
2024-02-08 21:58:47 +00:00
Dev
2d27aaf545
Update assorts
2024-02-08 20:42:40 +00:00
Dev
228327d5ad
update quest json
2024-02-08 20:15:53 +00:00
Dev
1b900b2019
Merge branch '3.8.0' of https://dev.sp-tarkov.com/SPT-AKI/Server into 3.8.0
2024-02-08 16:53:33 +00:00
Dev
c097914e45
Add system to ignore armor plate slots when removing plates not suitable for flea
2024-02-08 16:53:14 +00:00
Krinkels
93b91a071a
Editing other localizations ( !217 )
...
In the project/assets/database/locales/server/en.json file, in the "launcher-profile_spteasystart" key, the description of the profile being created has changed from level 69 to level 15. The description of this key has been corrected in other localizations
Co-authored-by: Krinkels <krinkels@krinkels.org>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/217
Co-authored-by: Krinkels <krinkels@noreply.dev.sp-tarkov.com>
Co-committed-by: Krinkels <krinkels@noreply.dev.sp-tarkov.com>
2024-02-08 16:20:52 +00:00
Dev
810cd8abd6
Improve flea offer item durability randomisation
...
Expanded `condition` config system to separate out current and max durability
Added missing armor config settings
Rewrote weapon durability method `randomiseWeaponDurabilityValues()` to do work similar to `randomiseArmorDurabilityValues()`
Fixed various items being classified as ARMORED_EQUIPMENT and using the wrong category config values
Moved ARMORED_EQUIPMENT to bottom of config so its chosen last, fixes vests being flagged as wrong item
2024-02-08 14:52:09 +00:00
Dev
a9c48bc5c8
Increase chances of PMC spawning at start of raid on labs to help with the feeling of an empty raid
2024-02-08 12:36:46 +00:00
Dev
7a33eea672
Small cleanup of fence item removal code -reduce assort size to 140 to ensure its divisible by partialRefreshChangePercent
without remainder
2024-02-07 23:44:15 +00:00
Dev
1a885e4eda
Reduce preset price multipler to 1.5x from 2x
2024-02-07 23:26:59 +00:00
Dev
bd2ebe6cbc
Update flea prices
2024-02-07 19:01:42 +00:00
Dev
1c755a4bf4
lint
2024-02-07 09:34:08 +00:00
Dev
2f0513edff
Update gifts.json to include plates/soft inserts for armors + mods for weapons
2024-02-07 09:33:47 +00:00
Dev
f48ad01b38
Add thermalvision price limit to fence
2024-02-06 19:52:10 +00:00
Dev
e20c89301d
Adjust low level PMC ammos
2024-02-06 17:30:04 +00:00
Dev
4e02384e04
PMC mod spawn chance adjustments
2024-02-06 17:27:00 +00:00
Dev
1681e452bb
Force muzzle devices to be a required slot
...
Lower muzzle chance for PMCs level 20+
2024-02-06 17:21:33 +00:00
Dev
f2865e7675
Experimental; flag mod_muzzle
as required for PMCs
2024-02-06 16:59:58 +00:00
Dev
fcf7ff5c3d
Update trader assorts, include missing armor inserts on items not dumped from live yet (prapor and ragman)
2024-02-06 14:53:10 +00:00
Dev
5f873e73b8
Move handbook override code into HandbookHelper.hydrate()
- changes now apply to ragfair
2024-02-06 12:52:56 +00:00
Dev
5c52e13064
Add presents to chiristmas seasonal event gift
2024-02-06 12:18:16 +00:00
Dev
e9daf61013
Implement christmas gift system.
...
Gifts now give rewards, bigger the gift = bigger the possible reward
2024-02-06 12:17:41 +00:00
Dev
7bc9fdbe95
Add system to override handbook price, add christmas gift items small/med/large
2024-02-06 12:16:26 +00:00
Deadly Alden
4fc012b422
Revamp structure of socket debug messages ( !214 )
...
**Description**
This pull request changes the WebSocket connection `handle lost` log message in the `wsOnConnection` method of the `GameSocket` class. The original log message was:
```typescript
this.logger.debug(this.localisationService.getText("websocket-socket_lost_deleting_handle");
>>> [WS] Socket lost, deleting handle, status: %s
```
Which was inconsistent with most other languages. It can be understood from context that the socket was lost, therefor deleted and closed. Instead now;
```typescript
this.logger.debug(this.localisationService.getText("websocket-socket_lost_deleting_handle");
>>> [WS] Socket lost, deleting handle
```
This is achieved through editing the languages one by one and removing the "`status: %s`" component.
**Related**
- Closes: https://dev.sp-tarkov.com/SPT-AKI/Issues/issues/421
Co-authored-by: Deadly <info.saddiki@gmail.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/214
Co-authored-by: Deadly Alden <deadly@noreply.dev.sp-tarkov.com>
Co-committed-by: Deadly Alden <deadly@noreply.dev.sp-tarkov.com>
2024-02-06 09:07:23 +00:00
Dev
d0ed738c0b
lint bot json
2024-02-05 22:07:33 +00:00
Dev
9a1ef8daa2
Add missing locale
2024-02-05 22:02:19 +00:00
Dev
b7d74f1dec
Add system to flag weapon slot ids as required.
...
Applies to stocks/recievers for PMCs
recievers for exusec/raider
2024-02-05 22:02:03 +00:00
Dev
d36593ca57
Rework fence service to handle armor/weapons separately,
...
made config work with a weapon/equipment min/max value
Improve price filtering system to work with weapons/equipment
2024-02-05 19:52:46 +00:00
Dev
f429cbd663
Update locales
2024-02-05 15:46:00 +00:00
Dev
e0cb167272
Update PMC mod item data
2024-02-05 15:37:01 +00:00
Dev
e5bc45c6d4
Adjusted front/rear loot item plate chance to be 100%:
2024-02-04 20:30:10 +00:00
Dev
af0c6b9ee9
Add missing initialLoyaltyLevel values to standard account templates
2024-02-04 19:58:57 +00:00
Dev
9fa0bf53e5
Rework sell all scav gear button to send money as mail
2024-02-04 19:27:35 +00:00
Dev
5bde733e7b
Lower airdrop weapon crate count max to 2 for mixed type crates
2024-02-04 17:01:04 +00:00
Dev
09a76f5c3f
Replace placehold quest assorts with live data taken on 15th of jan
2024-02-04 15:52:44 +00:00
Dev
b6b659d2d7
Increase chance of Pscav name on scavs to 20%
2024-02-04 14:43:58 +00:00
Dev
c43c06d2b5
Increase chance PMCs 1-15 have backpacks
2024-02-04 14:37:08 +00:00
Dev
2fb15dab94
Adjust PMC 1-15 backpack loot values - tiny chance of 10 items + weight 2/3 items more heavily
2024-02-04 14:35:22 +00:00
Dev
6d300c9d4d
Add chance for 1-15 PMCs to have 2 healing items on their person
2024-02-04 14:31:26 +00:00
Dev
ef623de2d7
Increate 1-14 PMC chance to have a grenade to 44%
2024-02-04 14:30:13 +00:00
Dev
ba94183f86
Blacklist Ultralink quest item from airdrops
2024-02-04 14:10:03 +00:00
Dev
8b90373965
Removed Out of Time
quest
2024-02-04 09:40:52 +00:00
Dev
ff4b1f95be
Fixed Rhys-T helmet not having inserts for PMCs
2024-02-04 09:24:39 +00:00
Dev
2c4278cd96
Show debug message as warning + fix incorrect prapor quest assort ids
2024-02-04 09:12:27 +00:00
Dev
48e6f3052d
Add item limit of 1 for TerraGroup Labs access keycard
to bosskojaniy
2024-02-03 17:41:05 +00:00
Dev
f17d385d56
Add missing easy start bear data
2024-02-03 16:06:23 +00:00
Dev
b7f6cf5e36
Reorder profile presets to have standard first, EoD last
2024-02-03 15:55:23 +00:00
Dev
b6a57553de
Enhance profile template initial trader standing system to be per trader
2024-02-03 15:53:28 +00:00
Dev
579a846212
Set easy start profiles to have traders level 2
2024-02-03 15:29:39 +00:00
Dev
0d21eac38f
Extend snow till the 10th of feb
2024-02-03 15:14:26 +00:00
Dev
e4df0581c6
Update starting ammo in profile templates
2024-02-03 15:14:03 +00:00
Dev
fc6d8b487a
Add empty locales
2024-02-03 15:03:14 +00:00
Dev
055f8176d8
Remove Hippocratic Oath quest - no longer in live
2024-02-03 11:14:57 +00:00
Dev
f2cae309ec
Merge branch '3.8.0' of https://dev.sp-tarkov.com/SPT-AKI/Server into 3.8.0
2024-02-03 10:02:22 +00:00
Dev
e801b30d98
Fix trader assorts with an UnlimitedCount
value not having a stack size of 9999999 - fixes unlimited item on prapor having stack size of 100
2024-02-03 10:01:44 +00:00
Kaeno
9f9febd624
Add missing quest images
2024-02-03 00:30:01 +00:00
Kaeno
8227e06d77
Black list Sacred Amulet from scav case also
2024-02-02 19:25:14 +00:00
Kaeno
ef958a115d
Blacklist Lightkeepers amulet from airdrops and fence
2024-02-02 19:02:46 +00:00
Dev
6a4330557f
Add PMC name
2024-02-02 17:58:31 +00:00
Dev
36d16f0917
Add english fallback locale
2024-02-02 17:53:23 +00:00
Dev
a1e84992a2
update english locale
2024-02-02 14:18:45 +00:00
Dev
5b04bc530e
Update locales
2024-02-01 20:19:06 +00:00
Dev
31942b96eb
Add marksman rifles to elimination dailies
...
Add weapon filtering based on range requirement of elimination quest:
> 50 = no pistols/shotguns
< 20 = no DMR/MarksmanRifles
2024-02-01 14:37:02 +00:00
Kaeno
0973c1cdad
Add missing quest item ID to forcedLootSingleSpawnById
2024-01-31 23:30:28 +00:00
Kaeno
0a16e06c89
Removed Duplicate key. Fixed some formatting
2024-01-31 21:24:05 +00:00
Kaeno
0d78bc22f0
Potential fix to bots freezing. Needs testing
2024-01-31 20:58:41 +00:00
Dev
c7ce7e57cb
Update items.json
2024-01-31 18:30:02 +00:00
Dev
dbea338a8f
Add missing FiR properties
2024-01-31 17:07:50 +00:00
Dev
d2e8af3341
Update JSONs
2024-01-31 17:01:46 +00:00
Dev
78e62229cc
Update trader assorts
...
10 missing trader quest assorts replaced with placeholders
2024-01-31 16:57:40 +00:00
Dev
8be7e5b2b7
Update quest data
2024-01-31 16:39:48 +00:00
Dev
2cd92c4e7e
Fix typo
2024-01-30 18:48:46 +00:00
Dev
8a5377c244
Bot weighting adjustments
2024-01-30 17:19:48 +00:00
Arys
f5d56f8ae3
Increased BTR moveSpeed to 9 ( !213 )
...
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/213
Co-authored-by: Arys <arys@noreply.dev.sp-tarkov.com>
Co-committed-by: Arys <arys@noreply.dev.sp-tarkov.com>
2024-01-30 09:37:12 +00:00
Dev
c498efe18f
Update cursed assault json
2024-01-30 09:34:07 +00:00
Dev
f3ec237674
Fix issue with weapon mod generation flagging mod as incompatible even though it passes compatibility checks
...
Stop trying to fit a mod to a weapon after 8 blocked attempts
Created streamlined mod compatability checker function
2024-01-29 22:41:08 +00:00
Dev
1995fbfef0
Adjust scav vest to be less common on higher level PMCs
2024-01-29 19:35:07 +00:00
DrakiaXYZ
f160560134
Lower BTR default speed to work with change in modules ( !212 )
...
Co-authored-by: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/212
Co-authored-by: DrakiaXYZ <drakiaxyz@noreply.dev.sp-tarkov.com>
Co-committed-by: DrakiaXYZ <drakiaxyz@noreply.dev.sp-tarkov.com>
2024-01-29 19:07:45 +00:00
Dev
187c0f2263
Update PMC names
2024-01-29 17:01:07 +00:00
Dev
215e8f1c4b
Create new SNOW
event separte from new years
2024-01-27 23:08:21 +00:00
Dev
f2c2f23438
Add various handguard lower secctions to PMC weapons
2024-01-27 23:02:38 +00:00
Dev
bab96ec429
Added limit of 1 for Shturman's stash key
on bosskojaniy
...
Fixed typo in `bosskolontay` name
2024-01-27 22:30:47 +00:00
Dev
4875662d0a
More PMC adjustments
2024-01-27 19:40:11 +00:00
Dev
fde85a52ce
Improve PMC gear filters
2024-01-27 19:15:42 +00:00
Dev
ccb610dda6
Add config property forceOnlyArmoredRigWhenNoArmor
+ wire it up
2024-01-27 18:52:36 +00:00
Dev
8ca0c5d82b
Remove faceshield from headwear section
2024-01-27 17:08:01 +00:00
Dev
8c348844ad
Replace possible bad bear body id with correct one
2024-01-27 16:08:33 +00:00
Dev
3ac5a6e41a
Initial pass at adding new locales with fallbacks
2024-01-26 22:28:36 +00:00
Valens
63aed59c98
Ammo adjustments ( !210 )
...
Co-authored-by: VforValens <8889280+VforValens@users.noreply.github.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/210
Co-authored-by: Valens <valens@noreply.dev.sp-tarkov.com>
Co-committed-by: Valens <valens@noreply.dev.sp-tarkov.com>
2024-01-26 19:06:11 +00:00
Dev
59bc9cb3e0
Move bot hands/head/voice over to weighted lists
2024-01-26 17:57:13 +00:00
Dev
4d98cf69b8
Update bot data
2024-01-26 16:47:56 +00:00
Dev
7755daf139
Flea price update
2024-01-26 16:26:24 +00:00
Dev
05f7f8b43f
Add mods to bots manually to stop warnings on generation
2024-01-26 15:58:14 +00:00
Dev
8a824c2cae
removed "location": 0
from cartridge on EoD bear profile
2024-01-26 15:30:32 +00:00
Dev
23baf3cce6
Adjust modSpawnChancePercent
values to make loose armor have more plates
2024-01-26 14:25:50 +00:00
Dev
15f3223349
Reduce sandbox
maxbot count
2024-01-26 13:15:25 +00:00
Valens
0d1a5bc59f
Change 762x51 for Levels 1-14 to weight worse ammo ( !209 )
...
Changed 762x51 BCP FMJ and TCW SP to be weighed heavier to help prevent occurrences of the better ammo in the 762x51 array from spawning while low level.
Co-authored-by: VforValens <8889280+VforValens@users.noreply.github.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/209
Co-authored-by: Valens <valens@noreply.dev.sp-tarkov.com>
Co-committed-by: Valens <valens@noreply.dev.sp-tarkov.com>
2024-01-26 08:29:41 +00:00
Valens
b9e9e0cd4b
Fix rightside_plate in multiple bot types ( !208 )
...
Fix rightside_plate to be right_side_plate matching all other entries for config/bots.json, bots/types/arenafighter, bear, and usec.json's
Co-authored-by: VforValens <8889280+VforValens@users.noreply.github.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/208
Co-authored-by: Valens <valens@noreply.dev.sp-tarkov.com>
Co-committed-by: Valens <valens@noreply.dev.sp-tarkov.com>
2024-01-25 23:29:01 +00:00
Dev
e8ff4c01b3
Further adjustments to PMCs 1-14
2024-01-25 21:38:09 +00:00
Dev
edbc35134f
PMC 1-14 changes
2024-01-25 21:11:04 +00:00
Dev
6ffbbed760
increase chance of basic headgear for 1-14 PMCs
...
increase chance of basic headset for 1-14 PMCs
increase chance of level 4 facecover for 50+ PMCs
2024-01-25 20:34:44 +00:00
Dev
f6dae88610
reduce mp7/bastion spawn chance
2024-01-25 17:23:09 +00:00
Dev
d9eedae831
Fix 3m armor being in wrong slot
2024-01-25 17:16:47 +00:00
Dev
f9965becc1
Fix default preset ordering
2024-01-25 15:18:50 +00:00
Dev
fd7050b0ac
Fix issue with weapon/equipment mod selection where it would ignore settings when mod slot was required
...
Fix JSON errors in bot.json
2024-01-25 13:45:42 +00:00
Dev
4fee533622
Add back paca fix
2024-01-25 12:58:58 +00:00
Dev
26c4138b5c
Remove paca debug values
2024-01-25 10:57:37 +00:00
Dev
c376abfbfb
pmc 1-14 equipment value adjustments
2024-01-25 10:52:34 +00:00
Arys
5c077dc99b
Added new BTR config settings ( !207 )
...
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/207
Co-authored-by: Arys <arys@noreply.dev.sp-tarkov.com>
Co-committed-by: Arys <arys@noreply.dev.sp-tarkov.com>
2024-01-25 08:52:10 +00:00
Dev
2a51d13b91
Fix caps issuewith paca
2024-01-24 22:36:41 +00:00
Dev
7d734a18f1
Bot wave adjustments
...
Remove gifter from streets
Remove manual waves from streets
2024-01-24 19:49:42 +00:00
Dev
5d0ffd93d2
Added helmets category to ragfair conditions array
2024-01-24 19:33:24 +00:00
Dev
6cdd1ce643
Improve PMC bot gear filtering
2024-01-24 19:15:05 +00:00
Dev
852849aeb1
Extend new years date
...
Generate fewer btr bots
2024-01-24 14:23:44 +00:00
Dev
e6c3271b23
JSON update
2024-01-24 13:48:02 +00:00
Dev
b4af859a06
28476
2024-01-24 10:45:57 +00:00
Dev
3ec63ef31d
Fix issue with addChildSlotItems()
and add additional mods
2024-01-23 21:33:24 +00:00
Dev
b68164b830
Add support for sub locales - initial support for PT and ZH
2024-01-23 20:49:06 +00:00
Dev
dbb4bc5f03
Add missing mods to Ops-Core FAST ballistic helmet
on PMCs
2024-01-23 20:25:27 +00:00
Dev
67e5e61d3c
Adjust easy start profiles to be level 15
2024-01-23 15:48:08 +00:00
Dev
86d34e3efe
Remove dupe data from ragfair json
2024-01-23 13:25:22 +00:00
Dev
b3738b03d9
i hate commas
2024-01-23 13:21:22 +00:00
Dev
bcf506a57b
Fix json issue
2024-01-23 13:03:04 +00:00
Dev
8816e27298
Add balaclava to vengeful zryachiy
2024-01-23 12:45:49 +00:00
Dev
27bc7cfa6e
Fixed armors being listed with plates above the allowed level on flea
2024-01-23 11:42:47 +00:00
Dev
c51cce269f
Workaround for sandbox map having Level 20 max
2024-01-23 10:02:06 +00:00
Dev
5b296975e8
Merge branch '3.8.0' of https://dev.sp-tarkov.com/SPT-AKI/Server into 3.8.0
2024-01-21 17:54:09 +00:00
Dev
9c9d3fb5a5
Cleanup of scavcase reward blacklist
2024-01-21 17:53:59 +00:00
CZPZ
1551a5e793
feature: add probability for extra rep gain on pmc kills as pscav ( !204 )
...
Feel free to rename everything.
We can also use the new function from randomutil and replace code block below on InsuranceController.ts
```
const maxRoll = 9999;
const conversionFactor = 100;
const returnChance = this.randomUtil.getInt(0, maxRoll) / conversionFactor;
const traderReturnChance = this.insuranceConfig.returnChancePercent[traderId];
const roll = returnChance >= traderReturnChance;
```
I killed 2 PMCs with 100% chance and gained 0.07 rep (rounding issue probably somewhere else)
![image](/attachments/00f00922-eb18-4fdc-8958-129b680af704)
Some JS problems :S
![image](/attachments/dcbeb1d1-2ee3-4809-890e-e19fe3190840)
Implements: https://dev.sp-tarkov.com/SPT-AKI/Issues/issues/150
Co-authored-by: alimoncul <alimoncul@gmail.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/204
Co-authored-by: CZPZ <czpz@noreply.dev.sp-tarkov.com>
Co-committed-by: CZPZ <czpz@noreply.dev.sp-tarkov.com>
2024-01-21 17:39:37 +00:00
Dev
c68c9a72fb
Refactor handleScavCase()
to use addItemToStash()
...
blacklist soft armor inserts from scavcase rewards
2024-01-21 16:40:14 +00:00
Dev
8e232e8250
Update bot data
2024-01-21 12:00:16 +00:00
Dev
e7512872ef
Add missing equipment mods to PMCs
2024-01-21 09:37:11 +00:00
DrakiaXYZ
e31c52e7ff
Add BTR config options ( !203 )
...
Also add the cover service entry
Co-authored-by: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/203
Co-authored-by: DrakiaXYZ <drakiaxyz@noreply.dev.sp-tarkov.com>
Co-committed-by: DrakiaXYZ <drakiaxyz@noreply.dev.sp-tarkov.com>
2024-01-21 08:46:12 +00:00
Dev
399bbb2e3b
Add framework for BTR config
2024-01-20 18:47:57 +00:00
Dev
446b1ef4f9
Remove duplicate locale key/value
2024-01-20 18:08:25 +00:00
Dev
80fdaf65e6
Finalise fence changes
2024-01-20 17:56:19 +00:00
Dev
b5bca2c49b
Add missing property to airdrop config
2024-01-20 09:30:18 +00:00
Dev
879af0377a
Adjust airdrop values
2024-01-19 21:19:14 +00:00
Dev
4cb2d8171e
Fix JSON issues with ravangezryachiyevent
2024-01-19 09:37:01 +00:00
Dev
310762d66d
Refactor airdrop loot generation to account for armor plate changes
2024-01-18 23:25:08 +00:00
Kaeno
01b608d8b2
Adjust bot difficulty for ground zero
2024-01-18 22:03:16 +00:00
Dev
ed6ba36ff3
Update map loot
2024-01-18 21:25:31 +00:00
Dev
a3e4f6141d
Adjust GIFTER_ADDITIONAL_GIFTS
setting
2024-01-18 12:08:19 +00:00