Skip to content

Commit eadf33d

Browse files
author
bot
committed
update readme
1 parent 9841dee commit eadf33d

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,10 @@ bash start.sh
189189
|---|---|
190190
|__dobet()__|The loop of bets|
191191
|__stop()__|Stop the bet|
192+
|__resetsession()__|Reset the session|
193+
|__resetseed()__|Reset the client seed|
194+
|__sound(path_of_the_sound)__|Sound notificaiton|
195+
|__message(text, type=\'debug\', expire=time_interval_value_in_ms)__|Message notification on the screen. Four types: "info", "success", "debug", or "error". Expire interval is 4000 ms by default, -1 for not hiding the message.|
192196

193197
## Sample Code
194198
* Strategy: Basic Martingale

src/views/login.pug

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,14 @@ block content
325325
]
326326
};
327327

328+
var mining_site_info = {
329+
id: "mining_site_info",
330+
rows: [
331+
{view: "label", label: "Mining"},
332+
{view: "label", label: "<a target='_blank' href='https://cryptotabbrowser.com/4760331'>CryptoTab</a>"},
333+
]
334+
};
335+
328336
var exchange_site_info = {
329337
id: "exchange_site_info",
330338
rows: [
@@ -364,8 +372,9 @@ block content
364372
cols:[
365373
traditional_dice_site_info,
366374
blockchain_dice_site_info,
367-
todo_dice_site_info,
375+
//todo_dice_site_info,
368376
faucet_site_info,
377+
mining_site_info,
369378
exchange_site_info,
370379
]
371380
}

0 commit comments

Comments
 (0)