Skip to content

Commit

Permalink
Changes to readme and documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Scrivener07 committed Oct 14, 2018
1 parent 3ed3698 commit 0453777
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
6 changes: 4 additions & 2 deletions Data/Scripts/Source/FO4_Games/Games/Blackjack/Deck.psc
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,10 @@ EndFunction
bool Function Shuffle()
{Shuffles all cards within the deck with FX.}
If (parent.Shuffle())

int index = 0
; TODO: I am not happy with the speed here. Too many nasty loops.
; TODO: Disabling my card references causes them to reset back to their editor positions.

int index = 0 ; Hides the deck cards by disabling each reference.
While (index < Cards.Length)
Cards[index].Reference.Disable()
index += 1
Expand Down
1 change: 0 additions & 1 deletion Data/Scripts/Source/FO4_Games/Games/Blackjack/Main.psc
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ State Wagering
If (SendPhase(self, WageringState, Begun))
Utility.Wait(TimeDelay)


BeginState(Dealer, WageringState)
BeginState(Human, WageringState)

Expand Down
4 changes: 2 additions & 2 deletions Documents/Nexus.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
| Mod Category | Gameplay Effects and Changes |
| Mod Name | Barstool Games |
| Mod Language | English |
| Current Version | 0.1.2.1 |
| Current Version | 1.1.0 |
| Author or Team | Scrivener07 and TheWhiteCollarPlayers |
| Brief Overview | Brings classic games such as Blackjack to the world of Fallout 4. |
| Classification | None |
Expand All @@ -19,7 +19,7 @@
| Download on GitHub | https://github.com/Scrivener07/FO4_Games/releases |

```
[size=6]What's New: Version 0.1.2.1[/size]
[size=6]What's New: Version 1.1.0[/size]
[size=3]-A brand new custom card table created by the talented [url=https://www.nexusmods.com/fallout4/users/10204660]Corvalho[/url]. This one is much smaller and fits in nearly every home.
[/size]-Support for Nuka World and Far Harbor locations, currently available as individual plugins.
-A plethora of bug fixes and optimizations. Expand the spoiler section below for details.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ Check out the [video playlist](https://www.youtube.com/playlist?list=PLdEgiq4kaj

#### Installation
* Start Fallout 4 with `Games.esm` enabled within your load order.
* Enable `Games_WhiteCollar.esp` for classic games implemented in the vanilla game world.
* Enable `BarstoolGames.esm` for classic games implemented in the vanilla game world.

#### Playing
Use the in-game developer console for access to the projects testing cell. Use the console command `coc GamesTestCell`. To add caps, use the console command `Player.AddItem F 100`. If `Games_WhiteCollar.esp` is enabled you may play games with certain NPCs or build game tables in settlements.
Use the in-game developer console for access to the projects testing cell. Use the console command `coc GamesTestCell`. To add caps, use the console command `Player.AddItem F 100`. If `BarstoolGames.esm` is enabled you may play games with certain NPCs or build game tables in settlements.

## Contributing
Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on contributing to this project.
Expand Down

0 comments on commit 0453777

Please sign in to comment.