forked from V4NSH4J/dankgrinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
1165 lines (1157 loc) · 26.5 KB
/
config.yml
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
# See https://github.com/dankgrinder/dankgrinder#getting-an-authorization-token
# for instructions on how to get a token.
#
# See https://github.com/dankgrinder/dankgrinder#enabling-discords-developer-mode
# for instructions on how to get a channel id.
#
# Detailed instructions on this config are available at
# https://github.com/dankgrinder/dankgrinder#configuration.
# Make sure you have read that as well as the frequently asked questions before
# asking for support on GitHub or Discord.
clusters:
default:
master:
token: ""
channel_id: ""
shifts:
- state: "active"
duration:
base: 7200
variation: 1800
- state: "dormant"
duration:
base: 1800
variation: 1800
- state: "active"
duration:
base: 7200
variation: 3600
- state: "dormant"
duration:
base: 32400
variation: 3600
features:
commands:
beg: true
postmeme: true
search: true
highlow: true
fish: true
hunt: true
dig: true
work: true
trivia: true
crime : true
guess: false
scratch:
enable: false
amount: 50
priority: false
custom_commands:
- value: "pls work mod"
auto_buy:
fishing_pole: true
hunting_rifle: true
laptop: true
shovel: true
auto_sell:
enable: false
items:
- "boar"
- "dragon"
- "duck"
- "fish"
- "deer"
- "rabbit"
- "skunk"
auto_gift:
enable: false
items:
- "bank"
- "pizza"
auto_share:
enable: false
maximum_balance: 8000000
minimum_balance: 5000000
auto_blackjack:
enable: true
amount: 50
pause_below_balance: 100
pause_above_balance: 50000000
logic_table:
2:
4: "h"
5: "h"
6: "h"
7: "h"
8: "h"
9: "h"
10: "h"
11: "h"
12: "h"
13: "h"
14: "h"
15: "s"
16: "s"
17: "s"
18: "s"
19: "s"
20: "s"
soft12: "h"
soft13: "h"
soft14: "h"
soft15: "h"
soft16: "h"
soft17: "s"
soft18: "s"
soft19: "s"
soft20: "s"
3:
4: "h"
5: "h"
6: "h"
7: "h"
8: "h"
9: "h"
10: "h"
11: "h"
12: "h"
13: "h"
14: "h"
15: "s"
16: "s"
17: "s"
18: "s"
19: "s"
20: "s"
soft12: "h"
soft13: "h"
soft14: "h"
soft15: "h"
soft16: "h"
soft17: "s"
soft18: "s"
soft19: "s"
soft20: "s"
4:
4: "h"
5: "h"
6: "h"
7: "h"
8: "h"
9: "h"
10: "h"
11: "h"
12: "h"
13: "h"
14: "s"
15: "s"
16: "s"
17: "s"
18: "s"
19: "s"
20: "s"
soft12: "h"
soft13: "h"
soft14: "h"
soft15: "h"
soft16: "h"
soft17: "s"
soft18: "s"
soft19: "s"
soft20: "s"
5:
4: "h"
5: "h"
6: "h"
7: "h"
8: "h"
9: "h"
10: "h"
11: "h"
12: "h"
13: "h"
14: "s"
15: "s"
16: "s"
17: "s"
18: "s"
19: "s"
20: "s"
soft12: "h"
soft13: "h"
soft14: "h"
soft15: "h"
soft16: "h"
soft17: "s"
soft18: "s"
soft19: "s"
soft20: "s"
6:
4: "h"
5: "h"
6: "h"
7: "h"
8: "h"
9: "h"
10: "h"
11: "h"
12: "h"
13: "h"
14: "s"
15: "s"
16: "s"
17: "s"
18: "s"
19: "s"
20: "s"
soft12: "h"
soft13: "h"
soft14: "h"
soft15: "h"
soft16: "h"
soft17: "s"
soft18: "s"
soft19: "s"
soft20: "s"
7:
4: "h"
5: "h"
6: "h"
7: "h"
8: "h"
9: "h"
10: "h"
11: "h"
12: "h"
13: "h"
14: "h"
15: "h"
16: "h"
17: "s"
18: "s"
19: "s"
20: "s"
soft12: "h"
soft13: "h"
soft14: "h"
soft15: "h"
soft16: "h"
soft17: "s"
soft18: "s"
soft19: "s"
soft20: "s"
8:
4: "h"
5: "h"
6: "h"
7: "h"
8: "h"
9: "h"
10: "h"
11: "h"
12: "h"
13: "h"
14: "h"
15: "h"
16: "h"
17: "s"
18: "s"
19: "s"
20: "s"
soft12: "h"
soft13: "h"
soft14: "h"
soft15: "h"
soft16: "h"
soft17: "h"
soft18: "s"
soft19: "s"
soft20: "s"
9:
4: "h"
5: "h"
6: "h"
7: "h"
8: "h"
9: "h"
10: "h"
11: "h"
12: "h"
13: "h"
14: "h"
15: "h"
16: "h"
17: "s"
18: "s"
19: "s"
20: "s"
soft12: "h"
soft13: "h"
soft14: "h"
soft15: "h"
soft16: "h"
soft17: "h"
soft18: "s"
soft19: "s"
soft20: "s"
10:
4: "h"
5: "h"
6: "h"
7: "h"
8: "h"
9: "h"
10: "h"
11: "h"
12: "h"
13: "h"
14: "h"
15: "h"
16: "h"
17: "s"
18: "s"
19: "s"
20: "s"
soft12: "h"
soft13: "h"
soft14: "h"
soft15: "h"
soft16: "h"
soft17: "h"
soft18: "s"
soft19: "s"
soft20: "s"
A:
4: "h"
5: "h"
6: "h"
7: "h"
8: "h"
9: "h"
10: "h"
11: "h"
12: "h"
13: "h"
14: "h"
15: "h"
16: "h"
17: "h"
18: "s"
19: "s"
20: "s"
soft12: "h"
soft13: "h"
soft14: "h"
soft15: "h"
soft16: "h"
soft17: "h"
soft18: "s"
soft19: "s"
soft20: "s"
auto_tidepod:
enable: false
buy_lifesaver_on_death: true
balance_check:
enable: true
interval: 180
log_to_file: true
verbose_log_to_stdout: false
debug: false
compatibility:
allowed_searches:
- "area51"
- "bank"
- "grass"
- "purse"
- "mel's room"
allowed_crimes:
- "tax evasion"
allowed_scrambles:
- "scoop"
- "dirty"
- "ground"
- "burrow"
- "spider"
- "shovel"
- "trowel"
- "unearth"
- "uncover"
- "ladybug"
- "excavate"
- "stickbug"
dig_cancel:
- "LOL idk this"
- "No hable english"
allowed_ftb:
- "I am a dwarf and I diggy the hole"
- "Digging is my passion"
- "I hope I find some treasure"
- "I have never dug up a body"
- "I will dig all day and all night"
- "Never have I ever dug up a body"
allowed_scrambles_work:
# discord mod
- "carl-bot"
- "moderator"
- "permissions"
- "audit"
- "slowmode"
- "discord"
- "admin"
- "hammer"
- "welcome"
- "softban"
- "links"
- "advertising"
- "support"
- "voice"
- "rules"
# fast food cook
- "chicken"
- "sausage"
- "onion"
- "salad"
- "mustard"
- "sauce"
- "hamburger"
- "cheeseburger"
- "taco"
- "wendys"
- "food"
- "fries"
- "patty"
- "tomato"
- "sirloin"
- "cheap"
- "lettuce"
- "ketchup"
# babysitter
- "baths"
- "babysitter"
- "bedtime"
- "child"
- "children"
- "childcare"
- "cleaning"
- "cooking"
- "daycare"
- "diaper"
- "helpful"
- "house"
- "meals"
- "nanny"
- "safety"
# housewife
- "abode"
- "chores"
- "cleaning"
- "coffee"
- "companion"
- "cooking"
- "dishes"
- "dwelling"
- "homemaker"
- "household"
- "mommy"
- "partner"
- "spouse"
# streamer
- "shroud"
- "copyright"
- "donation"
- "drlupo"
- "gaming"
- "kappa"
- "kreygasm"
- "league"
- "melmsie"
- "minecraft"
- "pogchamp"
- "poggers"
- "prime"
- "residentsleeper"
- "stream"
- "timthetatman"
- "wutface"
- "4head"
# youtuber
- "annotations"
- "avatar"
- "channel"
- "clickbait"
- "cocomelon"
- "community"
- "copyright"
- "demographics"
- "description"
- "dislike"
- "drama"
- "featured"
- "google"
- "matpat"
- "money"
- "mrbeast"
- "pewdiepie"
- "smosh"
- "sponsored"
- "subscribe"
- "subtitles"
- "thumbnails"
- "tseries"
- "video"
- "views"
- "watermark"
- "wojcicki"
# hunter
- "animal"
- "antelope"
- "antlers"
- "arrow"
- "blind"
- "bullet"
- "gunshot"
- "hunting"
- "knife"
- "rifle"
- "scope"
- "sentry"
- "tracks"
- "trail"
- "woods"
# fisher
- "bobber"
- "boots"
- "fisherman"
- "fishing"
- "float"
- "ocean"
- "sinker"
- "shark"
- "spinner"
- "tackle"
- "trolling"
- "water"
- "whale"
# bartender
- "alcohol"
- "beverage"
- "blend"
- "chaser"
- "chill"
- "cocktail"
- "drink"
- "garnish"
- "house"
- "mixer"
- "rocks"
- "serve"
- "shooter"
- "spill"
- "strain"
- "twist"
- "virgin"
- "whiskey"
# robber
- "bandit"
- "fence"
- "grift"
- "heist"
- "lockpick"
- "money"
- "prison"
- "robber"
- "robbery"
- "armed"
- "steal"
- "undercover"
- "valuables"
# police
- "arrested"
- "arson"
- "baton"
- "crime"
- "criminal"
- "handcuffs"
- "murder"
- "officer"
- "police"
- "thief"
# teacher
- "chemical"
- "bell"
- "class"
- "classroom"
- "down"
- "give"
- "going"
- "held"
- "office"
- "school"
- "settle"
- "this"
- "true"
- "will"
- "year"
- "your"
# musician
- "album"
- "conform"
- "cowbell"
- "drums"
- "getting"
- "groove"
- "guitar"
- "songs"
- "sounds"
- "spotify"
- "stinger"
- "stop"
- "piano"
# shopkeeper
- "advertisement"
- "alcohol"
- "apple"
- "coupon"
- "coupon"
- "huntingrifle"
- "inventory"
- "lifesaver"
- "pepetrophy"
- "profit"
- "shopkeeper"
- "stonks"
# gamer
- "carry"
- "cheese"
- "feeding"
- "gamer"
- "gaming"
- "jungle"
- "laning"
- "stack"
- "ultimate"
# manager
- "administrator"
- "costs"
- "costs"
- "director"
- "innovation"
- "leader"
- "manager"
- "metrics"
- "money"
- "office"
- "planning"
- "process"
- "project"
- "quality"
- "resources"
- "revenue"
# developer
- "array"
- "coding"
- "developer"
- "development"
- "hacker"
- "javascript"
- "kotlin"
- "object"
- "program"
- "programming"
- "scala"
- "swift"
# day trader
- "bears"
- "bulls"
- "enlading"
- "float"
- "freeding"
- "gambling"
- "index"
- "investment"
- "market"
- "money"
- "profit"
- "regulation"
- "return"
- "shares"
- "split"
- "stocks"
- "stonks"
- "wallstreet"
# santa claus
- "beard"
- "bells"
- "belly"
- "chimney"
- "christmas"
- "claus"
- "cookies"
- "elves"
- "gifts"
- "presents"
- "reindeer"
- "rooftop"
- "rudolph"
- "saint"
- "santa"
- "sleigh"
- "snowball"
- "snowman"
# politician
- "country"
- "executive"
- "leader"
- "legislature"
- "office"
- "taxes"
# vet
- "animals"
- "blood"
- "checkup"
- "collar"
- "fleas"
- "medicine"
- "microchip"
- "muzzle"
- "needle"
- "neuter"
- "veterinary"
# pharmacist
- "therapeutic"
- "generic"
- "toxicology"
- "prescription"
- "dispensing"
# lawyer
- "admissible"
- "affidavit"
- "affirmed"
- "counsel"
- "defendant"
- "defense"
- "deposition"
- "discovery"
- "judge"
- "officer"
- "plaintiff"
- "precedent"
- "proof"
# doctor
- "antibiotic"
- "bandaid"
- "broken"
- "checkup"
- "doctor"
- "gauze"
- "hospital"
- "illness"
- "medical"
- "nurse"
- "office"
- "payment"
- "research"
- "viral"
- "virus"
# scientist
- "beaker"
- "curie"
- "darwin"
- "discipline"
- "edison"
- "education"
- "expert"
- "explosion"
- "galileo"
- "invention"
- "liquid"
- "newton"
- "physicist"
- "reaction"
- "solid"
- "teaching"
# ghost
- "apparition"
- "banshee"
- "bogey"
- "creepy"
- "demon"
- "devil"
- "freezing"
- "ghost"
- "ghoul"
- "haunt"
- "phantasm"
- "phantom"
- "poltergeist"
- "scary"
- "shade"
- "skeleton"
- "vision"
- "wraith"
work_cancel:
- "I'm feeling lazy to work today"
- "Working is for nabs"
- "Why play dank when I gotta work here too"
- "Why always so hard"
allowed_hangman:
# fast food worker
- "How may I take your order"
- "Would you like to super size that meal"
- "This is a great chicken burger"
- "That will be one dollar"
- "We do not offer refunds"
- "I want a refund"
- "The shake machine is broke again"
- "We close at midnight"
- "The fries are in the grease"
- "Two number 9's, a number 9 large, a number 6 with extra dip"
- "Would you like fries with that"
- "The delivery truck just got here"
- "Did you want sauce with those nuggets"
- "I do not get payed enough for this"
- "Corporate greed does not exist because they give me free fries duh"
- "I wonder if they will replace us with robots soon"
- "Would you like that with a side of foot lettuce"
# discord mod stuff
- "Please reread the rules"
- "The rules are pretty simple"
- "Give that user a mute"
- "If you dont like the rules, leave the server"
- "Nagging is bad for your health"
- "You don't choose the slowmode, the slowmode chooses you"
- "This isn't the place to practice abc's"
- "Looks like someone's on a ban streak"
- "We're always lurking in chat"
- "I will ban you again don't test me"
# babysitter
- "Can you guys just behave for once"
- "Go to your room please"
- "I cant stand these kids"
- "I lost the baby again sorry"
- "I am your nanny, not nana"
- "I'm going to invite my boyfriend over"
- "I do not want to change more diapers"
- "I am not getting paid enough for this child"
- "What do you want to eat tonight"
# housewife
- "Baked three dozen cookies today"
- "Haven't left the house in two weeks"
- "I cleaned all the dishes"
- "I do not work for an MLM it works for me"
- "I should get a new rug"
- "I should join the neighborhood watch"
- "I wonder what my spouse is doing right now"
- "live laugh love is my motto"
- "My kids are my full time job"
- "Sugar daddy bought me a new vacuum"
- "The baby puked on the floor again"
- "The chores never end"
- "This house is clean lets keep it that way"
- "Working moms don't love their kids"
- "Would you like to buy some essential oils"
# streamer
- "Alright who are we going to raid tonight"
- "Can you guys make sure you donate, I need a new gaming computer"
- "Clip it and ship it boys"
- "Daddy Bezos please gift me some subs"
- "Gamers rise up against Amazon"
- "I hope I get hosted today"
- "I will do shots for every donation I get"
- "League is the best game to stream"
- "Lets play some games together"
- "Make sure you read the chat rules"
- "Thank you for the host Dr Lupo"
- "Thank you for the raid shroud"
- "Thank you guys for all of the donations"
- "Woah thanks for 1000 bits"
# youtuber
- "3 scary games is the best series on YouTube"
- "90 percent of you watching are not subscribed"
- "All hail the YouTube algorithm"
- "And that’s just a theory, a GAME theory"
- "Clickbait gets the good views"
- "Guys, I need you to smash like!"
- "It’s just a prank bro"
- "Make sure to subscribe to the channel and hit that notification bell!"
- "Pranks gone sexual in the hood"
- "Subscribe to me"
- "Top of the morning to you"
- "Top ten videos are where the money is at"
- "YouTube Rewind was bad"
# hunter
- "A bad day hunting still beats a good day working"
- "How come I only ever get skunks"
- "I forget where I put the bear trap"
- "I only hunt with a bow"
- "I heard there was a dragon near"
- "I need a bigger gun next time"
- "If I don't get that buck then somebody else will"
- "No, I'm not a good shot, but I shoot often"
- "Shucks, that’s just a cull buck"
- "Saving people, hunting things, the family business"
- "The placing of the bullet is everything"
# fisher
- "A reel expert can tackle anything"
- "Fish tremble at the sound of my name"
- "Good things come to those who bait"
- "Hook line and sinker"
- "No fishing like in the sea"
- "Not all of us like sea shanties"
- "The fishing is good in troubled waters"
- "Will work for fish"
- "Whale whale whale what do we have here"
- "You've been schooled"
# bartender
- You should probably uber home"
- "3 drinks minimum at this bar"
- "Another drink coming right up"
- "Let me see your ID first please"
- "Rum and coke is my favorite drink"
- "You are too drunk to drive tonight"
- "You had better tip me for this"
- "You need to be over 21 to drink"
- "You're a little too drunk"
- "You've had enough to drink tonight"
- "Your credit card was declined"
# robber
- "I cannot wait to steal again"
- "I have a wishlist of targets to hit"
- "I have no problem stealing candy from babies"
- "I hope I remembered my bolt cutters"
- "I will rob your entire wallet in one swipe"
- "Should I rob a person or a bank today"
- "Time to rob another victim"
- "Time to rob another victim"
- "jackpot, I'm rich now"
# police
- "Anything you say can and will be used against you in a court of law"
- "Dead or alive you're coming with me"
- "I will meet you at the squad car"
- "If you cannot afford an attorney one will be provided for you"
- "If you post bad memes, you will be arrested"
- "Police officers stop criminals"
- "The captain will not be happy about this"
- "The criminal tried to get away"
- "The murderer escaped the police"
- "The neighborhood watch is stupid, I'm the law around here"
- "The police successfully captured the bank robber"
- "You have the right to an attorney"
- "You have the right to remain silent"
# teacher
- "Children settle down"
- "Children settle down now"
- "Give me your phone"
- "Go see the school nurse"
- "I am going to have to fail you out of this class"
- "I do not get paid enough for this"
- "I'm going to give you detention again"
- "No gum in my classroom"
- "No hats while in class because we are afraid of your lice"
- "This will be valuable your entire life"
- "Today we will learn about chemical reactions"
- "Today, we're going to learn about World War II"
- "You are dismissed by me and not the bell"
- "You need to go to the office right now"
- "You will need to go to summer school this year"
- "You will not use true knowledge later in life"
- "You're getting held back again"
# musician
- "I am feeling the groove"
- "I do not conform to a single genre"
- "I need to stop getting in treble"
- "Order my new album this weekend"
- "You can find me on spotify"
# shopkeeper
- "Buy one and get one free"
- "Did you forget your coupons"
- "Do you want a bag for that"
- "I sell a vast amount of goods"
- "There is a new sale every hour"
- "We do not offer delivery"
- "Why are my flash sales so low these days"
- "Will that be cash or credit"
# gamer
- "Anyone wanna play ranked"
- "Get rekt noob LMAO"
- "I cannot understand anything but videogames"
- "I chug gfuel all day and night"
- "I play games for a living"
- "I'm on a massive win streak"
- "Oh baby a triple!"
- "That player was such a noob"
- "who is down for a few more runs"
# manager
- "Can I see your resume please"
- "Corporate wants some changes around here"
- "I had to hand in some work to make my manager happy"
- "I hate salary work"
- "I make less then my hourly employees"
- "I manage a large team of skilled workers"
- "I will not pay you for overtime"
- "Managers lead a team of people"