Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions docs/dwpnet2/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ authors:
- name: roaxcean
link: https://github.com/roaxcean
avatar: https://avatars.githubusercontent.com/u/219159259
- name: Dunbars123
link: https://github.com/michaeldun123
avatar: https://avatars.githubusercontent.com/u/42805814
categories:
- Whitehill
- DWProx
Expand Down Expand Up @@ -489,7 +492,7 @@ Example:
```

!!!danger Important Note
This is strictly dor demo purposes, and **will allow** anyone to play your doors.
This is strictly for demo purposes, and **will allow** anyone to play your doors.
!!!


Expand Down Expand Up @@ -563,7 +566,8 @@ Example:

---


!!!success Configuration Complete!

Not working? Make sure you followed the syntax, or visit our [FAQ Page](/faq.md) for help, or contact Whitehill Support via our [Discord server](https://discord.whitehill.group/) for further assistance.
!!!
!!!
63 changes: 63 additions & 0 deletions docs/dwpnet2/readerconfig.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
---
icon: tools
label: Reader Configuration
order: 95
tags: [Configuration]
image: /static/assets/whg_headbanner.png
authors:
- name: Dunbars123
link: https://github.com/michaeldun123
avatar: https://avatars.githubusercontent.com/u/42805814
categories:
- Whitehill
- DWProx
- Net2+
---
# Configuring Your Net2+ Readers

![](/static/assets/banners/whg_net2config.png)

Welcome to customization heaven. (#3)

!!!warning
This page assumes the user has basic knowledge of the Roblox scripting language, Luau.
!!!

---

## Reader Settings

### Cards
=== `{ number }`
A table of Access Levels that are whitelisted to use the reader **At Any Time**.

---

Example:
```lua
["Cards"] = {"1", "2", "3", "4", "5", "0"},
```

===

### WhitelistEnabled
=== `boolean`

Whether to enable or disable the reader whitelist.

---

Example:
```lua
["WhitelistEnabled"] = false,
```


===

---

!!!success Configuration Complete!

Not working? Make sure you followed the syntax, or visit our [FAQ Page](/faq.md) for help, or contact Whitehill Support via our [Discord server](https://discord.whitehill.group/) for further assistance.
!!!
108 changes: 108 additions & 0 deletions docs/dwpv3/readerconfig.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
---
icon: tools
label: Reader Configuration
order: 95
tags: [Configuration]
image: /static/assets/whg_headbanner.png
authors:
- name: Dunbars123
link: https://github.com/michaeldun123
avatar: https://avatars.githubusercontent.com/u/42805814
categories:
- Whitehill
- DWProx
- V3
---
# Configuring Your V3 Readers

![](/static/assets/banners/whg_v3config.png)

Welcome to customization heaven. (#3)

!!!warning
This page assumes the user has basic knowledge of the Roblox scripting language, Luau.
!!!

---

## Reader Settings

### Cards
=== `{ number }`
A table of Access Levels that are whitelisted to use the reader **At Any Time**.

---

Example:
```lua
["Cards"] = {"1", "2", "3", "4", "5", "0"},
```

===

### WhitelistEnabled
=== `boolean`

Whether to enable or disable the reader whitelist.

---

Example:
```lua
["WhitelistEnabled"] = false,
```


===

---


## Custom Reader Settings

!!!warning
These settings apply only to the **Custom Reader**, it will not work on default readers
!!!

```lua
-- / CUSTOM READER SETTINGS / --
["LEDAccept"] = function(Reader)
Reader.LEDG.Transparency = 0
Reader.LEDS.Transparency = 1
Reader.LEDR.Transparency = 1
end,
["LEDIdle"] = function(Reader)
Reader.LEDG.Transparency = 1
Reader.LEDS.Transparency = 0
Reader.LEDR.Transparency = 1
end,
["LEDDeny"] = function(Reader)
Reader.LEDG.Transparency = 1
Reader.LEDS.Transparency = 1
Reader.LEDR.Transparency = 0
end,
["LEDLocked"] = function(Reader)
Reader.LEDG.Transparency = 1
Reader.LEDS.Transparency = 1
Reader.LEDR.Transparency = 0
end,

["SoundAccept"] = function(Reader)
Reader.Body.SoundAccept:Play()
end,
["SoundDeny"] = function(Reader)
Reader.Body.SoundDeny:Play()
end,

-- / SYSTEM / --
["ReaderSpec"] = "CUSTOM" -- DO NOT TOUCH THIS! System Will Break
}
return Settings
```

---

!!!success Configuration Complete!

Not working? Make sure you followed the syntax, or visit our [FAQ Page](/faq.md) for help, or contact Whitehill Support via our [Discord server](https://discord.whitehill.group/) for further assistance.
!!!