Skip to content

Commit

Permalink
more scripting updates + cool stuff from ASS
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitawastaken committed Dec 17, 2023
1 parent 19bd31f commit e85f14f
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 17 deletions.
4 changes: 1 addition & 3 deletions req/mission_script/alex_1.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ return {
},
-- added chance to cook each time the evaluation runs and fails, vanilla is 10%
[100723] = {
values = {
chance = 20,
},
chance = 20
},
-- waiter ! waiter ! more gangsters please !
[101520] = {
Expand Down
4 changes: 1 addition & 3 deletions req/mission_script/branchbank.lua
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
return {
-- Special ambush chance increase
[103072] = {
values = {
chance = 75
}
chance = 75
},
[105563] = {
values = {
Expand Down
43 changes: 43 additions & 0 deletions req/mission_script/dah.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,49 @@ return {
[100614] = {
set_ponr_state = true
},
[103969] = {
reinforce = {
{
name = "atrium1",
force = 2,
position = Vector3(-4000, -2200, 750),
},
{
name = "atrium2",
force = 2,
position = Vector3(-2750, -2200, 750),
},
{
name = "atrium3",
force = 2,
position = Vector3(-2750, -1000, 750),
},
{
name = "atrium4",
force = 2,
position = Vector3(-4000, -1000, 750),
},
},
},
[101342] = {
reinforce = {
{
name = "vault_entrance",
force = 3,
position = Vector3(-3250, -2850, 0),
},
{
name = "atrium_lower1",
force = 3,
position = Vector3(-3800, -800, 400),
},
{
name = "atrium_lower2",
force = 3,
position = Vector3(-2700, -800, 400),
},
},
},
-- slow down vault spawnpoints
[104822] = {
values = {
Expand Down
10 changes: 7 additions & 3 deletions req/mission_script/man.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ return {
managers.network:session():send_to_peers_synched("give_equipment", self._values.equipment, self._values.amount)
end
},
-- this disables multiple spawn points when limo lands on the balcony, which is weird, to say the least
[101898] = {
values = {
enabled = false,
},
},
-- No code chance increase on fail or knockout
[102865] = {
on_executed = {
Expand All @@ -35,9 +41,7 @@ return {
},
-- Code chance increase amount
[102887] = {
values = {
chance = 10
}
chance = 10
},
-- Faint duration increase
[102860] = {
Expand Down
4 changes: 1 addition & 3 deletions req/mission_script/red2.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ return {
enemy = Idstring("units/payday2/characters/ene_tazer_1/ene_tazer_1")
},
[104000] = {
values = {
chance = 1
}
chance = 100
},
[100225] = {
values = {
Expand Down
8 changes: 3 additions & 5 deletions req/mission_script/run.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,16 @@ return {
values = {
enabled = true,
difficulty_overkill_145 = true, -- ovk and below filter
chance = 100
}
},
chance = 100
},
[103590] = {
values = {
difficulty_overkill_145 = false -- eclipse only filter
}
},
[103593] = {
values = {
chance = 100
}
chance = 100
},
[100036] = {
spawn_instigator_ids = {
Expand Down

0 comments on commit e85f14f

Please sign in to comment.