-
Notifications
You must be signed in to change notification settings - Fork 1
/
indexscripts.html
263 lines (236 loc) · 12.1 KB
/
indexscripts.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<!DOCTYPE html>
<html lang="en">
<head>
<title>MyNameMadeYouSmiley's SFW Scripts</title> <!-- Change this to your username -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="images/icons/favicon.ico" />
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/perfect-scrollbar/perfect-scrollbar.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="css/util.css">
<link id="pagestyle" rel="stylesheet" type="text/css" href="css/main.css">
<!--===============================================================================================-->
<!--===============================================================================================-->
</head>
<!-- Do not change anything inside the <head></head> tag other than the title. If you do, things will probably explode -->
<body>
<script> // Script that creates all of the functional part of the page. Do not modify anything inside this tag unless you really know what you're doing
(function (document) {
'index.html';
var mode = localStorage['mode']; // Gets current light/dark setting
function swapStyleSheet(button) { // Swaps light/dark mode on button click
if (mode == "dark") {
document.getElementById("pagestyle").setAttribute("href", "css/mainlight.css");
mode = "light";
localStorage['mode'] = 'light';
button.innerHTML = "Dark Mode";
}
else if (mode == "light") {
document.getElementById("pagestyle").setAttribute("href", "css/main.css");
mode = "dark";
localStorage['mode'] = 'dark';
button.innerHTML = "Light Mode";
}
}
function keepStyleSheet(button) { // Decides if the site will be on light or dark theme depending on the previous setting
if (mode == "light") {
document.getElementById("pagestyle").setAttribute("href", "css/mainlight.css");
mode = "light";
localStorage['mode'] = 'light';
button.innerHTML = "Dark Mode";
}
else if (mode == "dark") {
document.getElementById("pagestyle").setAttribute("href", "css/main.css");
mode = "dark";
localStorage['mode'] = 'dark';
button.innerHTML = "Light Mode";
}
$('td').each(function () { // Marks Age, Beast and Rape tags as red. If you don't want this feature, delete everything from the $
$(this).html(
$(this).html()
.replace(
/(?<!-)(\[\brape\b\])(?!([^<]+)?>)(?!-)/ig,
'<span style="color:#ff4747;">$1</span>'
)
.replace(
/(?<!-)(\[\bage\b\])(?!([^<]+)?>)(?!-)/ig,
'<span style="color:#ff4747;">$1</span>'
)
.replace(
/(?<!-)(\[\bbeast\b\])(?!([^<]+)?>)(?!-)/ig,
'<span style="color:#ff4747;">$1</span>'
)
);
}); // Until here. If you want to mark other tags as red too, add more replaces after the last one and switch the word between the /b's for
// the one you want
}
var LightTableFilter = (function (Arr) {
var _input;
function _onInputEvent(e) { // A lot of stuff to make the table filter work
_input = e.target;
var tables = document.getElementsByClassName(_input.getAttribute('data-table'));
Arr.forEach.call(tables, function (table) {
Arr.forEach.call(table.tBodies, function (tbody) {
Arr.forEach.call(tbody.rows, _filter);
});
});
}
function _filter(row) {
var text = row.textContent.toLowerCase(), val = _input.value.toLowerCase();
row.style.display = text.indexOf(val) === -1 ? 'none' : 'table-row';
}
return {
init: function () {
var inputs = document.getElementsByClassName('light-table-filter');
Arr.forEach.call(inputs, function (input) {
input.oninput = _onInputEvent;
});
}
};
})(Array.prototype);
document.addEventListener('readystatechange', function () { // Adds table filter, event listeners and calls the initial page settings
if (document.readyState === 'complete') {
LightTableFilter.init();
var a = document.getElementById("modechange");
a.innerHTML = "Light Mode";
a.onclick = function () { swapStyleSheet(this); };
if (mode != "dark" && mode != "light") {
mode = "dark";
localStorage['mode'] = 'dark';
}
keepStyleSheet(a);
}
});
})(document);
</script>
<header>
<div id="topbuttons"><button name="modechange" id="modechange"></button><br>
<a href=index.html><button name="scriptsoraudios" id="scriptsoraudios">NSFW Scripts</button></a><br>
<a href=requests.html><button name="requests" id="requests">My Requests</button></a></div>
</header>
<div class="limiter">
<div class="container-table100">
<div class="wrap-table100">
<h1>MyNameMadeYouSmiley's SFW Scripts</h1><br><br><br><br>
<div class="table100">
<table class="order-table"><br /><br />
<thead>
<tr class="table100-head">
<th class="column1">Script Title</th>
<th class="column2">Synopsis</th>
<th class="column3">Tags</th>
<th class="column4">Fills</th>
</tr>
</thead>
<tbody>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/pillowtalkaudio/comments/jliqsh/script_offera4a_you_can_do_this_i_know_you_can/" target="_blank">[A4A]
You Can Do This, I Know You Can</a> </td>
<td class="column2">
<p>Just some motivating and encouraging words for those who are going through some things and for those who have doubts about achieving their goals.</p>
</td>
<td class="column3">
<p><b>[Encouragement] [Motivation] [Comfort] [Reassurance] [Chase Your Dreams] [Don't Give Up] [You Got The Power] [Don't Let Anyone Tell You Otherwise] [SFW]</b></p>
</td>
<td class="column4"><a href="https://www.reddit.com/r/pillowtalkaudio/comments/jmcwp1/script_fillf4a_you_can_do_this_i_know_you_can/" target="_blank">AriellaContras</a><br><br>
<a
href="https://www.reddit.com/r/pillowtalkaudio/comments/jser6q/m4a_you_can_do_this_i_know_you_can_motivation/" target="_blank">MrFoxhoundAudio</a>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/pillowtalkaudio/comments/irjz9t/script_offerf4m_your_roommate_is_a_bloody_vampire/" target="_blank">[F4M]
Your Roommate Is a Bloody Vampire</a> </td>
<td class="column2">
<p>Thunderstorm woke you up late at night and you went to the kitchen for some snack. Your roommate happens to be there and spots you.
You both talk for a little bit. Soon everything goes left.. and your roommate reveals her true self.
She is hungry for blood again, but she don't want to hurt other people anymore.. so YOU will be her meal from now on.. and you have no choice at all, she's going to feed on you.</p>
</td>
<td class="column3">
<p><b>[Vampire] [ASMR] [Roommates] [SFX] [Thunderstorm] [Tape] [Tied To a Chair] [Biting] [Sucking Blood] [Losing Control] [Getting Drunk Off Of Your Blood] [Moaning] [AFTERCARE] [Kisses] [Shushing] [Helping You Fall Asleep] [SFW]</b></p>
</td>
<td class="column4"><a href="https://www.reddit.com/user/MonicaKellyAudio/comments/iyebv2/your_roommate_is_a_vampire_new_roleplay/" target="_blank">MonicaKellyAudio</a>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/GWAScriptGuild/comments/i8xft5/script_offera4a_you_will_get_through_this_anxiety/" target="_blank">[A4A]
You Will Get Through This</a> </td>
<td class="column2">
<p>You will get through this, just give yourself a chance. Try to think positive instead of negative. You are unique, beautiful and just good as you are. You don't need to try to fit in, you're good enough. Cuddle with me and leave the bad thoughts behind you for some time.</p>
</td>
<td class="column3">
<p><b>[Anxiety] [Depression] [Comforting] [Positivity] [Encouragement] [Ensuring] [You Are Good Enough] [You Are Beautiful] [Cuddles] [Rest With Me] [NO SEX]</b></p>
</td>
<td class="column4"><a
href="https://www.reddit.com/r/gonewildaudio/comments/i98yk1/m4a_you_will_get_through_this_anxiety_depression/" target="_blank">[M4A] thegentlegiantsounds</a><br><br>
<a
href="https://www.reddit.com/r/pillowtalkaudio/comments/ia0eig/f4a_you_will_get_through_this_comforting/" target="_blank">[F4A] POVscribe</a><br><br>
<a
href="https://www.reddit.com/r/pillowtalkaudio/comments/ibhi6o/m4a_script_fill_you_will_get_through_this/" target="_blank">[M4A] Rynosoar94</a><br><br>
<a
href="https://www.youtube.com/watch?v=rzylVaypr88" target="_blank">[F4A] BabyPinkASMR</a><br><br>
<a
href="https://www.reddit.com/r/gonewildaudio/comments/is6swh/script_fill_a4a_you_will_get_through_this_anxiety/" target="_blank">[F4M] Vixumii</a>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://www.reddit.com/r/GonewildAudible/comments/cquzls/script_offerf4m_dont_kill_yourself_dont_do_it_to/" target="_blank">[F4M]
Don't kill yourself, don't do it to me</a> </td>
<td class="column2">
<p>Your friend knows you're depressed and she knows how tough it can get sometimes...
but remember you always got her to hear you out and help you with your problems.</p>
</td>
<td class="column3">
<p><b>[Depression] [Anxiety] [Comforting] [Advices] [Friends] [Cuddles] [No Sex] [SFW]</b></p>
</td>
<td class="column4"><font color="#FF0000">None Yet</font>
</td>
</tr>
<tr>
<td class="column1"><a
href="https://pastebin.com/f1nUZGtP" target="_blank">[F4A] Crying is okay</a> </td>
<td class="column2">
<p>Your girlfriend knows you're stressed and knows what you're going through.
She lets you know that crying is okay and encourages you to do it while she comforts you.</p>
</td>
<td class="column3">
<p><b>[Girlfriend] [Anxiety] [Comforting] [Shushing] [Kisses] [Ear Licking] [No Sex] [SFW]</b></p>
</td>
<td class="column4"><a
href="https://youtu.be/MCNQ-njtJdQ" target="_blank">BabyPinkASMR</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<footer>
Template developed by AngelMain
</footer>
<!-- For the love of god don't change those-->
<!--===============================================================================================-->
<script src="vendor/jquery/jquery-3.2.1.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/bootstrap/js/popper.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/select2/select2.min.js"></script>
<!--===============================================================================================-->
<script src="js/main.js"></script>
</body>
</html>