This repository has been archived by the owner on Mar 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.html
363 lines (356 loc) · 19.3 KB
/
faq.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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<!DOCTYPE html>
<html lang="en">
<head>
<title>StandoffRoll</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
<link rel="stylesheet" type="text/css" href="assets/css/animations.css">
<link rel="stylesheet" type="text/css" href="assets/css/adaptive.css">
<!--FONTS-->
<link href="https://fonts.googleapis.com/css?family=Exo+2:400,500,600,700&display=swap" rel="stylesheet">
<!--OTHER-->
</head>
<body>
<header>
<div class="topbar">
<div class="topbar__tools">
<img src="assets/img/logo.png" class="topbar__logo">
<div class="topbar__volume">
<span class="built-icon__volume"></span>
<span class="built-icon__volume--stick-across"></span>
</div>
<div class="dropdown-menu button">
<div class="dropdown-menu__current">English</div>
<div class="dropdown-menu__menu">
<div class="dropdown-menu__unit">English</div>
<div class="dropdown-menu__unit">Russian</div>
</div>
</div>
</div>
<nav class="topbar-menu">
<a href="#" class="topbar-menu__item topbar-menu__item--selected"><span
class="built-icon__house"></span>Home</a>
<a href="#" class="topbar-menu__item"><span class="built-icon__bag"></span>Shop</a>
<a href="#" class="topbar-menu__item"><span class="built-icon__time-line"></span>Timeline</a>
<a href="#" class="topbar-menu__item"><span class="built-icon__chart"></span>Top</a>
<a href="#" class="topbar-menu__item"><span class="built-icon__bookmark"></span>FAQ</a>
</nav>
<div class="topbar-profile">
<img src="assets/img/avatar.png" class="topbar-profile__avatar">
<div class="topbar-profile__info">
<div class="topbar-profile__username">Geory</div>
<div class="topbar-profile__balance">
<span class="topbar-profile__coloured">Баланс:</span>
<span>1.0 P</span>
</div>
</div>
<div class="topbar-profile__deposit button1">Deposit</div>
</div>
</div>
</header>
<main>
<div class="sidebar">
<div class="sidebar__part">
<div class="sidebar__title">Playing rooms</div>
<nav class="sidebar__menu">
<div class="sidebar__unit sidebar__unit--selected">
<span class="sidebar__unit--name">Default</span>
<span class="sidebar__unit--desc">Min. bet 10</span>
</div>
<div class="sidebar__unit">
<span class="sidebar__unit--name">Low mode</span>
<span class="sidebar__unit--desc">Max. bet 10</span>
</div>
<div class="sidebar__unit">
<span class="sidebar__unit--name">High mode</span>
<span class="sidebar__unit--desc">Min. bet 1000</span>
</div>
</nav>
</div>
<div class="sidebar__part">
<div class="sidebar__title">Last play</div>
<div class="sidebar-facts">
<div class="sidebar-facts__user">
<img src="assets/img/player.png" class="sidebar-facts__user-image">
<span class="sidebar-facts__username">Interesting</span>
</div>
<div class="sidebar-facts__stats">
<section>
<span class="gray">Benefit</span>
<span class="green">8961 $</span>
</section>
<section>
<span class="gray">Chance</span>
<span class="green">1%</span>
</section>
</div>
</div>
</div>
<div class="sidebar__part">
<div class="sidebar__title">Today's lucky man</div>
<div class="sidebar-facts">
<div class="sidebar-facts__user">
<img src="assets/img/player.png" class="sidebar-facts__user-image">
<span class="sidebar-facts__username">Interesting</span>
</div>
<div class="sidebar-facts__stats">
<section>
<span class="gray">Benefit</span>
<span class="green">8961 $</span>
</section>
<section>
<span class="gray">Chance</span>
<span class="green">1%</span>
</section>
</div>
</div>
</div>
</div>
<div class="stdf2-page">
<div class="stdf2-stats">
<div class="stdf2-stats__one">
<span class="stdf2-stats__digits">481</span>
<span class="stdf2-stats__words">Online now</span>
</div>
<div class="stdf2-stats__one">
<span class="stdf2-stats__digits">174</span>
<span class="stdf2-stats__words">Plays \ Today</span>
</div>
<div class="stdf2-stats__one">
<span class="stdf2-stats__digits">1 678</span>
<span class="stdf2-stats__words">Plays \ All time</span>
</div>
<div class="stdf2-stats__one">
<span class="stdf2-stats__digits">14 103 $</span>
<span class="stdf2-stats__words">Last play</span>
</div>
<div class="stdf2-stats__one">
<span class="stdf2-stats__digits">419 851 $</span>
<span class="stdf2-stats__words">Biggest benefit</span>
</div>
</div>
<div class="stdf2-page__piece faq">
<div class="faq__row">
<div class="faq__header">
<span class="faq__header--icon">+</span>
<div class="faq__header--text">How do I get the skin from the site?</div>
</div>
<div class="faq__summary">
You need to go to your <a href="/profile" class="s-card" target="_blank"> PROFILE </a> on your
site and set
your profile picture as in your Standoff 2 profile, then select the item you want to withdraw
and click
"Withdraw"Next, a window will open with an instruction that states that you need to put any
cheap skin from
your inventory in Standoff 2, whose sales on the market do not exceed 5.000 slots, in the worst
case, 10,000
slots for the price that will be written in the window that opens, for example, if an item costs
1 dollar,
then the price may be indicated there 100.01. is called in kopecks to make it easier for the
site moderators
to find your item in the game, after which our moderators will buy your cheapest item on the
market in
Standoff 2 at the price of the one you won from the case on the site.
</div>
</div>
<div class="faq__row">
<div class="faq__header">
<span class="faq__header--icon">+</span>
<div class="faq__header--text">How to replenish the balance on the site?</div>
</div>
<div class="faq__summary">
First, log in via VK, Twitch, YouTube, in the upper right corner click on "+", or go to your
profile and
click "Top up". Then in the window that opens, enter the promotional code (if you have one), as
well as
indicate the amount to be replenished, then you will be transferred to the site where you will
have to
choose a convenient payment method, then after successful payment the money will be credited to
your site
balance instantly, but sometimes there may be delays of the payment system up to two hours.
</div>
</div>
<div class="faq__row">
<div class="faq__header">
<span class="faq__header--icon">+</span>
<div class="faq__header--text">How to open cases and win skins?</div>
</div>
<div class="faq__summary">
Go to the main page, select any case, open it and erase three cards with the same skin to get
this skin, or
if you do not guess, you will get a random and guaranteed prize cheaper than the cost of the
case.
</div>
</div>
<div class="faq__row">
<div class="faq__header">
<span class="faq__header--icon">+</span>
<div class="faq__header--text">What is an extra attempt when opening a case?</div>
</div>
<div class="faq__summary">
To get a skin, you need to erase three cards with the same skin, or if you do not guess three
skins and
guess only two, you can buy an additional try for 0.08 dollar.
</div>
</div>
<div class="faq__row">
<div class="faq__header">
<span class="faq__header--icon">+</span>
<div class="faq__header--text">How to withdraw money from the site?</div>
</div>
<div class="faq__summary">
Our site is not a game of chance, and even more so is not a casino. Money cannot be withdrawn
from the
balance, you can only win skins and withdraw them to your Standoff 2. inventory
</div>
</div>
<div class="faq__row">
<div class="faq__header">
<span class="faq__header--icon">+</span>
<div class="faq__header--text">What is the logo of another site located on the top left?</div>
</div>
<div class="faq__summary">
This is a site from the creators of our project, namely the site for the opening of cases -
StandoffCase.ru
</div>
</div>
<div class="faq__row">
<div class="faq__header">
<span class="faq__header--icon">+</span>
<div class="faq__header--text">Why can’t you display a skin cheaper than 30 gold?</div>
</div>
<div class="faq__summary">
This is done specifically so that we send winnings to site players faster. As soon as exchanges
appear in
Standoff 2, we will immediately add the ability to display skins from 0.01 gold!
</div>
</div>
<div class="faq__row">
<div class="faq__header">
<span class="faq__header--icon">+</span>
<div class="faq__header--text">Am I or does the site assume a commission on the market in the
game?</div>
</div>
<div class="faq__summary">
Our site itself takes on a commission of 20% of the market in Standoff 2, so you get your
winnings in full
and without any loss.
</div>
</div>
<div class="faq__row">
<div class="faq__header">
<span class="faq__header--icon">+</span>
<div class="faq__header--text">During what time will a gold win come to me?</div>
</div>
<div class="faq__summary">
Usually, our moderators put Golda into the game within 5 minutes, up to 1 hour, but at the
moment there are
a lot of people playing on our site, so there may be delays in conclusions up to 24 hours.
</div>
</div>
<div class="faq__row">
<div class="faq__header">
<span class="faq__header--icon">+</span>
<div class="faq__header--text">Can I make a contract on the site?</div>
</div>
<div class="faq__summary">
Yes, you can make contracts on the site, for this, go to <a href="/contract" class="s-card"
target="_blank">
CONTRACTS </a> , in, put 3 of any skins in the contract, sign and run it! After that you
will get a skin
in the interval x4 more or less from the amount for which you added your skins!
</div>
</div>
<div class="faq__row">
<div class="faq__header">
<span class="faq__header--icon">+</span>
<div class="faq__header--text">Can you get good skins from you?</div>
</div>
<div class="faq__summary">
Yes, because if it weren’t possible to get good skins on our site, then so many people would not
open cases
on it. We don’t have any specific winning systems and everything is based on chances. For
example, if you
replenish your account is only 1 dollar, you can leave the site with the most expensive skin in
the game or
lose your money completely. It all depends on your luck!
</div>
</div>
<div class="faq__row">
<div class="faq__header">
<span class="faq__header--icon">+</span>
<div class="faq__header--text">I did not find the answer to the question, or is there a
suggestion!</div>
</div>
<div class="faq__summary">
If you did not find the answer to your question in this section, or if there is any suggestion
on the site,
write to support@standoffcase.ru or to messages from the group <a
href="https://vk.com/standoffcard" class="s-card" target="_blank">VK</a>
</div>
</div>
</div>
<div class="footer">
<div class="footer__zalupa">
<div class="footer__ref">
<img src="assets/img/logo.png" class="footer__logo">
<div class="social-links">
<a href="#" class="social-links__link social-links__link--vk"></a>
<a href="#" class="social-links__link social-links__link--instagram"></a>
<a href="#" class="social-links__link social-links__link--steam"></a>
<a href="#" class="social-links__link social-links__link--youtube"></a>
</div>
<img src="assets/img/standoffcard.png" class="footer__logo">
<img src="assets/img/standoffcase.png" class="footer__logo">
</div>
<div class="to-top">
<span class="built-icon__chevron-up"></span>
</div>
</div>
<!--div class="paysys">
<img src="https://standoffcase.ru/assets/img/payments_systems/mastercard.svg" class="paysys__image">
<img src="https://standoffcase.ru/assets/img/payments_systems/webmoney.svg" class="paysys__image">
<img src="https://standoffcase.ru/assets/img/payments_systems/qiwi.svg" class="paysys__image">
<img src="https://standoffcase.ru/assets/img/payments_systems/yandex.svg" class="paysys__image">
<img src="https://standoffcase.ru/assets/img/payments_systems/visa.svg" class="paysys__image">
</div-->
<div class="copyright">
<a href="/" class="copyright__link">support@standoffroll.com</a>
<a href="/agreement" class="copyright__link">Terms of use</a>
<a href="/contacts" class="copyright__link">Contacts</a>
<span class="copyright__text">Copyright StandoffRoll.com</span>
</div>
</div>
</div>
</main>
<footer>
<!--Scripts-->
<script src="https://standoffcase.ru/assets/js/jquery-3.3.1.min.js"></script>
<script src="assets/js/scripts.js"></script>
<script src="assets/js/game.js"></script>
<script>
const stdf2_game_progress = new game_progress(".stdf2-game-progress", {
max: 12,
autoUpdate: true, // Default: false
progress: {
//mode: "percent", // По-умолчанию в процентах
mode: "tillMax", // Прогресс до max, проценты считаються сами
amount: 12, // Указывается либо от 0 до 100, либо от 0 до max
},
text: {
separate: "from", // Суда можно поставить парсер языка
},
});
// Обновлять прогресс таким образом
stdf2_game_progress.progress = 10;
// Так же, если надо, можно поменять max
stdf2_game_progress.max = 9; // Ошибка т.к. max не может быть меньше прогресса
// После всех остальных дел нужно применить изменения, в настройках есть возможно включить постоянное обновление
//stdf2_game_progress.update();
</script>
<script>
</script>
</footer>
</body>
</html>