mirror of
https://gitgud.io/BondageProjects/Bondage-College.git
synced 2025-04-14 12:29:15 +00:00
When sending an ownership request, remind the sender to friend their sub
This commit is contained in:
parent
1a185e0318
commit
4e112ad8d6
2 changed files with 8 additions and 1 deletions
BondageClub/Screens
|
@ -183,6 +183,7 @@ NotificationTitleLarp,LARP - Your turn
|
|||
NotificationTitleTest,Test Notification
|
||||
OpacityLabel,Change Opacity
|
||||
OptionNeedsToBeBought,Option needs to be bought
|
||||
OwnerProposeSub,<b>You've asked TargetCharacterName to become your submissive. Don't forget to friend them if they accept!</b>
|
||||
Page,Page
|
||||
PandoraActivityBondage,A Pandora guard puts TargetCharacterName in new restraints.
|
||||
PandoraActivitySpank,A Pandora guard spanks TargetCharacterName butt many times.
|
||||
|
|
|
|
@ -5512,9 +5512,15 @@ function ChatRoomSendOwnershipRequest(RequestType) {
|
|||
CharacterChangeMoney(Player, -100);
|
||||
DialogChangeReputation("Dominant", 10);
|
||||
}
|
||||
if ((ChatRoomOwnershipOption == "CanEndTrial") && (RequestType == "Accept")) DialogChangeReputation("Dominant", -20);
|
||||
if ((ChatRoomOwnershipOption == "CanEndTrial") && (RequestType == "Accept")) {
|
||||
DialogChangeReputation("Dominant", -20);
|
||||
}
|
||||
ChatRoomOwnershipOption = "";
|
||||
ServerSend("AccountOwnership", { MemberNumber: CurrentCharacter.MemberNumber, Action: RequestType });
|
||||
if (RequestType === "Propose") {
|
||||
const msg = InterfaceTextGet("OwnerProposeSub").replace("TargetCharacterName", CharacterNickname(CurrentCharacter));
|
||||
ChatRoomSendLocal(msg);
|
||||
}
|
||||
if (RequestType == "Accept") DialogLeave();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue