-
Notifications
You must be signed in to change notification settings - Fork 10
Livingwood Chastity Updated to include Bra and Shared Parameters. #110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
5513733
Livingwood Chastity Updated to include Bra and Shared Parameters.
Pyra-Tech 15460c9
Merge branch 'Enraa:main' into pyra_chastity
Pyra-Tech f4b7e75
Livingwood Reference Updates
Pyra-Tech 247cac0
Merge branch 'pyra_chastity' of https://github.com/Pyra-Tech/Gagbot i…
Pyra-Tech dfbd0a7
Updated Livingwood to resolve issues with fetching types and functions.
Pyra-Tech e825f06
Added Livingwood Texts and Blacklist it from those that mention Steel
Pyra-Tech 15ab338
Resolved issues with checks.
Pyra-Tech ad1634c
Added Blocking function on Steel Chastity Bra text, and added another…
Pyra-Tech 3522aa8
Merge branch 'Enraa:main' into pyra_chastity
Pyra-Tech 78e3429
Minor Grammar changes and update to Bra text
Pyra-Tech 1b700ac
Merge branch 'pyra_chastity' of https://github.com/Pyra-Tech/Gagbot i…
Pyra-Tech 7befd49
Merge branch 'main' into pyra_chastity
Pyra-Tech 5d7466d
Added Defensive code to text checks
Pyra-Tech a3133dd
Small updates to Livingwood Belt. Testing completed without throwing …
Pyra-Tech aae4eb2
Changes ported to bra
Pyra-Tech 6348f88
When the World Needed Release the most...
Pyra-Tech 87090aa
Merge branch 'Enraa:main' into pyra_chastity
Pyra-Tech 105123e
Minor Tweak to Earth to allow faster decay at low levels
Pyra-Tech f5a907f
Removed Console.log
Pyra-Tech c724edd
Merge branch 'Enraa:main' into pyra_chastity
Pyra-Tech a7e5c23
Seal Texts Stage 1
Pyra-Tech dde49bb
Seal Texts Stage 2
Pyra-Tech 647c69c
Merge branch 'Enraa:main' into pyra_chastity
Pyra-Tech 9bd4ee6
Corrected Livingwood logic to check for undefined values
Enraa f32f646
Merge branch 'pyra_chastity' of https://github.com/Pyra-Tech/Gagbot i…
Enraa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -6,7 +6,7 @@ const { getUserVar, setUserVar } = require("../../functions/usercontext") | |||||
| // or every 15 minutes, until the wearer successfully orgasms. | ||||||
| // | ||||||
| // This code is copied from chastity/belt/belt_livingwood.js and should be reviewed. Commented out for now. | ||||||
| /* | ||||||
|
|
||||||
| exports.growthCoefficient = (data) => { return 1 } | ||||||
| exports.decayCoefficient = (data) => { return 0.1 } | ||||||
| exports.minVibe = (data) => { | ||||||
|
|
@@ -21,13 +21,16 @@ exports.onFailedOrgasm = function(data) { | |||||
| setUserVar(data.userID, "livingwoodvibe", Math.min((this.minVibe() + 1), 20)); | ||||||
| } | ||||||
| exports.onEquip = (data) => { | ||||||
| setUserVar(data.userID, "livingwoodvibe", 0); | ||||||
| setUserVar(data.userID, "livingwoodbelt", Date.now()); | ||||||
| if (getUserVar(data.userID, "livingwoodvibe") == {}) setUserVar(data.userID, "livingwoodvibe", 0); | ||||||
| if (getUserVar(data.userID, "livingwoodbelt") == {}) setUserVar(data.userID, "livingwoodbelt", Date.now()); | ||||||
| } | ||||||
| exports.onUnequip = (data) => { | ||||||
| setUserVar(data.userID, "livingwoodvibe", 0); | ||||||
| setUserVar(data.userID, "livingwoodbelt", Date.now()); | ||||||
| }*/ | ||||||
| // Check if user is wearing a Livingwood Belt otherwise Null Out Vars | ||||||
| if (getChastity(data.userID).chastitytype.includes("Livingwood")) { | ||||||
|
||||||
| if (getChastity(data.userID).chastitytype.includes("Livingwood")) { | |
| if (!getChastity(data.userID)?.chastitytype == "belt_livingwood") { |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.