forked from shanapu/MyJailbreak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththread.txt
1636 lines (1465 loc) · 83.6 KB
/
thread.txt
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
[SIZE="5"][B]MyJailbreak [/B][/SIZE] a plugin pack for CS:GO jailserver
MyJailbreak is a redux rewrite of [URL="https://github.com/Franc1sco/Franug-Jailbreak/"]Franugs Special Jailbreak[/URL] a merge/redux of [URL="http://www.sourcemod.net/plugins.php?cat=0&mod=-1&title=warden&author=&description=&search=1"]eccas, ESK0s & zipcores Jailbreak warden[/URL] and many other plugins.
[B][u]Included Plugins:[/u][/B]
[LIST]
[*] [B]Warden[/B] - set/become warden,vote retire warden, model, icon, open cells,gun plant prevention, extend roundtime, handcuffs, laser pointer, drawer, set marker/quiz/EventDays/countdown/FF/nobock/mute
[*] [B]Requests[/B] - terror requests. refuse a game, request Capitulation/Pardon, healing or repeating, report freekill
[*] [B]Last Guard Rule[/B] - When Last Guard Rule is set the last CT get more HP and all terrors become rebel
[*] [B]Menu[/B] - player menus for T, CT, warden & admin
[*] [B]Weapons[/B] - weapon menus for CT &/or T(in event round)
[*] [B]Player Tags[/B] - add player tags for T, T.Admin, CT, CT.Admin, W, WA.Admin in chat &/or stats
[*] [B]Event Days[/B] - vote/set a Event Day for next round with cooldowns, rounds in row, sounds & overlays
[/LIST][INDENT][LIST]
[*][B]War[/B] - CT vs T Team Deathmatch
[*][B]Free For All[/B] - Deathmatch
[*][B]Zombie[/B] - CT(zombie) vs T(Human) stripped down zombiereloaded
[*][B]No Scope[/B] - No Scope Deathmatch with low gravity & configurable or random sniper
[*][B]HE Battle[/B] - Grenade Deathmatch with low gravity
[*][B]Hide in the Dark[/B] - CT(Seeker) vs T(Hider) kind of HideNseek
[*][B]Catch & Freeze[/B] - CT must catch all T (freeze tag)
[*][B]Duckhunt[/B] - CT(hunter) with nova vs T(chicken in 3th person) with 'nades
[*][B]Suicide Bomber[/B] - Ts got suicide bombs to kill all CTs
[*][B]Drunken[/B] - Deathmatch under bad condisions
[*][B]Deal Damage[/B] - Deal so much damage as you can to enemy team. Team with most damage dealed wins
[*][B]Zeus[/B] - Taser Deathmatch and get a new Zeus on Kill
[*][B]Torch Relay[/b] - Random player set on fire. He must burn other to extinguish the fire
[*][B]Cowboy[/b] - Deatmacth with revolver or dual barettas
[*][B]Knife[/B] - Knife Deathmatch with configurable gravity, iceskate, and thirdperson
[*][B]Freeday[/B] - Auto freeday on first round &/or if there is no CT
[/LIST][/INDENT]
[B][u]Features:[/u][/B]
[LIST]
[*]SourcePawn Transitional Syntax 1.7
[*]Multilingual support
[*]Custom chat commands !mycommand
[*]Custom chat tags [MyJB.tag]
[*]Colors
[*]Sounds & overlays
[*]Natives & forwards of the [URL="http://www.sourcemod.net/plugins.php?cat=0&mod=-1&title=warden&author=&description=&search=1"]original warden plugins[/URL] to keep compatibility
[*][URL="https://github.com/shanapu/MyJailbreak/wiki/Eventdays-template"]Template[/URL] to make your own Eventday
[*]some other fancy stuff
[/LIST]
[B][u]Plugin descriptions, commands & convars[/u][/B]
[SPOILER]
[U][B]Warden[/B][/U]
This plugins allows players to take control over the prison as warden/Headguard/Commander.
Chat, hud & sound notifications about warden / no warden. Vote to retire the warden. Colorized warden and define the color. Set warden Model and icon above head. Open & close cell doors & automatic open. Mute terroist for a amoung of time or round end. Extend roundtime. Gun plant prevention - CT can drop weapons only on round beginn without punishment & report to warden. Use Zeus as Handcuffs and move the cuffed T around. Cuffed T got a chance to get a paperclip to unlock cuffs. Give warden laser pointer & drawer(LaZzZers) with menu to choose color. Warden can toggle drawer for terrorists. Set different countdowns (start/stop) with overlays, sound & chat notifications. Start a MathQuiz with endtimer & show the player with the first right answer. Toggle Friendly Fire & No Block. Kill/pick a random T (excluding rebels & last T) with different kill effects(Lighting,Timebomb,Firebomb).
[b]Commands[/b]
[SPOILER]
[CODE]
sm_w / sm_warden - Allows the player taking the charge over prisoners
sm_com / sm_commander - Allows the player taking the charge over prisoners
sm_hg / sm_headguard - Allows the player taking the charge over prisoners
sm_uw / sm_unwarden - Allows the player to retire from the position
sm_uc / sm_uncommander - Allows the player to retire from the position
sm_uhg / sm_unheadguard - Allows the player to retire from the position
sm_vw / sm_votewarden / sm_vetowarden - Allows the player to vote to retire warden
sm_open - Allows the warden to open the cell doors
sm_close - Allows the warden to close the cell doors
sm_sparks - Allows Warden to toggle on/off the wardens bullet sparks
sm_laser - Allows the warden to toggle the wardens Laser pointer
sm_extend - Allows the warden to extend the roundtime
sm_drawer - Allows the warden to toggle the wardens Drawer
sm_noblockn - Allows the warden to toggle no block
sm_setff - Allows player to see the state and the warden to toggle friendly fire
sm_cdmenu - Allows the warden to open the Countdown Menu
sm_cdstart - Allows the warden to start a START Countdown! (start after 10sec.) - start without menu
sm_cdstop - Allows the warden to start a STOP Countdown! (stop after 20sec.) - start without menu
sm_cdstartstop - Allows the warden to start a START/STOP Countdown! (start after 10sec./stop after 20sec.) - start without menu
sm_cdcancel - Allows the warden to cancel a running Countdown disabled / bugged
sm_killrandom - Allows the warden to kill a random T
sm_math - Allows the warden to start a MathQuiz. Show player with first right Answer
sm_wmute - Allows the warden to mute a terrorist
sm_wunmute - Allows the warden to unmute a muted terrorist
[/CODE]
set your own custom command. take a look at "sm_warden_cmd"
[u]AdminCommands // ADMFLAG_GENERIC[/u]
[CODE]
sm_sw / sm_setwarden - Allows the Admin to set a player to warden
sm_rw / sm_removewarden - Allows the Admin to remove a player from warden
sm_fw / sm_firewarden - Allows the Admin to remove a player from warden
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_warden_version - Shows the version of the SourceMod plugin MyJailbreak warden
sm_warden_enable: 0 - disabled, 1 - enable the warden plugin. Default 1
sm_warden_cmd: Set your custom chat command for become warden. no need for sm_ or ! . Default "simon" results in !simon /simon & sm_simon
sm_warden_become: 0 - disabled, 1 - enable !w / !warden - player can choose to be warden. If disabled you should need sm_warden_choose_random 1. Default 1
sm_warden_choose_random: 0 - disabled, 1 - enable pic random warden if there is still no warden after sm_warden_choose_time. Default 1
sm_warden_choose_time: Time in seconds a random warden will picked when no warden was set. need sm_warden_choose_random 1. Default 20
sm_warden_stay: 0 - disabled, 1 - warden will stay after round end. Default 1
sm_warden_vote: 0 - disabled, 1 - enable player vote against warden. Default 1
sm_warden_better_notifications: 0 - disabled , 1 - will use hint and center say for better notifications. Default 1
sm_warden_icon_enable: 0 - disabled , 1 - enable the icon above the wardens head. Default 1
sm_warden_icon: Path to the floating warden icon DONT TYPE .vmt or .vft. Default: "decals/MyJailbreak/warden"
sm_warden_noblock: 0 - disabled, 1 - enable setable noblock for warden. Default 1
sm_warden_noblock_mode: 0 - collision only between CT & T , 1 - collision within a team. Default 1
sm_warden_ff: 0 - disabled, 1 - enable warden switch friendly fire. Default 1
sm_warden_extend: 0- disabled, 1- Allows the warden to extend the roundtime. Default 1
sm_warden_extend_limit: How many time a warden can extend the round?. Default 2
sm_warden_mute: 0 - disabled, 1 - Allow the warden to mute T-side player. Default 1
sm_warden_mute_round: 0 - disabled, 1 - Allow the warden to mute a player until roundend. Default 1
sm_warden_muteimmuntiy: Set flag for admin/vip mute immunity. No flag = immunity for all. so don't leave blank! Default a
sm_warden_gunplant: 0 - disabled, 1 - enable Gun plant prevention. Default 1
sm_warden_gunnodrop: 0 - disabled, 1 - disallow gun dropping for ct. Default 0
sm_warden_gunremove: 0 - disabled, 1 - remove planted guns. Default 1
sm_warden_gunremove_time: Time in seconds to pick up gun again before. Default 5
sm_warden_gunslap: 0 - disabled, 1 - Slap the CT for dropping a gun. Default 1
sm_warden_gunslap_dmg: Amoung of HP losing on slap for dropping a gun. Default 10
sm_warden_backstab: 0 - disabled, 1 - enable backstab protection for warden. Default 1
sm_warden_backstab_number: How many time a warden get protected? 0 - alltime. Default 1
sm_warden_backstab_flag: Set flag for admin/vip to get warden backstab protection. No flag = feature is available for all players! Default ""
sm_warden_handcuffs: 0 - disabled, 1 - enable handcuffs. Default 1
sm_warden_handcuffs_number: How many handcuffs a warden got? Default 2
sm_warden_handcuffs_lr: 0 - disabled, 1 - free cuffed terrorists on LR. Default 1
sm_warden_handcuffs_ct: 0 - disabled, 1 - Warden can also handcuff CTs. Default 1
sm_warden_handcuffs_paperclip_chance: Set the chance (1:x) a cuffed Terroris get a paperclip to free themself. Default 5
sm_warden_handcuffs_unlock_chance: Set the chance (1:x) a cuffed Terroris who has a paperclip to free themself. Default 3
sm_warden_handcuffs_unlock_mintime: Min. Time in seconds Ts need free themself with a paperclip. Default 15
sm_warden_handcuffs_unlock_maxtime: Max. Time in seconds Ts need free themself with a paperclip. Default 35
sm_warden_handcuffs_flag: Set flag for admin/vip must have to get access to paperclip. No flag = feature is available for all players! Default ""
sm_warden_overlays_cuffs: Path to the cuffs Overlay DONT TYPE .vmt or .vft. Default "overlays/MyJailbreak/cuffs"
sm_warden_random: 0 - disabled, 1 - enable kill a random t for warden. Default 1
sm_warden_random_mode: 1 - all random / 2 - Thunder / 3 - Timebomb / 4 - Firebomb / 5 - NoKill (1,3,4 needs funcommands.smx enabled). Default 2
sm_warden_bulletsparks: 0 - disabled, 1 - enable Warden bulletimpact sparks
sm_warden_bulletsparks_flag: Set flag for admin/vip to get warden bulletimpact sparks. No flag = feature is available for all players! Default ""
sm_warden_marker: 0 - disabled, 1 - enable warden advanced markers. Default 1
sm_warden_laser: 0 - disabled, 1 - enable warden Laser Pointer with +E. Default 1
sm_warden_laser_flag: Set flag for admin/vip to get warden laser pointer. No flag = feature is available for all players! Default ""
sm_warden_drawer: 0 - disabled, 1 - enable warden Drawer with +E. Default 1
sm_warden_drawer_terror: 0 - disabled, 1 - allow warden to toggle Drawer for Terrorist. Default 1
sm_warden_drawer_flag: Set flag for admin/vip to get warden drawer access. No flag = feature is available for all players! Default ""
sm_warden_math: 0 - disabled, 1 - enable mathquiz for warden. Default 1
sm_warden_math_min: What should be the minimum number for questions. Default 1
sm_warden_math_max: What should be the maximum number for questions. Default 100
sm_warden_math_mode: 0 - only addition & subtraction, 1 - addition, subtraction, multiplication & division. Default 1
sm_warden_countdown: 0 - disabled, 1 - enable countdown for warden. Default 1
sm_warden_overlays_enable: 0 - disabled, 1 - enable overlay for countdown. Default 1
sm_warden_overlays_start: Path to the start Overlay DONT TYPE .vmt or .vft. Default "overlays/MyJailbreak/start"
sm_warden_overlays_stop: Path to the stop Overlay DONT TYPE .vmt or .vft. Default "overlays/MyJailbreak/stop"
sm_warden_model: 0 - disabled, 1 - enable warden model. Default 1
sm_warden_model_path:Path to the model for zombies. Default "models/player/custom_player/legacy/security/security.mdl"
sm_warden_color_enable: 0 - disabled, 1 - enable colored warden. Default 1
sm_warden_color_random: 0 - disabled, 1 - enable warden rainbow colored. Default 1
sm_warden_color_red - What color to turn the warden into (set R, G and B values to 0 to disable). Default 0
sm_warden_color_green - What color to turn the warden into (rGb): x - green value. Default 0
sm_warden_color_blue - What color to turn the warden into (rgB): x - blue value. Default 255
sm_warden_sounds_enable: 0 - disabled, 1 - Play a sound when a player become warden or warden leaves. Default 1
sm_warden_sounds_warden - Path to the soundfile which should be played for a new warden. Default "music/MyJailbreak/warden.mp3"
sm_warden_sounds_unwarden - Path to the soundfile which should be played when there is no warden anymore. Default "music/MyJailbreak/unwarden.mp3"
sm_warden_sounds_start - Path to the soundfile which should be played for a start countdown. Default "music/MyJailbreak/start.mp3"
sm_warden_sounds_stop - Path to the soundfile which should be played for a stop countdown. Default "music/MyJailbreak/stop.mp3"
sm_warden_open_enable: 0 - disabled, 1 - warden can open/close cell doors. Default 1
sm_warden_open_time_enable: 0 - disabled, 1 - cell doors will open automatic after sm_warden_open_time. Default 1
sm_warden_open_time - Time in seconds for open doors on round start automaticly. Default 60
sm_warden_open_time_warden: 0 - disabled, 1 - doors open automatic after sm_warden_open_time although there is a warden. needs sm_warden_open_time_enable 1. Default 1
[/CODE]
[/SPOILER]
[IMG]http://shanapu.de/myjb/warden.jpg[/IMG]
[IMG]http://shanapu.de/myjb/sparks.jpg[/IMG]
[youtube]tp6k_Q6K37c[/youtube]
[youtube]-KkQ3hs0dsU[/youtube]
[U][B]Request[/B][/U]
Allow terrorists to start a request. Refuse a Game - Warden can "open the refusing" and T can refuse a game and get colored & the warden get a listing of all refuser. Request Capitulation/Pardon - T get strip weapons and the warden got Menu to accept this request. Request healing - T get colored and warden gets Menu to accept this request (give Healthshot). Repeat - T can request a repeat of last call & the warden get a listing of all requester. Freekill - a dead terror can report a Freekill. A random admins get the choice of respawn the victim, kill the freekiller, Set freeday next round or swap the freekiller to terrorist. If there is no admin the warden get the report.
[b]Commands[/b]
[SPOILER]
[CODE]
sm_request - Open the request menu
sm_refuse - Allows the warden start refusing time and Terrorist to refuse a game
sm_capitulation - Allows a rebeling terrorist to request a capitulate
sm_pardon - Allows a rebeling terrorist to request a capitulate
sm_heal - Allows a Terrorist request healing
sm_repeat - Allows a Terrorist request repeating last call
sm_freekill - Allows a Terrorist report a freekill
set your own custom command. take a look at "sm_refuse_cmd" "sm_repeat_cmd" "sm_heal_cmd" "sm_capitulation_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_request_enable: 0 - disabled, 1 - enable Request Plugin. Default 1
sm_request_sounds_enable: 0 - disabled, 1 - enable sounds. Default 1
sm_refuse_enable: 0 - disabled, 1 - Enable Refuse. Default 1
sm_capitulation_cmd: Set your custom chat command for Refuse. no need for sm_ or ! . Default "ref" results in !ref /ref & sm_ref
sm_refuse_limit: Сount how many times you can use the command
sm_refuse_time": Time after the player gets his normal colors back
sm_refuse_flag: Set flag for VIP to get one more refuse. No flag = feature is available for all players! Default a
sm_refuse_color_red: What color to turn the refusing Terror into (set R, G and B values to 255 to disable) (Rgb): x - red value
sm_refuse_color_green: What color to turn the refusing Terror into (rGb): x - green value
sm_refuse_color_blue: What color to turn the refusing Terror into (rgB): x - blue value
sm_refuse_sound: Path to the soundfile which should be played for a refusing
sm_capitulation_enable: 0 - disabled, 1 - Enable Capitulation. Default 1
sm_capitulation_cmd: Set your custom chat command for capitulation. no need for sm_ or ! . Default "capi" results in !capi /capi & sm_capi
sm_capitulation_timer: Time to decide to accept the capitulation
sm_capitulation_rebel_timer: Time to give a rebel on not accepted capitulation his knife back
sm_capitulation_color_red: What color to turn the capitulation Terror into (set R, G and B values to 255 to disable) (Rgb): x - red value
sm_capitulation_color_green: What color to turn the capitulation Terror into (rGb): x - green value
sm_capitulation_color_blue: What color to turn the capitulation Terror into (rgB): x - blue value
sm_capitulation_sound: Path to the soundfile which should be played for a capitulation
sm_heal_enable: 0 - disabled, 1 - Enable heal. Default 1
sm_heal_cmd: Set your custom chat command for heal. no need for sm_ or ! . Default "cure" results in !cure /cure & sm_cure
sm_heal_limit: Сount how many times you can use the command
sm_heal_check: 0 - disabled, 1 - enable check if player is already full health
sm_heal_flag: Set flag for VIP to get one more heal. No flag = feature is available for all players! Default a
sm_heal_time: Time after the player gets his normal colors back
sm_heal_color_red: What color to turn the heal Terror into (set R, G and B values to 255 to disable) (Rgb): x - red value
sm_heal_color_green: What color to turn the heal Terror into (rGb): x - green value
sm_heal_color_blue: What color to turn the heal Terror into (rgB): x - blue value
sm_repeat_enable: 0 - disabled, 1 - enable repeat
sm_repeat_cmd: Set your custom chat command for Repeat. no need for sm_ or !. Default "rep" results in !rep /rep & sm_rep
sm_repeat_flag: Set flag for VIP to get one more repeat. No flag = feature is available for all players! Default a
sm_repeat_limit: Сount how many times you can use the command. Default 2
sm_repeat_sound: Path to the soundfile which should be played for a repeat. Default "music/MyJailbreak/repeat.mp3"
sm_freekill_enable: 0 - disabled, 1 - Enable freekill report. Default 1
sm_freekill_cmd: Set your custom chat command for freekill. no need for sm_ or !. Default "fk" results in !fk /fk & sm_fk
sm_freekill_limit: Сount how many times you can report a freekill. Default 2
sm_freekill_respawn: 0 - disabled, 1 - Allow the warden to respawn a Freekill victim. Default 1
sm_freekill_respawn_cell: 0 - cells are still open on respawn, 1 - cells will close on respawn in cell. Default 1
sm_freekill_kill: 0 - disabled, 1 - Allow the warden to Kill a Freekiller. Default 1
sm_freekill_freeday: 0 - disabled, 1 - Allow the admin/warden to set a freeday next round as pardon. Default 1
sm_freekill_swap: 0 - disabled, 1 - Allow the admin/warden to swap a freekiller to terrorist. Default 1
sm_freekill_admin: 0 - disabled, 1 - Report will be send to admins - if there is no admin its send to warden. Default 1
sm_freekill_flag: Set flag for admin/vip get reported freekills to decide. Default g
sm_freekill_warden: 0 - disabled, 1 - Report will be send to Warden if there is no admin. Default 1
[/CODE]
[/SPOILER]
[U][B]Last Guard Rule[/B][/U]
This plugin allow to play the "Last Guard Rule". You can choose between automatic when there is only one CT alive, or T can start a voting on last CT alive or the last CT will set Last Guard Rule. When Last Guard Rule is set the CT get more HP and all Terrors become rebel
[b]Commands[/b]
[SPOILER]
[CODE]
sm_lastguard - Allows terrors to vote and last CT to set Last Guard Rule
set your own custom command. take a look at "sm_lastguard_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_lastguard_enable: 0 - disabled, 1 - enable this MyJailbreak SourceMod plugin
sm_lastguard_cmd: Set your custom chat command for Last Guard Rule. no need for sm_ or !. Default "lg" results in !lg /lg & sm_lg
sm_lastguard_ct: 0 - disabled, 1 - allow last CT to set Last Guard Rule
sm_lastguard_vote: 0 - disabled, 1 - allow alive player to vote for Last Guard Rule
sm_lastguard_auto: 0 - disabled, 1 - Last Guard Rule will start automatic if there is only 1 ct. Disables sm_lastguard_vote & sm_lastguard_ct
sm_lastguard_freeze: Freeze all players the half of trucetime. Default 0
sm_lastguard_hp: How many percent of the combined Terror Health the CT get? (3 terror alive with 100HP = 300HP / 50% = CT get 150HP: Default 50
sm_lastguard_trucetime: Time in seconds players can't deal damage. Half of this time you are freezed. Default 10
sm_lastguard_sounds_enable: 0 - disabled, 1 - enable sounds
sm_lastguard_sounds_start: Path to the soundfile which should be played for LGR beginn. "music/MyJailbreak/start.mp3"
sm_lastguard_sounds_beginn: Path to the soundfile which should be played for LGR anouncment. "music/MyJailbreak/lastct.mp3"
sm_lastguard_overlays_enable: 0 - disabled, 1 - enable overlays. Default 1
sm_lastguard_overlays_start: Path to the start Overlay DONT TYPE .vmt or .vft. Default "overlays/MyJailbreak/start"
[/CODE]
[/SPOILER]
[U][B]Menu[/B][/U]
This plugins allows players to open a menu with ","-Key (buyammo) or command.
It will show different menus for Terrorists, Counter-Terrorists, admin & warden. The menu shows only features that are enabled (e.g at EventDays no warden menu).
[b]Commands[/b]
[SPOILER]
[CODE]
sm_menu / sm_menus - opens the menu depends on players team/rank
sm_days / sm_eventdays - open a vote EventDays menu for player
sm_setdays / sm_seteventdays - open a set EventDays menu for warden or admins
set your own custom command. take a look at "sm_menu_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_menu_version - Shows the version of the SourceMod plugin MyJailbreak - Menu
sm_menu_enable: 0 - disabled, 1 - enable Jailbreak menu
sm_menu_cmd: Set your custom chat command for Last Guard Rule. no need for sm_ or !. Default "panel" results in !panel /panel & sm_panel
sm_menu_ct: 0 - disabled, 1 - enable Jailbreak menu for CT
sm_menu_t: 0 - disabled, 1 - enable Jailbreak menu for Terrorists
sm_menu_warden: disabled, 1 - enable Jailbreak menu for warden
sm_menu_days: 0 - disabled, 1 - enable vote/set EventDays menu
sm_menu_close: 0 - disabled, 1 - close menu after action
sm_menu_start: 0 - disabled, 1 - open menu on every roundstart
sm_menu_team: 0 - disabled, 1 - enable join team on menu
[/CODE]
[/SPOILER]
[b]Menu Structure[/b]
[SPOILER]
[U][B]WardenMenu[/B][/U]
[LIST]
[*]Weapon Menu
[*]Open Cells
[*]Countdown
[/LIST]
[INDENT][LIST]
[*]Beginn a Start Countdown
[*]Beginn a Stop Countdown
[*]Set a Start/Stop Countdown
[/LIST][/INDENT]
[INDENT][INDENT][LIST]
[*]15 seconds
[*]30 seconds
[*]45 seconds
[*]1 Minute
[*]1 Minute 30 seconds
[*]2 Minutes
[*]3 Minutes
[*]5 Minutes
[/LIST][/INDENT][/INDENT]
[LIST]
[*]Math Quiz
[*]Set a Event Days
[/LIST][INDENT]
[LIST]
[*]War
[*]FFA
[*]Zombie
[*]Hide
[*]Catch & Freeze
[*]Suicide Bomber
[*]HEbattle
[*]NoScope
[*]DuckHunt
[*]Drunken
[*]Deal Damage
[*]Zeus
[*]Knifefight
[*]TorchRelay
[*]Cowboy
[*]Freeday
[/LIST][/INDENT]
[LIST]
[*]Toggle Bullet sparks
[*]Drawer Menu
[/LIST]
[INDENT][LIST]
[*]Enable Drawer for terrors
[*]Disable Drawer
[*]Rainbow
[*]White
[*]Red
[*]Green
[*]Blue
[*]Yellow
[*]Cyan
[*]Magenta
[*]Orange
[/LIST][/INDENT]
[LIST]
[*]Laser Pointer Menu
[/LIST]
[INDENT][LIST]
[*]Disable Laser Pointer
[*]Rainbow
[*]White
[*]Red
[*]Green
[*]Blue
[*]Yellow
[*]Cyan
[*]Magenta
[*]Orange
[/LIST][/INDENT]
[LIST]
[*]Mute Menu
[INDENT][LIST]
[*]Mute a Terrorists
[*]Unute a Terrorists
[/LIST][/INDENT]
[*]Checkplayer
[*]Toggle Friendly Fire
[*]Toggle No Block
[*]Kill a random Player
[/LIST]
[INDENT][LIST]
[*]Are you sure?
[*]Yes
[*]No
[/LIST][/INDENT]
[LIST]
[*]Leave warden
[*]Rules
[/LIST]
[U][B]Counter-Terrorists Menu[/B][/U]
[LIST]
[*]Weapon Menu
[*]Become warden
[*]Vote for Event Days
[/LIST]
[INDENT][LIST]
[*]War
[*]FFA
[*]Zombie
[*]Hide
[*]Catch & Freeze
[*]Suicide Bomber
[*]HEbattle
[*]NoScope
[*]DuckHunt
[*]Drunken
[*]Deal Damage
[*]Zeus
[*]Knifefight
[*]TorchRelay
[*]Cowboy
[*]Freeday
[/LIST][/INDENT]
[LIST]
[*]Checkplayer
[*]Join Terrorists
[/LIST]
[INDENT][LIST]
[*]Are you sure?
[*]Yes
[*]No
[/LIST][/INDENT]
[LIST]
[*]Rules
[/LIST]
[U][B]Terrorists Menu[/B][/U]
[LIST]
[*]Weapon Menu
[*]Request Menu
[INDENT][LIST]
[*]Report Freeday
[*]Repeat announcement
[*]Refuse a game
[*]Request Healing
[*]Capitulation
[/LIST][/INDENT]
[*]Vote against warden
[*]Vote for Event Days
[/LIST]
[INDENT][LIST]
[*]War
[*]FFA
[*]Zombie
[*]Hide
[*]Catch & Freeze
[*]Suicide Bomber
[*]HEbattle
[*]NoScope
[*]DuckHunt
[*]Drunken
[*]Deal Damage
[*]Zeus
[*]Knifefight
[*]TorchRelay
[*]Cowboy
[*]Freeday
[/LIST][/INDENT]
[LIST]
[*]Join CT queue (!guard)
[*]or
[*]Join Counter-Terrorists
[/LIST]
[INDENT][LIST]
[*]Are you sure?
[*]Yes
[*]No
[/LIST][/INDENT]
[LIST]
[*]Rules
[/LIST]
[U][B]Additionally for Admins[/B][/U]
[LIST]
[*]Set a Event Days
[/LIST]
[INDENT][LIST]
[*]War
[*]FFA
[*]Zombie
[*]Hide
[*]Catch & Freeze
[*]Suicide Bomber
[*]HEbattle
[*]NoScope
[*]DuckHunt
[*]Drunken
[*]Deal Damage
[*]Zeus
[*]Knifefight
[*]TorchRelay
[*]Cowboy
[*]Freeday
[/LIST][/INDENT]
[LIST]
[*]Remove warden
[*]Set new warden
[/LIST]
[INDENT][LIST]
[*]Choose Player
[/LIST][/INDENT]
[INDENT][INDENT][LIST]
[*]sure kick old warden?
[*]Yes
[*]No
[/LIST][/INDENT][/INDENT]
[LIST]
[*]Admin menu
[/LIST]
[/SPOILER]
[IMG]http://shanapu.de/myjb/menu.png[/IMG]
[U][B]Weapons[/B][/U]
This plugins open a Gunmenu to players. Terroists only on EventDays.
[b]Commands[/b]
[SPOILER]
[CODE]
sm_gun / sm_guns / sm_gunmenu - Open the weapon menu if enabled (in EventDays/for CT)
sm_weapon / sm_weapons / sm_weaponsmenu - Open the weapon menu if enabled (in EventDays/for CT)
sm_giveweapon - Open the weapon menu if enabled (in EventDays/for CT)
set your own custom command. take a look at "sm_weapons_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_weapons_version - Shows the version of the SourceMod plugin MyJailbreak - Weapons
sm_weapons_cmd: Set your custom chat command for weaponmenu. no need for sm_ or ! . Default "arms" results in !arms /arms & sm_arms
sm_weapons_enable: 0 - disabled, 1 - enable weapons menu - you shouldn't touch these, cause events days will handle them
sm_weapons_ct: 0 - disabled, 1 - enable weapons menu for CT - you shouldn't touch these, cause events days will handle them
sm_weapons_t: 0 - disabled, 1 - enable weapons menu for T - you shouldn't touch these, cause events days will handle them
sm_weapons_spawnmenu: disabled, 1 - enable autoopen weapon menu on spawn if enabled
sm_weapons_awp: 0 - disabled, 1 - enable AWP in weapon menu
sm_weapons_autosniper: 0 - disabled, 1 - enable scar20 & g3sg1 in menu
sm_weapons_tagrenade: 0 - disabled, 1 - warden get a TA grenade with weapons
sm_weapons_warden_healthshot: 0 - disabled, 1 - warden get a healthshot with weapons
sm_weapons_jbmenu: 0 - disabled, 1 - enable autoopen the MyJailbreak menu after weapon given.
[/CODE]
[/SPOILER]
[IMG]http://shanapu.de/myjb/weapons.jpg[/IMG]
[B][U]PlayerTags[/U][/B]
This plugins give players tags for team (T,CT) and "rank" (admin/vip/warden) in stats &/or chat.
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_playertag_version - Shows the version of the SourceMod plugin MyJailbreak - PlayerTags
sm_playertag_enable: 0 - disabled, 1 - enable Player Tag
sm_playertag_stats: 0 - disabled, 1 - enable PlayerTag in stats
sm_playertag_chat: 0 - disabled, 1 - enable PlayerTag in chat
sm_playertag_ownerflag: Set the flag for Owner. Default z
sm_playertag_adminflag: Set the flag for Admin. Default d
sm_playertag_vipflag: Set the flag for VIP. Default t
sm_playertag_vip2flag: Set the flag for VIP2. Default a
sm_playertag_overwrite: 0 - only show tags for warden, admin & vip (no overwrite for prisoner & guards) 1 - enable tags for Prisioner & guards,too. Default 1
[/CODE]
[/SPOILER]
[U][B]EventDays core[/B][/U]
This plugins is the "interface" between Eventdays. Need for cooldowns and disable other days on running Eventday.
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_myjb_tag: 0 - disabled, 1 - Allow "MyJailbreak" to be added to your server tags. So player will find servers with MyJB faster. it dont touch youR sv_tags
sm_myjb_log: 0 - disabled, 1 - Allow MyJailbreak to log events, freekills & eventdays in logs/MyJailbreak by day
```
[/CODE]
[/SPOILER]
[U][B]War[/B][/U]
This plugin allows to vote or set a war CT vs T for next rounds.
On Round start Ts spawn freezed next to CT. CTs must leave the spawn and spread on map. After unfreeze time (def. 30sec) Ts can Move. After nodamage time (def. 30sec) the war CT vs T starts.
Or on Round start Ts spawn in open cells with weapons and weaponmenu. No Freeze/-time. (Default)
[b]Commands[/b]
[SPOILER]
[CODE]
sm_war - Allows players to vote for a war
sm_setwar - Allows the Admin or warden to set a war for next rounds
set your own custom command. take a look at "sm_war_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_war_version - Shows the version of the SourceMod plugin MyJailbreak - War
sm_war_cmd: Set your custom chat command for Event voting. no need for sm_ or ! . Default "TDM" results in !TDM /TDM & sm_TDM
sm_war_enable: 0 - disabled, 1 - enable the war plugin. Default 1
sm_war_setw: 0 - disabled, 1 - allow warden to set next round war. Default 1
sm_war_seta: 0 - disabled, 1 - allow Admin to set next round war round. Default 1
sm_war_flag: Set flag for admin/vip to set this Event Day. Default g
sm_war_rounds: Rounds to play in a row
sm_war_vote: 0 - disabled, 1 - allow player to vote for war. Default 1
sm_war_spawn: 0 - teleport Ts to CT and freeze, 1 - open cell doors an get weapons. Default 0
sm_war_roundtime - Roundtime for a single war round in minutes. Default 5
sm_war_freezetime- Time in seconds Ts are freezed. time to hide on map for CT (need sm_war_spawn: 0). Default 30
sm_war_trucetime - Time in seconds after freezetime damage is disbaled. Default 30
sm_war_cooldown_start - Rounds until event can be start after mapchange. Default 3
sm_war_cooldown_day - Rounds until event can be started again. Default 3
sm_war_sounds_enable: 0 - disabled, 1 - enable sounds. Default 1
sm_war_sounds_start: Path to the soundfile which should be played on start. Default "music/MyJailbreak/start.mp3"
sm_war_overlays_enable: 0 - disabled, 1 - enable start overlay. Default 1
sm_war_overlays_start: Path to the start Overlay DONT TYPE .vmt or .vft. Default "overlays/MyJailbreak/start"
[/CODE]
[/SPOILER]
[U][B]FreeForAll[/B][/U]
This plugin allows to vote or set a FFA war for next rounds.
On Round start Ts spawn next to CT. CTs & Ts can get Weapon an Move. MapFog is on for better hiding. After nodamage time (def. 30sec) the war CT vs T starts and MapFog disabled.
Or on Round start Ts spawn in open cells with weapons & weaponmenu. (Default)
[b]Commands[/b]
[SPOILER]
[CODE]
sm_ffa - Allows players to vote for a FFA
sm_setffa - Allows the Admin or warden to set a ffa for next rounds
set your own custom command. take a look at "sm_ffa_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_ffa_version - Shows the version of the SourceMod plugin MyJailbreak - FFA
sm_ffa_cmd: Set your custom chat command for Event voting. no need for sm_ or ! . Default "DM" results in !DM /DM & sm_DM
sm_ffa_enable: 0 - disabled, 1 - enable the ffa plugin. Default 1
sm_ffa_setw: 0 - disabled, 1 - allow warden to set next round ffa. Default 1
sm_ffa_seta: 0 - disabled, 1 - allow Admin to set next round ffa round. Default 1
sm_ffa_flag: Set flag for admin/vip to set this Event Day. Default g
sm_ffa_rounds: Rounds to play in a row
sm_ffa_vote: 0 - disabled, 1 - allow player to vote for ffa. Default 1
sm_ffa_spawn: 0 - teleport Ts to CT and freeze, 1 - open cell doors an get weapons (need smartjaildoors). Default 0
sm_ffa_roundtime - Roundtime for a single ffa round in minutes. Default 5
sm_ffa_trucetime - Time in seconds after freezetime damage is disbaled. Default 30
sm_ffa_cooldown_start - Rounds until event can be start after mapchange. Default 3
sm_ffa_cooldown_day - Rounds until event can be started again. Default 3
sm_ffa_sounds_enable: 0 - disabled, 1 - enable sounds. Default 1
sm_ffa_sounds_start: Path to the soundfile which should be played on start. Default "music/MyJailbreak/start.mp3"
sm_ffa_overlays_enable: 0 - disabled, 1 - enable start overlay. Default 1
sm_ffa_overlays_start: Path to the start Overlay DONT TYPE .vmt or .vft. Default "overlays/MyJailbreak/start"
[/CODE]
[/SPOILER]
[U][B]Zombie[/B][/U]
This plugin allows players to vote and warden to set next rounds to zombie escape.
On Round start Ts spawn in open cells with weapons & weaponmenu. CT are zombies with a zombie model, and with 8500 HP.
Zombies freezed for 35sec (default) so T can hide &/or climb.
[b]Commands[/b]
[SPOILER]
[CODE]]
sm_zombie - Allows players to vote for a Zombie
sm_setzombie - Allows the Admin or warden to set Zombie as next round
set your own custom command. take a look at "sm_zombie_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_zombie_version - Shows the version of the SourceMod plugin MyJailbreak - Zombie
sm_zombie_cmd: Set your custom chat command for Event voting. no need for sm_ or ! . Default "zd" results in !zd /zd & sm_zd
sm_zombie_setw: 0 - disabled, 1 - allow warden to set next round zombie. Default 1
sm_zombie_seta: 0 - disabled, 1 - allow Admin to set next round zombie round. Default 1
sm_zombie_flag: Set flag for admin/vip to set this Event Day. Default g
sm_zombie_vote: 0 - disabled, 1 - allow player to vote for zombie. Default 1
sm_zombie_enable: 0 - disabled, 1 - enable the zombie plugin. Default 1
sm_zombie_spawn: 0 - teleport Ts to CT and freeze, 1 - open cell doors an get weapons. Default 0
sm_zombie_rounds: Rounds to play in a row. Default 1
sm_zombie_roundtime - Roundtime for a single zombie round in minutes. Default 5
sm_zombie_freezetime - Time in seconds Zombies freezed. Default 35
sm_zombie_hp: HP the Zombies got on Spawn. Default 8500
sm_zombie_human_hp: HP the Humans got on Spawn. Default 65
sm_zombie_cooldown_start - Rounds until event can be start after mapchange. Default 3
sm_zombie_cooldown_day - Rounds until event can be started again. Default 3
sm_zombie_sounds_enable: 0 - disabled, 1 - enable sounds. Default 1
sm_zombie_sounds_start: Path to the soundfile which should be played on start. Default "music/MyJailbreak/zombie.mp3"
sm_zombie_overlays_enable: 0 - disabled, 1 - enable start overlay. Default 1
sm_zombie_overlays_start: Path to the start Overlay DONT TYPE .vmt or .vft. Default "overlays/MyJailbreak/zombie"
sm_zombie_model: Path to the model for zombies. Default "models/player/custom_player/zombie/revenant/revenant_v2.mdl"
[/CODE]
[/SPOILER]
[IMG]http://shanapu.de/myjb/zombie2.jpg[/IMG][IMG]http://shanapu.de/myjb/zombie1.jpg[/IMG]
[U][B]Noscope[/B][/U]
This plugin allows players to vote and warden to set next rounds to noscope
On Round start cells open everybody got sniper rifle with noscope and low gravity. Nodamage time (def. 30sec).
[b]Commands[/b]
[SPOILER]
[CODE]
sm_noscope - Allows players to vote for a noscope
sm_setnoscope - Allows the Admin or warden to set noscope as next round
set your own custom command. take a look at "sm_noscope_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_noscope_version - Shows the version of the SourceMod plugin MyJailbreak - noscope
sm_noscope_cmd: Set your custom chat command for Event voting. no need for sm_ or ! . Default "scope" results in !scope /scope & sm_scope
sm_noscope_enable: 0 - disabled, 1 - enable the noscope plugin. Default 1
sm_noscope_setw: 0 - disabled, 1 - allow warden to set next round noscope. Default 1
sm_noscope_seta: 0 - disabled, 1 - allow Admin to set next round noscope round. Default 1
sm_noscope_flag: Set flag for admin/vip to set this Event Day. Default g
sm_noscope_spawn: 0 - teleport Ts to CT and freeze, 1 - open cell doors an get weapons. Default 0
sm_noscope_vote: 0 - disabled, 1 - allow player to vote for noscope. Default 1
sm_noscope_rounds: Rounds to play in a row. Default 1
sm_noscope_weapon: 1 - ssg08 / 2 - awp / 3 - scar20 / 4 - g3sg1. Default 1
sm_noscope_random: 0 - disabled, 1 - get a random weapon (ssg08,awp,scar20,g3sg1) ignore: sm_noscope_weapon. Default 1
sm_noscope_gravity: 0 - disabled, 1 - enable low Gravity for noscope. Default 1
sm_noscope_gravity_value - Ratio for Gravity 1.0 earth 0.5 moon. Default 0.3
sm_noscope_roundtime - Roundtime for a single noscope round in minutes. Default 5
sm_noscope_trucetime - Time in seconds damage is disbaled. Default 15
sm_noscope_cooldown_start - Rounds until event can be start after mapchange. Default 3
sm_noscope_cooldown_day - Rounds until event can be started again. Default 3
sm_noscope_sounds_enable: 0 - disabled, 1 - enable sounds. Default 1
sm_noscope_sounds_start: Path to the soundfile which should be played on start. Default "music/MyJailbreak/start.mp3"
sm_noscope_overlays_enable: 0 - disabled, 1 - enable start overlay. Default 1
sm_noscope_overlays_start: Path to the start Overlay DONT TYPE .vmt or .vft. Default "overlays/MyJailbreak/start"
[/CODE]
[/SPOILER]
[B][U]HE Battle[/U][/B]
This plugin allows players to vote and warden to set next round to HEbattle.
On Round start cells open everybody got HE grenate with low gravity(Default) and reduced HP.
[b]Commands[/b]
[SPOILER]
[CODE]
sm_hebattle - Allows players to vote for a hebattle
sm_sethebattle - Allows the Admin or warden to set hebattle as next round
set your own custom command. take a look at "sm_hebattle_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_hebattle_version - Shows the version of the SourceMod plugin MyJailbreak - hebattle
sm_hebattle_enable: 0 - disabled, 1 - enable the hebattle plugin. Default 1
sm_hebattle_cmd: Set your custom chat command for Event voting. no need for sm_ or ! . Default "he" results in !he /he & sm_he
sm_hebattle_setw: 0 - disabled, 1 - allow warden to set next round HEbattle. Default 1
sm_hebattle_seta: 0 - disabled, 1 - allow Admin to set next round HEbattle round. Default 1
sm_hebattle_flag: Set flag for admin/vip to set this Event Day. Default g
sm_hebattle_spawn: 0 - teleport Ts to CT and freeze, 1 - open cell doors an get weapons. Default 0
sm_hebattle_vote: 0 - disabled, 1 - allow player to vote for HEbattle. Default 1
sm_hebattle_hp: HP a Player get on Spawn. Default 85
sm_hebattle_rounds: Rounds to play in a row
sm_hebattle_gravity: 0 - disabled, 1 - enable low Gravity for hebattle. Default 1
sm_hebattle_gravity_value - Ratio for Gravity 1.0 earth 0.5 moon. Default 0.3
sm_hebattle_roundtime - Roundtime for a single hebattle round in minutes. Default 5
sm_hebattle_trucetime - Time in seconds damage is disbaled. Default 15
sm_hebattle_cooldown_start - Rounds until event can be start after mapchange. Default 3
sm_hebattle_cooldown_day - Rounds until event can be started again. Default 3
sm_hebattle_sounds_enable: 0 - disabled, 1 - enable sounds. Default 1
sm_hebattle_sounds_start: Path to the soundfile which should be played on start. Default "music/MyJailbreak/start.mp3"
sm_hebattle_overlays_enable: 0 - disabled, 1 - enable start overlay. Default 1
sm_hebattle_overlays_start: Path to the start Overlay DONT TYPE .vmt or .vft. Default "overlays/MyJailbreak/start"
[/CODE]
[/SPOILER]
[U][B]Catch & Freeze[/B][/U]
This plugin allows players to vote and warden to set next round to catch.
On Round start cells open an Ts must "runaway". CT must catch and freeze all Ts by knifing.
Ts can unfreeze Freezed Ts by knife them again.
CT and T can Sprint with USE-Key (default).
[b]Commands[/b]
[SPOILER]
[CODE]
sm_catch - Allows players to vote for a catch
sm_setcatch - Allows the Admin or warden to set catch as next round
sm_sprint - Start sprinting!
set your own custom command. take a look at "sm_catch_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_catch_version - Shows the version of the SourceMod plugin MyJailbreak - catch
sm_catch_cmd: Set your custom chat command for Event voting. no need for sm_ or ! . Default "cat" results in !cat /cat & sm_cat
sm_catch_setw: 0 - disabled, 1 - allow warden to set next round ffa. Default 1
sm_catch_seta: 0 - disabled, 1 - allow Admin to set next round ffa round. Default 1
sm_catch_flag: Set flag for admin/vip to set this Event Day. Default g
sm_catch_vote: 0 - disabled, 1 - allow player to vote for ffa. Default 1
sm_catch_rounds: Rounds to play in a row
sm_catch_enable: 0 - disabled, 1 - enable the catch plugin. Default 1
sm_catch_sprint_enable: 0 - disabled, 1 - enable ShortSprint. Default 1
sm_catch_sprint_button: 0 - disabled, 1 - enable +use button support. Default 1
sm_catch_sprint_cooldown: Time in seconds the player must wait for the next sprint. Default 10
sm_catch_sprint_speed: Ratio for how fast the player will sprint. Default 1.25
sm_catch_sprint_time: Time in seconds the player will sprint. Default 3.5
sm_catch_roundtime - Roundtime for a single catch round in minutes. Default 5
sm_catch_cooldown_start - Rounds until event can be start after mapchange. Default 3
sm_catch_cooldown_day - Rounds until event can be started again. Default 3
sm_catch_overlays_enable: 0 - disabled, 1 - enable freezed overlays. Default 1
sm_catch_stayoverlay: 0 - overlays will removed after 3sec. , 1 - overlays will stay until unfreeze. Default 1
sm_catch_overlayfreeze_path: Path to the start Overlay DONT TYPE .vmt or .vft. Default "overlays/MyJailbreak/freeze"
sm_catch_sounds_enable: 0 - disabled, 1 - enable un/-Freeze sounds. Default 1
sm_catch_sounds_freeze: Path to the soundfile which should be played on freeze. Default "music/MyJailbreak/freeze.mp3"
sm_catch_sounds_unfreeze: Path to the soundfile which should be played on unfreeze. Default "music/MyJailbreak/unfreeze.mp3"
[/CODE]
[/SPOILER]
[IMG]http://shanapu.de/myjb/catch.jpg[/IMG]
[U][B]Hide in the Dark[/B][/U]
This plugin allows players to vote and warden to set next round to hide in the dark.
Map is darken. CTs freezed, Cells open and Ts got time to hide on map. CT got a TA grenades & more movement speed.
When CT unfreezed (30sec. default) Ts get freezed (default).
[b]Commands[/b]
[SPOILER]
[CODE]
sm_hide - Allows players to vote for a hide
sm_sethide - Allows the Admin or warden to set hide as next round
set your own custom command. take a look at "sm_hide_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_hide_version - Shows the version of the SourceMod plugin MyJailbreak - hide
sm_hide_cmd: Set your custom chat command for Event voting. no need for sm_ or ! . Default "seek" results in !seek /seek & sm_seek
sm_hide_setw: 0 - disabled, 1 - allow warden to set next round ffa. Default 1
sm_hide_seta: 0 - disabled, 1 - allow Admin to set next round ffa round. Default 1
sm_hide_flag: Set flag for admin/vip to set this Event Day. Default g
sm_hide_vote: 0 - disabled, 1 - allow player to vote for ffa. Default 1
sm_hide_enable: 0 - disabled, 1 - enable the hide plugin. Default 1
sm_hide_rounds: Rounds to play in a row
sm_hide_roundtime - Roundtime for a single hide round in minutes. Default 5
sm_hide_hidetime - Time in seconds to hide. Default 30
sm_hide_freezehider: 0 - disabled, 1 - enable freeze hider when hidetime gone. Default 1
sm_hide_tagrenades: how many tagrenades a guard have? Default 3
sm_hide_cooldown_start - Rounds until event can be start after mapchange. Default 3
sm_hide_cooldown_day - Rounds until event can be started again. Default 3
sm_hide_sounds_enable: 0 - disabled, 1 - enable sounds. Default 1
sm_hide_sounds_start: Path to the soundfile which should be played on start. Default "music/MyJailbreak/start.mp3"
sm_hide_overlays_enable: 0 - disabled, 1 - enable start overlay. Default 1
sm_hide_overlays_start: Path to the start Overlay DONT TYPE .vmt or .vft. Default "overlays/MyJailbreak/start"
[/CODE]
[/SPOILER]
[U][B]DuckHunt[/B][/U]
This plugin allows players to vote and warden to set next round to duckhunt.
T are Chicken in Thirdperson. After trucetime the cells open and T got HE grenade **but only secondary Attack!** CT as heavy with nova .
[b]Commands[/b]
[SPOILER]
[CODE]
sm_duckhunt - Allows players to vote for a duckhunt
sm_setduckhunt - Allows the Admin or warden to set duckhunt as next round
set your own custom command. take a look at "sm_duckhunt_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_duckhunt_version - Shows the version of the SourceMod plugin MyJailbreak - duckhunt
sm_duckhunt_cmd: Set your custom chat command for Event voting. no need for sm_ or ! . Default "duck" results in !duck /duck & sm_duck
sm_duckhunt_setw: 0 - disabled, 1 - allow warden to set next round ffa. Default 1
sm_duckhunt_seta: 0 - disabled, 1 - allow Admin to set next round ffa round. Default 1
sm_duckhunt_flag: Set flag for admin/vip to set this Event Day. Default g
sm_duckhunt_vote: 0 - disabled, 1 - allow player to vote for ffa. Default 1
sm_duckhunt_enable: 0 - disabled, 1 - enable the duckhunt plugin. Default 1
sm_duckhunt_rounds: Rounds to play in a row
sm_duckhunt_roundtime - Roundtime for a single duckhunt round in minutes. Default 5
sm_duckhunt_trucetime - Time in seconds damage is disbaled. Default 15
sm_duckhunt_cooldown_start - Rounds until event can be start after mapchange. Default 3
sm_duckhunt_cooldown_day - Rounds until event can be started again. Default 3
sm_duckhunt_sounds_enable: 0 - disabled, 1 - enable sounds. Default 1
sm_duckhunt_sounds_start: Path to the soundfile which should be played on start. Default "music/MyJailbreak/start.mp3"
sm_duckhunt_overlays_enable: 0 - disabled, 1 - enable start overlay. Default 1
sm_duckhunt_overlays_start: Path to the start Overlay DONT TYPE .vmt or .vft. Default "overlays/MyJailbreak/start"
[/CODE]
[/SPOILER]
[U][B]Suicide Bomber[/B][/U]
This plugin allows players to vote and warden to set next round to Suicide Bomber.
On Round start CTs got time to hide before cells open and Ts got Suicide bombs to kill all CT.
CT and T can Sprint with USE-Key (default).
[b]Commands[/b]
[SPOILER]
[CODE]
sm_suicidebomber - Allows players to vote for a duckhunt
sm_setsuicidebomber - Allows the Admin or warden to set Suicide Bomber as next round
sm_sprint - Start sprinting!
sm_makeboom - Suicide with bomb.
set your own custom command. take a look at "sm_suicidebomber_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_suicidebomber_version - Shows the version of the SourceMod plugin MyJailbreak - Suicide Bomber
sm_suicidebomber_enable: 0 - disabled, 1 - enable the plugin. Default 1
sm_suicidebomber_cmd: Set your custom chat command for Event voting. no need for sm_ or ! . Default "suicide" results in !suicide /suicide & sm_suicide
sm_suicidebomber_setw: 0 - disabled, 1 - allow warden to set next round ffa. Default 1
sm_suicidebomber_seta: 0 - disabled, 1 - allow Admin to set next round ffa round. Default 1
sm_suicidebomber_flag: Set flag for admin/vip to set this Event Day. Default g
sm_suicidebomber_vote: 0 - disabled, 1 - allow player to vote for ffa. Default 1
sm_suicidebomber_rounds: Rounds to play in a row
sm_suicidebomber_key: 1 - Inspect(look) weapon / 2 - walk / 3 - Secondary Attack. Default 1
sm_suicidebomber_standstill: 0 - disabled, 1 - standstill(cant move) on Activate bomb. Default 0
sm_suicidebomber_bomb_radius: Radius for bomb damage. Default 200
sm_suicidebomber_sprint_enable: 0 - disabled, 1 - enable ShortSprint. Default 1
sm_suicidebomber_sprint_button: 0 - disabled, 1 - enable +use button support. Default 1
sm_suicidebomber_sprint_cooldown: Time in seconds the player must wait for the next sprint. Default 10
sm_suicidebomber_sprint_speed: Ratio for how fast the player will sprint. Default 1.25
sm_suicidebomber_sprint_time: Time in seconds the player will sprint. Default 3.5
sm_suicidebomber_roundtime - Roundtime for a single Suicide Bomber round in minutes. Default 5
sm_suicidebomber_hidetime - Time to hide. Default 20
sm_suicidebomber_cooldown_start - Rounds until event can be start after mapchange. Default 3
sm_suicidebomber_cooldown_day - Rounds until event can be started again. Default 3
sm_suicidebomber_sounds_enable: 0 - disabled, 1 - enable sounds. Default 1
sm_suicidebomber_sounds_start: Path to the soundfile which should be played on start. Default "music/MyJailbreak/start.mp3"
sm_suicidebomber_sounds_suicidebomber - Path to the soundfile which should be played on activate bomb. Default "music/MyJailbreak/suicidebomber.mp3"
sm_suicidebomber_sounds_boom - Path to the soundfile which should be played on detonation. Default "music/MyJailbreak/boom.mp3"
sm_suicidebomber_overlays_enable: 0 - disabled, 1 - enable start overlay. Default 1
sm_suicidebomber_overlays_start: Path to the start Overlay DONT TYPE .vmt or .vft. Default "overlays/MyJailbreak/start"
[/CODE]
[/SPOILER]
[U][B]Deal Damage[/B][/U]
This plugin allows players to vote and warden to set next round to deal damage
On Round start cells open everybody got godmode. Damage will be shown in mid of screen. Do so muhc damage as you can to enemy team. Team with most damage wins.
[b]Commands[/b]
[SPOILER]
[CODE]
sm_dealdamage - Allows players to vote for a dealdamage round
sm_setdealdamage - Allows the Admin or warden to set dealdamage as next round
set your own custom command. take a look at "sm_dealdamage_cmd"
[/CODE]
[/SPOILER]
[b]ConVars[/b]
[SPOILER]
[CODE]
sm_setdealdamage: Allows the Admin or Warden to set dealdamage as next round
sm_dealdamage: Allows players to vote for a dealdamage