This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1079 lines (1067 loc) · 63.8 KB
/
index.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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="description" content="Skribbl Typo is the most advanced toolbox for skribbl.io. Theme skribbl, find friends and draw better." />
<meta name="keywords" content="skribbl, typo, Pressure support, friend finder, fullscreen mode, dark mode, themes, emojis, download image, create gif, post image on discord, connect discord, player sprites, random color, canvas zoom, straight lines, free draw, image template, gallery cloud, draw over, mute players, commands, chat focus, extension, browser, palette" />
<meta name="robots" content="index,follow" />
<meta name="theme-color" content="#36aac7">
<meta property="og:site_name" content="typo.rip ⚰ Typo & Palantir">
<meta property="og:title" content="Skribbl Typo" />
<meta property="og:description" content="Skribbl Typo is the most advanced toolbox for skribbl.io.
Theme skribbl, find friends and draw better.
Get it for Chrome, Firefox, Opera and Edge." />
<meta property="og:image" content="https://cdn.discordapp.com/attachments/334696834322661376/839993813707653170/256MaxFit.png" />
<link rel="stylesheet" type="text/css" href="css/graphics.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/popup.css" />
<link rel="stylesheet" type="text/css" href="css/mobile.css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200;300;400;500;600;700&display=swap');
</style>
<script src="js/ui.js"></script>
<title>Typo.rip ⚰️ </title>
<link rel="shortcut icon" type="image/x-icon" href="res/128MaxFit.png">
<script src="https://cdn.jsdelivr.net/npm/@simonwep/pickr/dist/pickr.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@simonwep/pickr/dist/themes/monolith.min.css" />
</head>
<body>
<div id="navBack"></div>
<div id="navClone" class="flexcol flexcenter">
<a href="https://tobeh.host/typo/" target="_blank"><h1>Add Typo</h1></a>
<a href="#features"><h1>Features</h1></a>
<a href="#interface"><h1>Interface</h1></a>
<a href="#sprites"><h1>Sprites</h1></a>
<a href="#palantir"><h1>Discord Bot</h1></a>
<a href="#admin"><h1>Admin</h1></a>
<!--<a href="https://github.com/toobeeh/" target="_blank"><h1>GitHub</h1></a>-->
</div>
<div id="backgroundClouds">
<div class="backgroundLeft">
<div class="cloudsBack backgroundSide animateBack"></div>
<a href="#documentation"><div class="cloudsFore backgroundSide animateFore"></div></a>
</div>
<div class="backgroundRight">
<div class="cloudsBack backgroundSide animateBack"></div>
<a href="#documentation"><div class="cloudsFore backgroundSide animateFore"></div></a>
</div>
</div>
<div class="flexrow flexbetween fullwidth" id="logoContainer">
<a href="#home"><img id="logo" src="res/moon.gif" /></a>
<div id="navPlanCont"><img id="navPlan" src="res/navPlan.gif"><img id="navPlanCap" src="res/navPlanOverlay.gif"></div>
</div>
<div class="contentSection hidden" id="home">
<h1>.. what's that?</h1>
<div class="flexrow flexcenter fullwidth iconsRow">
<div class="cglowYellow"><img class="icon" draggable="false" src="res/wand.gif"></div>
<div class="cglowYellow"><img class="icon" draggable="false" src="res/magicball.gif"></div>
<div class="cglowYellow"><img class="icon" draggable="false" src="res/book.gif"></div>
</div>
<h2>Typo adds some magic to skribbl.io</h2>
<h3>
Typo is the most advanced skribbl.io extension.<br />
Draw fancier, quickly search for friends or connect to Discord!
<br />
Click the purple planet to add Typo or to get to know the features.
</h3>
</div>
<div class="contentSection hidden" id="palantir">
<h1>'Palantir' Discord Bot</h1>
<h2>The Palantir Bot works together with Typo.</h2>
<div class="contentRow fullwidth">
<div class="contentColumn">
<div class="contentBox">
<h2>How the bot works</h2>
<div>
<ul>
<li>Typo sends Palantir when youre online in skribbl.</li>
<li>Palantir shows everyone on your server who connected typo in a message.</li>
<li>The message shows you lobby, language, points and more.</li>
<li>On skribbl, these lobbies can be searched for automatically.</li>
</ul>
<img src="res/message.gif" />
</div>
</div>
</div>
<div class="contentColumn">
<div class="contentBox">
<h2>Connect Typo with Palantir</h2>
<div>
<ul>
<li>If your DC server has Palantir, follow the video instructions.</li>
<li>Enable the video captions to see details.</li>
<li>To add the bot, go to "Admin" and set the bot up.</li>
</ul>
<a href="https://youtu.be/Tt8eb3v6UwE" target="_blank"><img id="tutorial" src="res/youtube.gif" /></a>
</div>
</div>
</div>
</div>
<div class="contentBox">
<h2>Upgrade your avatar & match with your friends</h2>
<div>
<ul>
<li>Using Palantir, you are rewarded a virtual currency every 10s.</li>
<li>With those Bubbles, you can buy Sprites which display in your skribbl avatar.</li>
<li>To get extra Bubbles and buy event Sprites, click Drops on the skribbl canvas.</li>
<li>Once in a while, there are Sprite events for exclusive stuff.</li>
</ul>
</div>
</div>
<h2>Bot features & commands</h2>
<h3>
How to read: A command consists of the <span class="command">command-name</span> and parameters.<br />
Parameters <span class="pmOpt">like these</span> are optional, <span class="pmReq">these</span> are required.<br />
Do not type out <span class="pmOpt"></span> and <span class="pmReq"></span> brackets, <span class="pmID"></span> is always just a number.
</h3>
<div class="contentRow fullwidth">
<div class="contentColumn">
<div class="contentBox">
<h2><span class="command">bubbles</span></h2>
<div>
Shows a manual about Bubbles.<br />
Example: <span class="command">bubbles</span>
</div>
</div>
<div class="contentBox">
<h2><span class="command">buy</span> <span class="pmReq"><span class="pmID"></span></span></h2>
<div>
Buy the sprite of the <span class="pmID"></span>.<br />
Example: <span class="command">buy</span> <span class="pmReq ex">5</span>
</div>
</div>
<div class="contentBox">
<h2><span class="command">inventory</span></h2>
<div>
Shows your inventory.<br />
Example: <span class="command">inventory</span>
</div>
</div>
<div class="contentBox">
<h2><span class="command">leaderboard</span></h2>
<div>
Shows your server's Bubble leaderboard.<br />
Example: <span class="command">leaderboard</span>
</div>
</div>
<div class="contentBox">
<h2><span class="command">stat</span> <span class="pmOpt">mode</span></h2>
<div>
Shows Bubble gain statistics.<br />
<span class="pmOpt">mode</span> can be either <span class="pmOpt ex">day</span>,<span class="pmOpt ex">week</span> or <span class="pmOpt ex">month</span>.<br />
Example: <span class="command">stat</span> <span class="pmOpt ex">day</span>
</div>
</div>
<div class="contentBox">
<h2><span class="command">event</span> <span class="pmOpt"><span class="pmID"></span></span></h2>
<div>
Shows either the active event or the event with given <span class="pmOpt"><span class="pmID"></span></span>.<br />
Example: <span class="command">event</span> <span class="pmOpt ex">2</span>
</div>
</div>
<div class="contentBox">
<h2><span class="command">upcoming</span></h2>
<div>
Shows upcoming events.<br />
Example: <span class="command">upcoming</span>
</div>
</div>
<div class="contentBox">
<h2><span class="command">passed</span></h2>
<div>
Shows passed events.<br />
Example: <span class="command">passed</span>
</div>
</div>
</div>
<div class="contentColumn">
<div class="contentBox">
<h2><span class="command">sprite</span> <span class="pmOpt"><span class="pmID"></span></span></h2>
<div>
Shows the sprite of the <span class="pmID"></span>.<br />
Without <span class="pmOpt"><span class="pmID"></span></span>, three random sprites are shown.<br />
Example: <span class="command">sprite</span> <span class="pmOpt ex">5</span>
</div>
</div>
<div class="contentBox">
<h2><span class="command">use</span> <span class="pmReq"><span class="pmID"></span></span></h2>
<div>
Use the sprite of the <span class="pmID"></span>.<br />
Example: <span class="command">use</span> <span class="pmReq ex">5</span>
</div>
</div>
<div class="contentBox">
<h2><span class="command">calc</span> <span class="pmReq">mode</span> <span class="pmReq">value</span></h2>
<div>
Calculates remaining time for a bubble amount.<br />
<span class="pmOpt">mode</span> can be either <span class="pmReq ex">sprite</span>, <span class="pmReq ex">bubbles</span> or <span class="pmReq ex">rank</span>.<br />
Example: <span class="command">calc</span> <span class="pmReq ex">sprite</span> <span class="pmReq ex">5</span>
</div>
</div>
<div class="contentBox">
<h2><span class="command">gift</span> <span class="pmReq">@user</span> <span class="pmReq">amount</span> <span class="pmReq"><span class="pmID"></span></span></h2>
<div>
Gifts another person event drops. Up to 50% are lost, 3 drops are minimum.<br />
<span class="pmReq">@user</span> mentions the receiver. <br />
<span class="pmReq">amount</span> is the amount of drops which are required for the sprite with the ID <span class="pmReq"><span class="pmID"></span></span>. <br />
Example: <span class="command">gift</span> <span class="pmReq ex">@tobeh</span> <span class="pmReq ex">10</span> <span class="pmReq ex">5</span>
</div>
</div>
</div>
</div>
</div>
<div class="contentSection hidden" id="features">
<h1>All Features</h1>
<div class="contentRow fullwidth">
<div class="contentColumn">
<div class="contentBox">
<h2>Interface Improvements</h2>
<div>
<ul>
<li>Skribbl Appearance Themes - create your own skribbl theme or select from presets</li>
<li>Fullscreen mode with focus on important things</li>
<li>Char Count shows if the typed guess fits the hints and the word length</li>
<li>Up/Down keys to get the last chat input</li>
<li>Show a template picture of the word to draw (ImageAgent)</li>
<li>Highlight your messages in the chat</li>
<li>Use custom emojis like in Discord with :emoji-name:</li>
<li>Use kick-- like-- shame-- to quickly kick, like or dislike from the chat</li>
<li>Click CTRL in the chatbox to open a quick reaction menu for the arrow keys</li>
<li>Click [TAB] to auto-focus the chat input</li>
<li>Select chat content to copy it formatted for Discord</li>
<li>Buttons to skip or exit lobbies</li>
</ul>
</div>
</div>
<div class="contentBox">
<h2>Drawing</h2>
<div>
<ul>
<li>A practise free-draw mode with unlimited time (click the avatar on the start page)</li>
<li>Random Color brush to switch colors automatically (Click the dice in the color field)</li>
<li>Bigger custom color palette (only extension users see those)</li>
<li>Draw straight lines by holding [SHIFT] while you draw. Double-press [SHIFT] to snap them on the axis.</li>
<li>Zoom the Canvas: [STRG + Click] where you want to zoom.<br />Set the level by clicking any number key and leave with [STRG + Click].</li>
</ul>
</div>
</div>
<div class="contentBox">
<h2>Game Challenges</h2>
<div>
<ul>
<li>Blind guess - Hide the canvas</li>
<li>Deaf guess - you don't see the chat</li>
<li>One shot - you have only one try to guess the word</li>
<li>Don't Clear - you draw over the previous drawing</li>
<li>Monochrome - you have only a set of colors available</li>
</ul>
</div>
</div>
</div>
<div class="contentColumn">
<!--<div class="contentBox">
<h2>Lobby Search</h2>
<div>
<ul>
<li>The fastest skribbl search engine with 100+ lobbies per minute</li>
<li>No annoying skribbl reload when searching</li>
<li>Search for one or more player names</li>
<li>Buttons to exit / skip current lobby</li>
<li>Skip empty lobbies</li>
</ul>
</div>
</div>-->
<div class="contentBox">
<h2>Image Magic</h2>
<div>
<ul>
<li>Download image as PNG</li>
<li>Save drawing process animation as GIF</li>
<li>Share images with one click on your Discord servers</li>
<li>Copy and save drawings to be automatically re-drawn (ImageTools)</li>
<li>If you have connected palantir, every drawing is automatically saved in the Cloud Gallery</li>
<li>Paste PNGs on the prectise canvas</li>
</ul>
</div>
</div>
<div class="contentBox">
<h2>Brush Laboratory</h2>
<div>
<ul>
<li>Draw with rainbow colors depending on pen pressure</li>
<li>Draw with color brightnesses depending on pen pressure</li>
<li>Draw rainbow lines with the mouse</li>
<li>Draw manala-like images with the mirroring tool</li>
<li>Draw fancy shapes with the sculpt mode</li>
<li>Draw dashes with the dash mode</li>
<li>Create pen-tilt effect</li>
</ul>
</div>
</div>
<div class="contentBox">
<h2>Palantir Discord Bot</h2>
<div>
<ul>
<li>Send your lobby to your favourite discord servers</li>
<li>See who of your friends is playing and search automatically for them</li>
<li>Collect Bubbles and unlock sprites to upgrade your avatar</li>
<li>Prove quick reaction time and collect drops for extra bubbles</li>
<li>Participate at events to unlock seasonal sprites</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="contentSection hidden" id="admin">
<h1>Bot Admin Stuff</h1>
<h3>.. or: How to set up the Palantir bot in your server</h3>
<div class="contentRow fullwidth">
<div class="contentColumn">
<div class="contentBox">
<h2>Invite & set up the bot</h2>
<div>
<ul>
<li>Click below to add the bot to your server.</li>
<li>Grant all permissions to ensure proper functionality. <br />If something looks broken... consider setting the given perms.</li>
<li>The bot will create a message and edit it continuously, so the channel should be read-only for members.</li>
<li>Initialize the bot with the command <span class="command">observe</span> <span class="pmReq">#channel</span>.</li>
<li>Invoking commands with @Palantir instead > is also possible.</li>
</ul>
<a href="https://discord.com/oauth2/authorize?client_id=715874397025468417&scope=bot&permissions=329728" target="_blank"><img id="tutorial" src="res/invite.gif" /></a>
</div>
</div>
<div class="contentBox">
<h2>Command Documentation</h2>
<div>
Well I hope it's up-to-date, but pls use this. ;)<br /><br />
<a href="#documentation">
<img id="tutorial" class="halfImg" src="res/book.gif" />
</a>
</div>
</div>
</div>
<div class="contentColumn">
<h3>
For generic questions read the troubleshoot below.<br />
If youre still stuck, hmu on Discord @tobeh#7437.<br />
The bot has alot of customization commands available, consider reading the command documentation linked below.
</h3>
<div class="contentBox">
<h2>Troubleshoot</h2>
<div>
<ul>
<li>
<span class="pmReq">Which commands are usable?</span><br />
Get available commands with <span class="command">help</span>.<br />
Only commands which can be executed by the author are shown.<br />
Every command to change bot settings requires the administrator role permission.
</li>
<li>
<span class="pmReq">What is the server token?</span><br />
The server token is a unique key which lets users see and send lobbies to this server.<br />
This ensures that the lobbies are only visible to users in the server.<br />
If the token is changed, users need to enter the new token to be verified again.
</li>
<li>
<span class="pmReq">How to change the channel?</span><br />
The channel can always be set with the command <span class="command">observe</span> <span class="pmReq">#channel</span>.<br />
If existing, the current bot message will be left as it is and a new one will be created.<br />
By default, the server token will change.<br />
If you want to keep the token as it is, call the command <span class="command">switch</span> <span class="pmReq">#channel</span>.
The command message and bot response with the token can be deleted.
</li>
<li>
<span class="pmReq">The bot does not edit the message.</span><br />
Try to set the channel again.<br />
If this does not help, contact me on DC @tobeh#7437.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="contentSection hidden" id="documentation">
<h1>The Holy Command Documentation</h1>
<h3>
You made it there! Have fun reading that stuff. <br />Tags: #admin #dm #server #everyone #bubbles #event<br />
Parameters <span class="pmOpt">like these</span> are optional, <span class="pmReq">these</span> are required.<br />
</h3>
<h3><input type="text" id="filterCommands" placeholder="Search Keyword" /><span class="pmReq" id="queryRes"></span></h3>
<div class="contentRow fullwidth">
<div class="contentColumn">
<div class="contentBox">
<h2><span class="command">login</span></h2>
<div>
Creates a palantir user account or shows your login, if existing.<br />
Example: <span class="command">login</span>
<h3>#dm #everyone</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">bubbles</span></h2>
<div>
Shows a manual about Bubbles.<br />
Example: <span class="command">bubbles</span>
<h3>#server #dm #everyone #bubbles</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">buy</span> <span class="pmReq"><span class="pmID"></span></span></h2>
<div>
Buy the sprite of the <span class="pmID"></span>.<br />
Example: <span class="command">buy</span> <span class="pmReq ex">5</span>
<h3>#server #dm #everyone #bubbles</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">inventory</span></h2>
<div>
Shows your inventory.<br />
Example: <span class="command">inventory</span>
<h3>#server #dm #everyone #bubbles</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">leaderboard</span></h2>
<div>
Shows your server's Bubble leaderboard.<br />
Example: <span class="command">leaderboard</span>
<h3>#server #everyone #bubbles</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">stat</span> <span class="pmOpt">mode</span></h2>
<div>
Shows Bubble gain statistics.<br />
<span class="pmOpt">mode</span> can be either <span class="pmOpt ex">day</span>,<span class="pmOpt ex">week</span> or <span class="pmOpt ex">month</span>.<br />
Example: <span class="command">stat</span> <span class="pmOpt ex">day</span>
<h3>#server #dm #everyone #bubbles</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">event</span> <span class="pmOpt"><span class="pmID"></span></span></h2>
<div>
Shows either the active event or the event with given <span class="pmOpt"><span class="pmID"></span></span>.<br />
Example: <span class="command">event</span> <span class="pmOpt ex">2</span>
<h3>#server #dm #everyone #event</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">upcoming</span></h2>
<div>
Shows upcoming events.<br />
Example: <span class="command">upcoming</span>
<h3>#server #dm #everyone #event</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">passed</span></h2>
<div>
Shows passed events.<br />
Example: <span class="command">passed</span>
<h3>#server #dm #everyone #event</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">switch</span> <span class="pmReq">#channel</span></h2>
<div>
Takes the <span class="pmReq">target channel mention</span>.<br />
Changes the channel for the bot message.<br />
The old message is abandoned.<br />
Generates NO new server token.
Example: <span class="command">switch</span> <span class="pmReq ex">#lobbies</span><br />
<h3>#server #admin</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">addwebhook</span> <span class="pmReq">name</span> <span class="pmReq">url</span></h2>
<div>
Takes the Webhook name as <span class="pmReq">name</span> and Webhook URL as <span class="pmReq">url</span>.<br />
Adds a webhook to a server.<br />
Webhooks enable users to post images to a Discord server by clicking the letter-icon in skribbl.<br />
Multiple webhooks for different channels can be added.<br />
Get the URL by creating a webhook for a channel in discord and click "Copy Webhook URL".<br />
Example: <span class="command">addwebhook</span> <span class="pmReq ex">Art</span> <span class="pmReq ex"> https://discordapp.com/api/webhooks/xx/xx </span><br />
<h3>#server #admin</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">refreshed</span> <span class="pmReq">state</span></h2>
<div>
<span class="pmReq">state</span> takes 'on' or 'off' as argument. <br />
Sets whether the refreshed timestamp should be displayed in the bot message. <br />
Example: <span class="command">refreshed</span> <span class="pmReq ex">off</span><br />
<h3>#server #admin</h3>
</div>
</div>v
<div class="contentBox">
<h2><span class="command">timezone</span> <span class="pmReq">offset</span></h2>
<div>
<span class="pmReq">offset</span> is the UTC offset in hours. <br />
Sets the timezone for the timestamp. <br />
Example: <span class="command">timezone</span> <span class="pmReq ex">-1</span><br />
<h3>#server #admin</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">animated</span> <span class="pmReq">state</span></h2>
<div>
<span class="pmReq">state</span> takes 'on' or 'off' as argument. <br />
Sets whether random animated emojis should be displayed in the bot message. <br />
"On" is highly recommended ;))<br />
Example: <span class="command">animated</span> <span class="pmReq ex">on</span><br />
<h3>#server #admin</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">flag</span> <span class="pmReq">user-id</span> <span class="pmOpt">new-flag</span></h2>
<div>
Either shows existing flags of a user or sets a new flag. <br />
Flags are calculated by binary, just test the command.<br />
Example: <span class="command">flag</span> <span class="pmReq ex">413904306769494018</span> <span class="pmOpt ex">4</span><br />
<h3>#server #dm #admin</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">hardreboot</span> </h2>
<div>
Restarts the bot and pulls from git. <br />
If an update was made, the commit msg is also shown. <br />
Example: <span class="command">hardreboot</span><br />
<h3>#server #dm #admin</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">bash</span> <span class="pmReq">command</span></h2>
<div>
Executes a command in the shell of the server. <br />
Returns the output, whereas commands like htop sadly dont work. <br />
Example: <span class="command">bash</span> <span class="pmReq ex">cd Webroot/Orthanc && git pull</span><br />
<h3>#server #dm #admin</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">sql</span> <span class="pmReq">query</span></h2>
<div>
Executes a query in the Palantir database. <br />
Watch. Out. <br />
Example: <span class="command">sql</span> <span class="pmReq ex">select * from status;</span><br />
<h3>#server #dm #admin</h3>
</div>
</div>
</div>
<div class="contentColumn">
<div class="contentBox">
<h2><span class="command">sprite</span> <span class="pmOpt"><span class="pmID"></span></span></h2>
<div>
Shows the sprite of the <span class="pmID"></span>.<br />
Without <span class="pmOpt"><span class="pmID"></span></span>, three random sprites are shown.<br />
Example: <span class="command">sprite</span> <span class="pmOpt ex">5</span>
<h3>#server #dm #everyone #bubbles</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">use</span> <span class="pmReq"><span class="pmID"></span></span></h2>
<div>
Use the sprite of the <span class="pmID"></span>.<br />
Example: <span class="command">use</span> <span class="pmReq ex">5</span>
<h3>#server #dm #everyone #bubbles</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">calc</span> <span class="pmReq">mode</span> <span class="pmReq">value</span></h2>
<div>
Calculates remaining time for a bubble amount.<br />
<span class="pmReq">mode</span> can be either <span class="pmReq ex">sprite</span>, <span class="pmReq ex">bubbles</span> or <span class="pmReq ex">rank</span>.<br />
Example: <span class="command">calc</span> <span class="pmReq ex">sprite</span> <span class="pmReq ex">5</span><br />
Another: <span class="command">calc</span> <span class="pmReq ex">bubbles</span> <span class="pmReq ex">1500</span><br />
..Yes..: <span class="command">calc</span> <span class="pmReq ex">rank</span> <span class="pmReq ex">2</span>
<h3>#server #everyone #dm #bubbles</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">gift</span> <span class="pmReq">@user</span> <span class="pmReq">amount</span> <span class="pmReq"><span class="pmID"></span></span></h2>
<div>
Gifts another person event drops. Up to 50% are lost, 3 drops are minimum.<br />
<span class="pmReq">@user</span> mentions the receiver. <br />
<span class="pmReq">amount</span> is the amount of drops which are required for the sprite with the ID <span class="pmReq"><span class="pmID"></span></span>. <br />
Example: <span class="command">gift</span> <span class="pmReq ex">@tobeh</span> <span class="pmReq ex">10</span> <span class="pmReq ex">5</span>
<h3>#server #everyone #event</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">manual</span> </h2>
<div>
Takes no arguments.<br />
Responds a message with a manual text how to connect the bot with the extension.<br />
Example: <span class="command">manual</span><br />
<h3>#dm #server</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">help</span> <span class="pmOpt">command</span></h2>
<div>
The first thing you should do when you're confused with a command ;)<br />
Lists either all permitted comands or help for specified <span class="pmOpt">command</span>.<br />
Example: <span class="command">help</span> <span class="pmOpt ex">gift</span><br />
<h3>#dm #server #everyone</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">observe</span> <span class="pmReq">#channel</span></h2>
<div>
Takes the <span class="pmReq">target channel mention</span>.<br />
Sets the channel for the bot message and initiates the bot.
Generates a new server token - server member have to enter this (again) in order to use the bot.
<span class="command">observe</span> <span class="pmReq ex">#lobbies</span><br />
<h3>#server #admin</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">webhooks</span> <span class="pmOpt">clear</span></h2>
<div>
Shows all added webhooks for this server.<br />
If <span class="pmOpt">true</span> is passed as clear, all webhooks are removed.<br />
Example: <span class="command">webhooks</span> <span class="pmOpt ex">true</span><br />
Another: <span class="command">webhooks</span><br />
<h3>#server #admin</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">header</span> <span class="pmReq">text</span></h2>
<div>
Sets the bot message header.<br />
<span class="pmReq">text</span> can contain any markup.<br />
Example: <span class="command">header</span> <span class="pmReq ex">**Nice Header**\nWith linebreak :)</span><br />
<h3>#server #admin</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">idle</span> <span class="pmReq">text</span></h2>
<div>
Sets the idle status message of the bot message when no lobbies are active. Same formatting applies as for header.<br />
<span class="pmReq">text</span> can contain any markup.<br />
Example: <span class="command">idle</span> <span class="pmReq ex">*Everyone's chillin.*</span><br />
<h3>#server #admin</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">token</span> <span class="pmReq">state</span></h2>
<div>
<span class="pmReq">state</span> takes 'on' or 'off' as argument. <br />
Sets whether the server token should be displayed in the bot message. <br />
Example: <span class="command">token</span> <span class="pmReq ex">on</span><br />
<h3>#server #admin</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">newevent</span> <span class="pmReq">name</span> <span class="pmReq">duration</span> <span class="pmReq">valid-from</span> <span class="pmReq">description</span></h2>
<div>
Creates a new event, woohoo!<br />
<span class="pmReq">name</span> is obvious, <span class="pmReq">duration</span> is the event length in days, <span class="pmReq">valid-from</span> sets in how many days the event will start and <span class="pmReq">description</span> takes the most creative essay the world has seen.<br />
Yep, I hate timestamp conversions.<br />
Example: <span class="command">newevent</span> <span class="pmReq ex">Wedding</span> <span class="pmReq ex">1</span> <span class="pmReq ex">999999</span> <span class="pmReq ex">Sadly, this will never happen</span><br />
<h3>#server #admin #event</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">eventdrop</span> <span class="pmReq">event-id</span> <span class="pmReq">name</span></h2>
<div>
Adds an event drop to an event.<br />
A valid GIF has to be attatched to the command. <br />
Example: <span class="command">eventdrop</span> <span class="pmReq ex">2</span> <span class="pmReq ex">Grogu</span><br />
<h3>#server #admin #event</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">eventsprite</span> <span class="pmReq">drop-id</span> <span class="pmReq">name</span> <span class="pmReq">price</span></h2>
<div>
Adds an event sprite to an event.<br />
A valid GIF has to be attatched to the command. <br />
Example: <span class="command">eventdrop</span> <span class="pmReq ex">9</span> <span class="pmReq ex">Spoon</span> <span class="pmReq ex">15</span><br />
<h3>#server #admin #event</h3>
</div>
</div>
<div class="contentBox">
<h2><span class="command">ping</span></h2>
<div>
Gets some latency stats of the bot / the server.<br />
Example: <span class="command">ping</span><br />
<h3>#server #dm #everyone</h3>
</div>
</div>
</div>
</div>
</div>
<div class="contentSection hidden" id="interface">
<h1>The Typo Interface</h1>
<h3>Click any button or input to reveal its holy mission.</h3>
<div class="dummy">
<h1>Skribbl Typo</h1>
<div class="tabSelection flexrow skribbl sketchful">
<div class="tabTitle skribbl" id="tabDashboard">Dashboard</div>
<div class="tabTitle tabActive " id="tabDiscord">Discord</div>
<div class="tabTitle skribbl" id="tabAdvanced">Advanced</div>
</div>
<div class="tabContent skribbl sketchful">
<div id="palantirSettings" class="sketchful skribbl">
<br />
<br />
<div id="login" class="skribbl">
<div id="loginHead" class="label back">Enter your login:</div>
<div class="flexrow flexrowMenu">
<input type="text" autocomplete="off" style="width:5em; flex-basis:unset" id="loginEnter" placeholder="12345678" />
<button type="button" class="active" id="loginSubmit">Login</button>
</div>
</div>
<div id="server" class="skribbl" style="">
<div id="loginName" class="label">Tobeh#7437</div>
<div class="label back">Connected Discord Servers</div><br />
<div class="flexrow flexrowMenu" style="flex-wrap:wrap" id="authGuilds">
<div class="label">No servers added! Enter a server token below</div>
</div>
<br />
<div class="flexrow flexrowMenu">
<input type="text" autocomplete="off" style="width:5em; flex-basis:unset" id="observeToken" placeholder="12345678" />
<button type="button" class="active" id="verifyToken">Verify</button>
</div>
<br />
</div>
<br />
<br />
</div>
</div>
<br />
<hr class="skribbl" />
<div id="footer" class="flexcol">
<button type="button" class="active" id="help">How-To</button>
<div id="dc" class="flexrow">
<img src="res/dc.gif" height="20" />
<div id="credits" style="margin-left:1em;">
Discord: tobeh#7437
</div>
</div>
</div>
</div>
<div class="dummy">
<h1>Skribbl Typo</h1>
<div class="tabSelection flexrow skribbl sketchful">
<div class="tabTitle tabActive skribbl" id="tabDashboard">Dashboard</div>
<div class="tabTitle" id="tabDiscord">Discord</div>
<div class="tabTitle skribbl " id="tabAdvanced">Advanced</div>
</div>
<div class="tabContent skribbl sketchful">
<div id="mainSettings" class="skribbl">
<br />
<br />
<div class="flexcol">
<div class="flexrow flexrowMenu">
<button type="button" id="imageagent">ImageAgent</button>
<button type="button" id="markup">Markup</button>
</div>
<div class="flexrow flexrowMenu">
<button type="button" id="drops">Drops</button>
<button type="button" id="controls">Controls</button>
</div>
<div class="flexrow flexrowMenu">
<button type="button" id="charbar">Char Count</button>
<button type="button" id="emojis">Emojis</button>
</div>
<div class="flexrow flexrowMenu">
<button type="button" id="zoom">Zoom Draw</button>
<button type="button" id="toolbar">Typo Toolbar</button>
</div>
<div class="flexrow flexrowMenu">
<button type="button" id="randomToggle">Randomizer</button>
<button type="button" id="commands">Chat commands</button>
</div>
<div class="flexrow flexrowMenu">
<button type="button" id="quickreact">Quickreact</button>
<button type="button" id="palantirToggle">Discord Status</button>
</div>
</div>
<br />
<br />
</div>
</div>
<br />
<hr class="skribbl" />
<div id="footer" class="flexcol">
<button type="button" class="active" id="help">How-To</button>
<div id="dc" class="flexrow">
<img src="res/dc.gif" height="20" />
<div id="credits" style="margin-left:1em;">
Discord: tobeh#7437
</div>
</div>
</div>
</div>
<div class="dummy">
<h1>Skribbl Typo</h1>
<div class="tabSelection flexrow skribbl sketchful">
<div class="tabTitle skribbl" id="tabDashboard">Dashboard</div>
<div class="tabTitle" id="tabDiscord">Discord</div>
<div class="tabTitle tabActive skribbl" id="tabAdvanced">Advanced</div>
</div>
<div class="tabContent skribbl sketchful">
<div id="advancedSettings" class="skribbl">
<br />
<br />
<div class="flexcol">
<div class="label">Random interval </div>
<div class="sliderBox" id="randomSlider">
<span class="sliderBar"><span class="sliderFill"></span></span>
<input type="range" class="slider" min="10" max="500" />
</div>
<div class="label">Markup color </div>
<div class="sliderBox" id="markupSlider">
<span class="sliderBar"><span class="sliderFill"></span></span>
<input type="range" class="slider" min="0" max="357" />
</div>
<div>
<div class="label">Color palettes</div>
<div class="flexrow flexrowMenu skribbl" style="flex-wrap:wrap" id="palettes">
<button type="button" id="originalPalette">Original Palette</button>
</div>
<div class="flexrow flexrowMenu">
<input type="text" autocomplete="off" style="width:5em; flex-basis:unset" id="paletteJSON" placeholder="{ ... }" />
<button type="button" class="active" id="enterJSON">Add</button>
</div>
</div>
</div>
<br />
<br />
</div>
</div>
<br />
<hr class="skribbl" />
<div id="footer" class="flexcol">
<button type="button" class="active" id="help">How-To</button>
<div id="dc" class="flexrow">
<img src="res/dc.gif" style="image-rendering:unset" height="20" />
<div id="credits" style="margin-left:1em;">
Discord: tobeh#7437
</div>
</div>
</div>
</div>
</div>
<div class="contentSection hidden" id="sprites">
<h1>All Sprites</h1>
<!--<h3>Filter by tags: #event #regular #<span class="pmReq">eventdrop</span> #<span class="pmReq">event</span></h3>-->
<h3><input type="button" value="By ID" id="spritesOrderBy"> <input type="button" id="spritesOrderDirection" value="Ascending"><input type="text" id="filterSprites" placeholder="Search Keyword" /><span class="pmReq" id="spriteRes"></span></h3>
<div class="flexrow flexcenter" id="spriteList"></div>
</div>
<div class="contentSection hidden" id="customcard">
<h1>Design your card</h1>
<h3 id="cardCommand" style="user-select:all">>customcard black black 0 0 2 ifhgt.png</h3>
<div class="contentRow fullwidth">
<object style="width:50%" type="image/svg+xml" data="res/rawcard.svg"></object>
<div class="contentBox" id="formCard" style="width:40%">
<br />
<div>
<div class="contentBox" id="headercol" picker-col="#1D3083"><span>Header Color</span><div class="swatch"></div></div><br />
<div class="contentBox" id="lighttext" picker-col="white"><span>Light Text Color</span><div class="swatch"></div></div><br />
<div class="contentBox" id="darktext" picker-col="white"><span>Dark Text Color</span><div class="swatch"></div></div><br />
<div class="contentBox" id="headerop"><span>Header Opacity</span> <input value="1"type="number" id="cardHeaderOpacity" placeholder="1"></div><br />
<div class="contentBox" id="backgroundop"><span>Background Opacity</span> <input value="1" type="number" id="cardBackgroundOpacity" placeholder="1"></div><br />
<div class="contentBox" id="backgroundimg"><span>Background Image URL</span> <input value="" type="text" id="cardBackground" placeholder="https://xx.xx/xx.png"></div>
</div>
</div>
</div>
</div>
<div class="contentSection hidden" id="workshop">
<h1>Sprite Workshop</h1>
<h3>Get started with drawing your own sprites</h3>
<div class="contentRow fullwidth">
<div class="contentColumn fullwidth">
<div class="contentBox">
<h2>Introduction</h2>
<div>
In the following paragraphs you will find everything you need to know to draw your own sprite.<br />
<b>Before submitting or asking for help, please make sure you have read all sections!</b><br />
Here a checklist what you need to get started:
<ul>
<li>An image editor: Photoshop (Recommended), Gimp (Free) or anything else you´re comfortable with</li>
<li>The sprites template - download <a href="https://cdn.discordapp.com/attachments/796787836643704872/822183729240866866/template.psd">[here]</a></li>
<li>Basic knowledge about painting and layers in your image editor.</li>
<li>An idea for a sprite ;)</li>
</ul>
</div>
</div>
<div class="contentBox">
<h2>About Sprites</h2>
<div>
There are a few guidelines you should follow:
<ul>
<li>Sprites are an image which is shown over the skribbl avatar.</li>
<li>Sprites should follow the overall sprite style. If youre not sure if the sprite fits, contact tobeh before drawing.</li>
<li>No insider-jokes or personal rather unpopular "favourite characters". Sprites should be fun for everyone!</li>
<li>No duplicate sprites just for other colors / details. Each sprite should have its own idea behind.</li>
<li>Don't make oversized sprites. The sprite should be mostly in the avatar area.</li>
<li>No flashy / annoying animations.</li>
<li>Sprites and the Avatar are GIF animations - the frame delay looks best with 0.25s each frame.</li>
<li>
GIFs dont support semi-transparent pixels. Means: Use a transparent background and only solid colors.<br />
Warning: Standard brushes have semi-transparent pixels, use a pixel brush!
</li>
<li>
The avatar has two frames. Anyway, if you draw a sprite with two frames, they will "overlap" the avatar animation.<br />
Like: Sometimes the sprite frame 2 is on avatar frame 1, sometimes sprite 2 on avatar 1, etc...<br />
This means EVERY sprite frame has to fit on every avatar frame! More about that later.
</li>
</ul>
</div>
</div>
<div class="contentBox">
<h2>The basic workflow</h2>
<div>
A few straightforward steps how to draw your sprite:
<ol>
<li>Open the template file above - you'll see three groups: template (Sample avatar frames), Angel and Squid (Sample sprites)</li>
<li>Hide all groups except one of the both avatar frames. This layer will be your template.</li>
<li>Create a new layer in a new group which will be your sprite layer.</li>
<li>Draw a sprite sketch - outlines, a few colors. Then disable the activated avatar frame and view the other avatar frame.</li>
<li>You will notice the avatar moved slightly - adjust the sprite so it fits on BOTH avatar frames.</li>
<li>This can be tricky on sprites which depend on the avatar outlines - see the Angel sample sprite.</li>
<li>As soon as you finished details, shadows and outlines, copy the sprite layer.</li>
<li>You now have two layers - each is a frame. Since the sprite should have a slight movement, you'll have to edit one of the frames.</li>
<li>
Simple "moving" effects can be achieved by transforming the layer - wider, higher, bigger - and editing the shadows slightly. <br />
You can also remove the details and re-draw them to make the new frame look a bit different.
</li>
<li>
Always check that the frame you're editing fits both avatar frames.
</li>
<li>
As soon as you think the sprite is finished, you can move to creating the gif.
</li>
</ol>
</div>
</div>
<div class="contentBox">
<h2>Animating it</h2>
<div>
Photoshop users have a clear advantage:
<ul>
<li>Photoshop lets you preview & export the gif easily.</li>
<li>Open the timeline and create a frame animation</li>
<li>Create two frames and enable only one of the sprite layers on a frame</li>
<li>Set the frame delay to 0.25s & click play to preview the animation</li>
<li>To export the sprite as gif, click "File > Export > Save for Web"</li>
</ul>
If you dont have photoshop:
<ul>
<li>Search the web how to preview (Gimp has no preview)</li>
<li>Search the web how to export as GIF (Gimp has this ;))</li>
<li>OR: save both layers as PNG and create a gif with a random online gif creator</li>
<li>OR: send me the project file & I will create the GIF for you</li>
</ul>
</div>
<h2>That's it!</h2>
<div>
You now have the permission to ask me any further questions ;)<br />
As soon as you finished the sprite, send me the gif/project and your wish for a name and price.<br />
If the sprite fits all requirements, I usually can add it within a day.
</div>
</div>
</div>
</div>
</div>
<div class="contentSection hidden" id="privacy">
<h1>Data Privacy Statement</h1>
<h3>How Palantir & Typo use and collect data</h3>
<div class="contentRow fullwidth">
<div class="contentColumn fullwidth">
<div class="contentBox">
<h2>Introduction</h2>
<div>
Typo and Palantir ONLY collect data if you create a Palantir account and connect it to the Typo extension.<br />
When you create a account by messaging the bot >login , you accept to this data privacy statement.<br />
The only purpose of the collected data is to make the Palantir features work and create a personal skribbl image gallery (Typo cloud).<br />
Your data is stored on a private server and is ONLY accessible to you and the Typo developer, tobeh.<br />
Your data will not be shared with anyone else.<br /><br />
Every data exchange between the Typo extension and the Palantir server is encrypted with SSL or WSS.
To request your data / get support about Typo, data privacy or anything related join the Typo Discord server.<br />