-
Notifications
You must be signed in to change notification settings - Fork 9
/
MultiBotLanguage-enUS.lua
2363 lines (1959 loc) · 85 KB
/
MultiBotLanguage-enUS.lua
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
if(GetLocale() == "enUS") then
MultiBot.info.command =
"Command not found.";
MultiBot.info.target =
"I dont have a Target.";
MultiBot.info.classes =
"The Classes do not match.";
MultiBot.info.levels =
"The Levels do not match.";
MultiBot.info.spell =
"I couldnt identify the Spell.";
MultiBot.info.macro =
"I already have the maximum # of private Macros.";
MultiBot.info.neither =
"I neither have a Target nor am I in a Raid or Party.";
MultiBot.info.group =
"I'm neither in a Raid nor in a Party.";
MultiBot.info.inviting =
"Inviting NAME to the Group.";
MultiBot.info.combat =
"Asked NAME for Combat-Strategies.";
MultiBot.info.teleport =
"will teleport you to 'MAP - ZONE'";
MultiBot.info.normal =
"Asked NAME for Non-Combat-Strategies.";
MultiBot.info.inventory =
"Inventory of NAME";
MultiBot.info.spellbook =
"Spellbook of NAME";
MultiBot.info.player =
"I wont Auto-Initialize 'NAME' from the Playerbot-Roster.";
MultiBot.info.member =
"I wont Auto-Initialize 'NAME' from the Guild-Roster.";
MultiBot.info.players =
"I wont Auto-Initialize anyone from the Playerbot-Roster.";
MultiBot.info.members =
"I wont Auto-Initialize anyone from the Guild-Roster.";
MultiBot.info.wait =
"I already invited Members, please wait until I am done.";
MultiBot.info.starting =
"Starting to invite Members.";
MultiBot.info.stats =
"Auto-Stats is for Parties, not for a Raids.";
MultiBot.info.location =
"has no Location stored inside.";
MultiBot.info.itlocation =
"It has no Location stored inside.";
MultiBot.info.saving =
"I am still in the process of saving my position.";
MultiBot.info.action =
"I need to select a Action.";
MultiBot.info.combination =
"There are no Items for this Combination.";
--MultiBot.info.language =
--"I need to activate the Language-Selector first.";
MultiBot.info.rights =
"I have not the GameMaster-Rights.";
MultiBot.info.reward =
"Select the Rewards";
MultiBot.info.shorts.bag =
"Bag";
MultiBot.info.shorts.dur =
"Dur";
MultiBot.info.shorts.xp =
"XP";
MultiBot.info.shorts.mp =
"MP";
-- INFO:TALENT --
MultiBot.info.talent.Level =
"His Level is lower than 10.";
MultiBot.info.talent.OutOfRange =
"The Bot is out of Range.";
MultiBot.info.talent.Apply =
"Apply";
MultiBot.info.talent.Copy =
"Copy";
MultiBot.info.talent.Title =
"Talents from NAME";
MultiBot.info.talent.Points =
"|cffffcc00Unspent Talents: |r";
MultiBot.info.talent.DeathKnight1 =
"|cffffcc00Blood|r";
MultiBot.info.talent.DeathKnight2 =
"|cffffcc00Frost|r";
MultiBot.info.talent.DeathKnight3 =
"|cffffcc00Unholy|r";
MultiBot.info.talent.Druid1 =
"|cffffcc00Balance|r";
MultiBot.info.talent.Druid2 =
"|cffffcc00Feral Combat|r";
MultiBot.info.talent.Druid3 =
"|cffffcc00Restoration|r";
MultiBot.info.talent.Hunter1 =
"|cffffcc00Beast Mastery|r";
MultiBot.info.talent.Hunter2 =
"|cffffcc00Marksmenschip|r";
MultiBot.info.talent.Hunter3 =
"|cffffcc00Survival|r";
MultiBot.info.talent.Mage1 =
"|cffffcc00Arcane|r";
MultiBot.info.talent.Mage2 =
"|cffffcc00Fire|r";
MultiBot.info.talent.Mage3 =
"|cffffcc00Frost|r";
MultiBot.info.talent.Paladin1 =
"|cffffcc00Holy|r";
MultiBot.info.talent.Paladin2 =
"|cffffcc00Protection|r";
MultiBot.info.talent.Paladin3 =
"|cffffcc00Retribution|r";
MultiBot.info.talent.Priest1 =
"|cffffcc00Discipline|r";
MultiBot.info.talent.Priest2 =
"|cffffcc00Holy|r";
MultiBot.info.talent.Priest3 =
"|cffffcc00Shadow|r";
MultiBot.info.talent.Rogue1 =
"|cffffcc00Assassination|r";
MultiBot.info.talent.Rogue2 =
"|cffffcc00Combat|r";
MultiBot.info.talent.Rogue3 =
"|cffffcc00Subtlety|r";
MultiBot.info.talent.Shaman1 =
"|cffffcc00Elemental|r";
MultiBot.info.talent.Shaman2 =
"|cffffcc00Enchanement|r";
MultiBot.info.talent.Shaman3 =
"|cffffcc00Restoration|r";
MultiBot.info.talent.Warlock1 =
"|cffffcc00Affliction|r";
MultiBot.info.talent.Warlock2 =
"|cffffcc00Demonology|r";
MultiBot.info.talent.Warlock3 =
"|cffffcc00Destruction|r";
MultiBot.info.talent.Warrior1 =
"|cffffcc00Arms|r";
MultiBot.info.talent.Warrior2 =
"|cffffcc00Fury|r";
MultiBot.info.talent.Warrior3 =
"|cffffcc00Protection|r";
-- MOVE --
MultiBot.tips.move.inventory =
"Right-Click to drag and move the Inventory";
MultiBot.tips.move.stats =
"Right-Click to drag and move Auto-Stats";
MultiBot.tips.move.itemus =
"Right-Click to drag and move Itemus";
MultiBot.tips.move.iconos =
"Right-Click to drag and move Iconos";
MultiBot.tips.move.spellbook =
"Right-Click to drag and move the Spellbook";
MultiBot.tips.move.reward =
"Right-Click to drag and move the Reward-Selector";
MultiBot.tips.move.talent =
"Right-Click to drag and move the Talents";
-- TANKER --
MultiBot.tips.tanker.master =
"Tank-Attack\n|cffffffff"..
"With this Button the Tanks will attack your target.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to execute Tank-Attack|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
-- ATTACK --
MultiBot.tips.attack.master =
"Attack-Control\n|cffffffff"..
"With this Control you can give the Command to attack.\n"..
"Right-Click the Options to define a new default Action.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to execute the default Action|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to show or hide the Options|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.attack.attack =
"Attack\n|cffffffff"..
"With this Command the whole Raid or Party will attack your target.|r\n\n"..
"|cffff0000Left-Click to execute Attack|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to define as default Action|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.attack.ranged =
"Ranged-Attack\n|cffffffff"..
"With this Command the Ranged-Fighters will attack your target.|r\n\n"..
"|cffff0000Left-Click to execute Ranged-Attack|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to define as default Action|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.attack.melee =
"Melee-Attack\n|cffffffff"..
"With this Command the Melee-Fighters will attack your target.|r\n\n"..
"|cffff0000Left-Click to execute Melee-Attack|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to define as default Action|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.attack.healer =
"Healer-Attack\n|cffffffff"..
"With this Command the Healers will attack your target.|r\n\n"..
"|cffff0000Left-Click to execute Healer-Attack|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to define as default Action|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.attack.dps =
"DPS-Attack\n|cffffffff"..
"With this Command the DPS will attack your target.|r\n\n"..
"|cffff0000Left-Click to execute DPS-Attack|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to define as default Action|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.attack.tank =
"Tank-Attack\n|cffffffff"..
"With this Command the Tanks will attack your target.|r\n\n"..
"|cffff0000Left-Click to execute Tank-Attack|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to define as default Action|r\n"..
"|cff999999(Execution-Order: System)|r";
-- MODE --
MultiBot.tips.mode.master =
"Mode-Control\n|cffffffff"..
"This Control allows you to switch a Combat-Mode on and off.\n"..
"Left-Click the Options to select another Combat-Mode.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to switch the Combat-Mode|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to show or hide Options|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.mode.passive =
"Passive-Mode\n|cffffffff"..
"In the Passive-Mode, your Bots wont attack any Opponent.\n"..
"This Mode is useful to keep the Tank from running into the Opponents during a pull.\n"..
"The Stay-Command cancels Passive-Mode, in combination Stay should be commanded first.\n"..
"The Follow-Command cancels Passive-Mode, in combination Follow should be commanded first.|r\n\n"..
"|cffff0000Left-Click to select and activate Passive-Mode|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
MultiBot.tips.mode.grind =
"Grind-Mode\n|cffffffff"..
"In the Grind-Mode, your Bots attack Opponents independently.\n"..
"This Mode is usefull to level up your Bots.|r\n\n"..
"|cffff0000Left-Click to selet and activate Grind-Mode|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
-- STAY|FOLLOW --
MultiBot.tips.stallow.stay =
"Stay|Follow\n|cffffffff"..
"With this Button you can give the Command to Stay.\n"..
"This Command cancels the Passive-Mode, in combination Stay should be commanded first.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to execute Stay|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
MultiBot.tips.stallow.follow =
"Stay|Follow\n|cffffffff"..
"With this Button you can give the Command to Follow.\n"..
"This Command cancels the Passive-Mode, in combination Follow should be commanded first.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to execute Follow|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
-- FLEE --
MultiBot.tips.flee.master =
"Flee-Control\n|cffffffff"..
"With this Button you can give the Command to Flee.\n"..
"Right-Click the Options to define a new default Action.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to execute the default Action|r\n"..
"|cff999999(Execution-Order: 'Target', Raid, Party)|r\n\n"..
"|cffff0000Right-Click to show or hide the Options|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.flee.flee =
"Flee\n|cffffffff"..
"With this Button the whole Raid or Party will flee.|r\n\n"..
"|cffff0000Left-Click to execute Flee|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to define as default Action|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.flee.ranged =
"Ranged-Flee\n|cffffffff"..
"With this Button the Ranged-Fighters will flee.|r\n\n"..
"|cffff0000Left-Click to execute Ranged-Flee|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to define as default Action|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.flee.melee =
"Melee-Flee\n|cffffffff"..
"With this Button the Melee-Fighters will flee.|r\n\n"..
"|cffff0000Left-Click to execute Melee-Flee|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to define as default Action|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.flee.healer =
"Healer-Flee\n|cffffffff"..
"With this Button the Healers will flee.|r\n\n"..
"|cffff0000Left-Click to execute Healer-Flee|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to define as default Action|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.flee.dps =
"DPS-Flee\n|cffffffff"..
"With this Button the DPS will flee.|r\n\n"..
"|cffff0000Left-Click to execute DPS-Flee|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to define as default Action|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.flee.tank =
"Tank-Flee\n|cffffffff"..
"With this Button the Tanks will flee.|r\n\n"..
"|cffff0000Left-Click to execute Tank-Flee|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r\n\n"..
"|cffff0000Right-Click to define as default Action|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.flee.target =
"Target-Flee\n|cffffffff"..
"With this Button the Target will flee.|r\n\n"..
"|cffff0000Left-Click to execute Target-Flee|r\n"..
"|cff999999(Execution-Order: Target)|r\n\n"..
"|cffff0000Right-Click to define as default Action|r\n"..
"|cff999999(Execution-Order: System)|r";
-- FORMATION --
MultiBot.tips.format.master =
"Formation-Control\n|cffffffff"..
"This Button allows you to change the Formation of your Bots.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to show or hide the Options|r\n"..
"|cff999999(Execution-Order: System)|r\n\n"..
"|cffff0000Right-Click to ask for the current Formation|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
MultiBot.tips.format.arrow =
"Arrow-Formation\n|cffffffff"..
"The Bots line up in an arrow formation.\n"..
"The Bots line of sight is in your direction.\n\n"..
"1. Line are Tanks\n"..
"2. Line are Melee-Fighters\n"..
"3. Line are Ranged-Fighters\n"..
"4. Line are Healers|r\n\n"..
"|cffff0000Left-Click to select the Arrow-Formation|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
MultiBot.tips.format.queue =
"Queue-Formation\n|cffffffff"..
"The Bots line up in an defensive formation.\n"..
"The Bots line of sight is in your direction.|r\n\n"..
"|cffff0000Left-Click to select the Queue-Formation|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
MultiBot.tips.format.near =
"Near-Formation\n|cffffffff"..
"The Bots line up near by.\n"..
"The Bots line of sight is in your direction.|r\n\n"..
"|cffff0000Left-Click to select the Near-Formation|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
MultiBot.tips.format.melee =
"Melee-Formation\n|cffffffff"..
"The Bots line up for melee fights.\n"..
"The Bots line of sight is in your direction.|r\n\n"..
"|cffff0000Left-Click to select the Melee-Formation|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
MultiBot.tips.format.line =
"Line-Formation\n|cffffffff"..
"The Bots line up on the left and right side in a parallel line.\n"..
"The Bots line of sight is in your direction.|r\n\n"..
"|cffff0000Left-Click to select the Line-Formation|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
MultiBot.tips.format.circle =
"Circle-Formation\n|cffffffff"..
"The Bots line up in a circle around you.\n"..
"The Bots line of sight is directed outwards.|r\n\n"..
"|cffff0000Left-Click to select the Circle-Formation|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
MultiBot.tips.format.chaos =
"Chaos-Formation\n|cffffffff"..
"Each Bot follows you on its own.\n"..
"They line up everywhere they wont.\n"..
"The line of sight could be every direction.|r\n\n"..
"|cffff0000Left-Click to select the Chaos-Formation|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
MultiBot.tips.format.shield =
"Shield-Formation\n|cffffffff"..
"The Bots line up in the front, on the left and right side.\n"..
"The Bots line of sight is in your direction.|r\n\n"..
"|cffff0000Left-Click to select the Shield-Formation|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
-- BEASTMASTER --
MultiBot.tips.beast.master =
"Beastmaster-Control\n|cffffffff"..
"This Button is for the Mod-NPC-Beastmaster of the Azerothcore.\n"..
"Mod-NPC-Beastmaster allows every Character to have a Pet like Hunters.\n"..
"Your Charaters can learn the nessasary Spells from White Fang.\n"..
"White Fang must be placed into the World by the GameMaster.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to show or hide the Options|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.beast.release =
"Release the Beast\n|cffffffff"..
"This Button will release the Beast.|r\n\n"..
"|cffff0000Left-Click to release the Beast|r\n"..
"|cff999999(Execution-Order: Target, Raid, Party)|r";
MultiBot.tips.beast.revive =
"Revive the Beast\n|cffffffff"..
"This Button will revive the Beast.|r\n\n"..
"|cffff0000Left-Click to revive the Beast|r\n"..
"|cff999999(Execution-Order: Target, Raid, Party)|r";
MultiBot.tips.beast.heal =
"Heal the Beast\n|cffffffff"..
"This Button will heal the Beast.|r\n\n"..
"|cffff0000Left-Click to heal the Beast|r\n"..
"|cff999999(Execution-Order: Target, Raid, Party)|r";
MultiBot.tips.beast.feed =
"Feed the Beast\n|cffffffff"..
"This Button will feed the Beast.|r\n\n"..
"|cffff0000Left-Click to feed the Beast|r\n"..
"|cff999999(Execution-Order: Target, Raid, Party)|r";
MultiBot.tips.beast.call =
"Call the Beast\n|cffffffff"..
"This Button will call the Beast.|r\n\n"..
"|cffff0000Left-Click to call the Beast|r\n"..
"|cff999999(Execution-Order: Target, Raid, Party)|r";
-- CREATOR --
MultiBot.tips.creator.master =
"Creator-Control\n|cffffffff"..
"With this Button you can create Random-Bots by Class.\n"..
"The default Limit is 40 Random-Bots per Account.\n"..
"There is no command to delete them after use.\n"..
"So invite them to your Friendlist for reuse.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to show or hide the Options|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.creator.warrior =
"Create-Warrior\n|cffffffff"..
"This Button will create a Random-Bot as a Warrior.|r\n\n"..
"|cffff0000Left-Click to create a Warrior|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.creator.warlock =
"Create-Warlock\n|cffffffff"..
"This Button will create a Random-Bot as a Warlock.|r\n\n"..
"|cffff0000Left-Click to create a Warlock|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.creator.shaman =
"Create-Shaman\n|cffffffff"..
"This Button will create a Random-Bot as a Shaman.|r\n\n"..
"|cffff0000Left-Click to create a Shaman|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.creator.rogue =
"Create-Rogue\n|cffffffff"..
"This Button will create a Random-Bot as a Rogue.|r\n\n"..
"|cffff0000Left-Click to create a Rogue|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.creator.priest =
"Create-Priest\n|cffffffff"..
"This Button will create a Random-Bot as a Priest.|r\n\n"..
"|cffff0000Left-Click to create a Priest|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.creator.paladin =
"Create-Paladin\n|cffffffff"..
"This Button will create a Random-Bot as a Paladin.|r\n\n"..
"|cffff0000Left-Click to create a Paladin|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.creator.mage =
"Create-Mage\n|cffffffff"..
"This Button will create a Random-Bot as a Mage.|r\n\n"..
"|cffff0000Left-Click to create a Mage|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.creator.hunter =
"Create-Hunter\n|cffffffff"..
"This Button will create a Random-Bot as a Hunter.|r\n\n"..
"|cffff0000Left-Click to create a Hunter|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.creator.druid =
"Create-Druid\n|cffffffff"..
"This Button will create a Random-Bot as a Druid.|r\n\n"..
"|cffff0000Left-Click to create a Druid|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.creator.deathknight =
"Create-DeathKnight\n|cffffffff"..
"This Button will create a Random-Bot as a DeathKnight.|r\n\n"..
"|cffff0000Left-Click to create a DeathKnight|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.creator.inspect =
"Inspect-Target\n|cffffffff"..
"This Button will open the Inspect-Window of your Target.|r\n\n"..
"|cffff0000Left-Click to open Inspect-Window|r\n"..
"|cff999999(Execution-Order: Target)|r";
MultiBot.tips.creator.init =
"Auto-Initialize\n|cffffffff"..
"Use this Button to Auto-Initialize your Target, Raid or Party.\n"..
"There are 2 Limitations, because the Equipment will be overwritten:\n"..
"- it wont work with anyone on the Playerbot-Roster.\n"..
"- it wont work with anyone on the Guild-Roster.|r\n\n"..
"|cffff0000Left-Click to Auto-Initialize your Target|r\n"..
"|cff999999(Execution-Order: Target)|r\n\n"..
"|cffff0000Right-Click to Auto-Initialize your Group|r\n"..
"|cff999999(Execution-Order: Raid, Party)|r";
-- UNIT --
MultiBot.tips.unit.selfbot =
"Selfbot\n"..
"|cffffffffThis Button switches the Selfbot-Mode on and off.|r\n\n"..
"|cffff0000Left-Click to execute Selfbot|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.unit.button =
"|cffffffff\n"..
"This Button adds or removes NAME to or from your Group.\n"..
"MultiBot will ask Playerbot about the Combat- and Non-Combat-Strategies.\n"..
"The Strategies can be configured with the Buttonbars on the left and right side.\n"..
"The Buttonbars will appear after adding the Bot.|r\n\n"..
"|cffff0000Left-Click to add NAME|r\n"..
"|cff999999(Execution-Order: System)|r\n\n"..
"|cffff0000Right-Click to remove NAME|r\n"..
"|cff999999(Execution-Order: System)|r";
-- UNITS --
MultiBot.tips.units = {}
MultiBot.tips.units.master =
"Unit-Control\n|cffffffff"..
"In this Control you will find the Playerbots.\n"..
"Each Button stands for one of your Characters, Guild-Members or Friends.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to show or hide the Units|r\n"..
"|cff999999(Execution-Order: System)|r\n\n"..
"|cffff0000Right-Click to refresh the Roster|r\n"..
"|cff999999(Execution-Order: System)|r";
-- UNITS:FILTER --
MultiBot.tips.units.filter =
"Class-Filter\n|cffffffff"..
"With the Class-Filter you can filter the Units by Classes.|r\n\n"..
"|cffff0000Left-Click to show or hide the Options|r\n"..
"|cff999999(Execution-Order: System)|r\n\n"..
"|cffff0000Right-Click to reset the Filter|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.deathknight =
"Class-Filter\n|cffffffff"..
"Filters the Units for Death Knights.|r\n\n"..
"|cffff0000Left-Click to filter for Death Knights|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.druid =
"Class-Filter\n|cffffffff"..
"Filters the Units for Druids.|r\n\n"..
"|cffff0000Left-Click to filter for Druids|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.hunter =
"Class-Filter\n|cffffffff"..
"Filters the Units for Hunters.|r\n\n"..
"|cffff0000Left-Click to filter for Hunters|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.mage =
"Class-Filter\n|cffffffff"..
"Filters the Units for Mages.|r\n\n"..
"|cffff0000Left-Click to filter for Mages|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.paladin =
"Class-Filter\n|cffffffff"..
"Filters the Units for Paladins.|r\n\n"..
"|cffff0000Left-Click to filter for Paladins|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.priest =
"Class-Filter\n|cffffffff"..
"Filters the Units for Priests.|r\n\n"..
"|cffff0000Left-Click to filter for Priests|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.rogue =
"Class-Filter\n|cffffffff"..
"Filters the Units for Rogues.|r\n\n"..
"|cffff0000Left-Click to filter for Rogues|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.shaman =
"Class-Filter\n|cffffffff"..
"Filters the Units for Shamans.|r\n\n"..
"|cffff0000Left-Click to filter for Shamans|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.warlock =
"Class-Filter\n|cffffffff"..
"Filters the Units for Warlocks.|r\n\n"..
"|cffff0000Left-Click to filter for Warlocks|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.warrior =
"Class-Filter\n|cffffffff"..
"Filters the Units for Warriors.|r\n\n"..
"|cffff0000Left-Click to filter for Warriors|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.none =
"Class-Filter\n|cffffffff"..
"Removes the Class-Filter from the Units.|r\n\n"..
"|cffff0000Left-Click to remove the Filter|r\n"..
"|cff999999(Execution-Order: System)|r";
-- UNITS:ROSTER --
MultiBot.tips.units.roster =
"Roster-Filter\n|cffffffff"..
"With the Roster-Filter you can switch between different Rosters.|r\n\n"..
"|cffff0000Left-Click to show or hide the Options|r\n"..
"|cff999999(Execution-Order: System)|r\n\n"..
"|cffff0000Right-Click to reset the Filter|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.actives =
"Roster-Filter\n|cffffffff"..
"Shows the Active-Roster.|r\n\n"..
"|cffff0000Left-Click to select Active-Roster|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.players =
"Roster-Filter\n|cffffffff"..
"Shows the Playerbot-Roster.\n"..
"Normaly your Characters and Others which stayed in your Group.|r\n\n"..
"|cffff0000Left-Click to select Playerbot-Roster|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.members =
"Roster-Filter\n|cffffffff"..
"Shows the Guild-Roster.\n"..
"The Guild-Roster does not show your Characters.|r\n\n"..
"|cffff0000Left-Click to select Guild-Roster|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.friends =
"Roster-Filter\n|cffffffff"..
"Shows the Friend-Roster.\n"..
"The Friend-Roster does not show your Characters or Guild-Members.|r\n\n"..
"|cffff0000Left-Click to select Friend-Roster|r\n"..
"|cff999999(Execution-Order: System)|r";
-- UNITS:BROWSE --
MultiBot.tips.units.browse =
"Browse\n|cffffffff"..
"With this Button you can browse through the Rosters.\n"..
"It will be hidden if the Roster has less then 11 Units.|r\n\n"..
"|cffff0000Left-Click to browse the Roster|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.invite =
"Invite-Control\n|cffffffff"..
"With this Control you can automaticaly fill up your Group.\n"..
"The left Button is for 'Party-Invite', the right Buttons are for 'Raid-Invite'.\n"..
"Additionally a Right-Click on this Button will add or remove all Bots at once.\n"..
"Means, if you are not in a Group all Bots will be added else they are removed.|r\n\n"..
"|cffff0000Left-Click to show or hide the Control|r\n"..
"|cff999999(Execution-Order: System)|r\n\n"..
"|cffff0000Right-Click to add or remove all Bots|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.inviteParty5 =
"Party of Five\n|cffffffff"..
"With this Button you can fill up your Party.\n"..
"This Feature takes the Units form the selected Roster ignoring the Class-Filter.\n"..
"It stops at the End of the Roster or until the Group reached 5 Members.|r\n\n"..
"|cffff0000Left-Click to invite Party-Members|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.inviteRaid10 =
"Raid of Ten\n|cffffffff"..
"With this Button you can fill up your Raid.\n"..
"This Feature takes the Units form the selected Roster ignoring the Class-Filter.\n"..
"It stops at the End of the Roster or until the Group reached 10 Members.|r\n\n"..
"|cffff0000Left-Click to invite Raid-Members|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.inviteRaid25 =
"Raid of Twenty-Five\n|cffffffff"..
"With this Button you can fill up your Raid.\n"..
"This Feature takes the Units form the selected Roster ignoring the Class-Filter.\n"..
"It stops at the End of the Roster or until the Group reached 25 Members.|r\n\n"..
"|cffff0000Left-Click to invite Raid-Members|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.units.inviteRaid40 =
"Raid of Forty\n|cffffffff"..
"With this Button you can fill up your Raid.\n"..
"This Feature takes the Units form the selected Roster ignoring the Class-Filter.\n"..
"It stops at the End of the Roster or until the Group reached 40 Members.|r\n\n"..
"|cffff0000Left-Click to invite Raid-Members|r\n"..
"|cff999999(Execution-Order: System)|r";
-- MAIN --
MultiBot.tips.main.master =
"Main-Control\n|cffffffff"..
"In this Control you will find the Auto-Switches and Reset-Commands.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to show or hide the Options|r\n"..
"|cff999999(Execution-Order: System)|r\n\n"..
"|cffff0000Right-Click to drag and move MultiBot|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.main.coords =
"Reset-Coords\n|cffffffff"..
"Reset the Coordinates of the Features:\n"..
"MultiBar, Inventory, Spellbook, Itemus, Iconos and Reward-Selector|r\n\n"..
"|cffff0000Left-Click to reset Coordinates|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.main.masters =
"GameMaster-Switch\n|cffffffff"..
"This Switch will enable or disable the GameMaster-Control.\n"..
"You will need GameMaster-Rights to enable the GameMaster-Control|r\n\n"..
"|cffff0000Left-Click to enable or disable the GameMaster-Control|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.main.creator =
"Creator-Switch\n|cffffffff"..
"This Switch will enable or disable the Creator-Control.|r\n\n"..
"|cffff0000Left-Click to enable or disable the Creator-Control|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.main.beast =
"Beastmaster-Switch\n|cffffffff"..
"This Switch will enable or disable the Beastmaster-Control.\n"..
"The Beastmaster-Control is for the Mod-NPC-Beastmaster of the Azerothcore.\n"..
"Mod-NPC-Beastmaster allows every Character to have a Pet like Hunters.\n"..
"Your Charaters can learn the nessasary Spells from White Fang.\n"..
"White Fang must be placed into the World by the GameMaster.|r\n\n"..
"|cffff0000Left-Click to enable or disable the Beastmaster-Control|r\n"..
"|cff999999(Execution-Order: System)|r";
--[[
MultiBot.tips.main.lang.master =
"Language-Selector|cffffffff\n"..
"This Control allows you to select the Language of MultiBot.\n"..
"If this control is active, MultiBot can have a different Language than the Client.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to show or hide the Options|r\n"..
"|cff999999(Execution-Order: System)|r\n\n"..
"|cffff0000Right-Click to enable or disable the Language-Selector|r\n"..
"|cff999999(Execution-Order: System)|r";
]]--
MultiBot.tips.main.release =
"Auto-Release\n|cffffffff"..
"This Feature detects the Death of Bots.\n"..
"Dead Bots are automatically released and summoned.\n"..
"This will revive the bots within seconds.|r\n\n"..
"|cffff0000Left-Click to enable or disable Auto-Release|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.main.stats =
"Auto-Stats\n|cffffffff"..
"This Feature visualizes the Values of Stats-Command.\n"..
"The Stats-Values are updated every 45 Seconds.|r\n\n"..
"|cffff0000Left-Click to enable or disable Auto-Stats|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.main.reward =
"Reward-Selector\n|cffffffff"..
"This Feature visualizes the Selection of Rewards.\n"..
"My Advice is to select the Reward for your Character first.\n"..
"Then you wont have any Problems using the Inspect-Buttons.|r\n\n"..
"Important:\n"..
"Once your Character has completed the Quest, the Bots must also complete the Quest.\n"..
"So dont cancel the Reward-Selector after your Character has his Reward.\n\n"..
"|cffffffffMod-Playerbot-Configuration:\n"..
"- (must) AiPlayerbot.AutoPickReward = no\n"..
"- (recommanded) AiPlayerbot.SyncQuestWithPlayer = 1|r\n\n"..
"|cffff0000Left-Click to enable or disable Reward-Selector|r\n"..
"|cff999999(Execution-Order: System)|r\n\n"..
"|cffff0000Right-Click to open Reward-Selector|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.main.reset =
"Reset-Bots\n|cffffffff"..
"This Button will reset the Artificial-Intelligence of your Bots.|r\n\n"..
"|cffff0000Left-Click to reset the Artificial-Intelligence|r\n"..
"|cff999999(Execution-Order: Target, Raid, Party)|r";
MultiBot.tips.main.action =
"Reset-Action\n|cffffffff"..
"This Button will reset the current Action of your Bots.|r\n\n"..
"|cffff0000Left-Click to reset the Action|r\n"..
"|cff999999(Execution-Order: Target, Raid, Party)|r";
-- GAMEMASTER --
MultiBot.tips.game.master =
"GameMaster-Control\n|cffffffff"..
"In this Control you will find useful GameMaster-Commands.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to show or hide the Options|r\n"..
"|cff999999(Execution-Order: System)|r\n\n"..
"|cffff0000Right-Click to close MultiBot|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.game.necronet =
"Necro-Network\n|cffffffff"..
"This Button enables or disables the Necro-Network.\n"..
"If Necro-Network is active you will find Graveyard-Buttons on the World-Map.\n"..
"With each Graveyard-Button you could Teleport yourself to the corresponding Graveyard.\n"..
"You need GameMaster-Rights zo use these Buttons.|r\n\n"..
"|cffff0000Left-Click to enable or disable the Necro-Network|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.game.portal =
"Memory-Portal\n|cffffffff"..
"In this Box you will find the Memory-Gems.\n"..
"Use the Memory-Gems to store your current Location.\n"..
"You can teleport yourself to stored Locations by using the Memory-Gems.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to show or hide the Soulgems|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.game.memory =
"Memory-Gem\n|cffffffff"..
"This Memory-Gem ABOUT.\n"..
"You need GameMaster-Rights to use this Button.|r\n\n"..
"|cffff0000Left-Click to store or teleport to the Location|r\n"..
"|cff999999(Execution-Order: Yourself)|r\n\n"..
"|cffff0000Right-Click to forget the Location|r\n"..
"|cff999999(Execution-Order: Yourself)|r";
MultiBot.tips.game.itemus =
"Itemus\n|cffffffff"..
"You will find every Item in the Box of the GamerMaster.\n"..
"Just target the Player or Bot, left click the Item and the wish come true.\n"..
"Important, not every Item can be generated, so you must try to find out.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to open or close the Itemus|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.game.iconos =
"Iconos\n|cffffffff"..
"You will find every Icon and his Path in this Tool.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..
"|cffff0000Left-Click to open or close the Iconos|r\n"..
"|cff999999(Execution-Order: System)|r";
MultiBot.tips.game.summon =
"Summon\n|cffffffff"..
"Summons a targeted Player or Bot to your Position.\n"..
"You need GameMaster-Rights to use this Button.|r\n\n"..
"|cffff0000Left-Click to summon your Target|r\n"..
"|cff999999(Execution-Order: Target)|r";
MultiBot.tips.game.appear =
"Appear\n|cffffffff"..
"You will appear at the Position of the targeted Player or Bot.\n"..
"You need GameMaster-Rights to use this Button.|r\n\n"..
"|cffff0000Left-Click to appear at your Target|r\n"..
"|cff999999(Execution-Order: Target)|r";
-- QUESTS --
MultiBot.tips.quests = {}
MultiBot.tips.quests.master =
"Quest-Control\n|cffffffff"..
"This Control shows the current List of Quests.\n"..
"Left-Click the Pages to share the Quest with your bots.\n"..
"Right-Click the Pages to abandon your and your Bots Quest.\n"..
"The Execution-Order shows the Receiver for Commandos.|r\n\n"..
"|cffff0000Left-Click to show or hide the Options|r\n"..
"|cff999999(Execution-Order: System)|r\n\n"..
"|cffff0000Right-Click to refresh the Options|r\n"..
"|cff999999(Execution-Order: System)|r";
-- DRINK --
MultiBot.tips.drink.group =
"Group-Drink\n|cffffffff"..
"With this Button you order the Group to drink.\n"..
"The Execution-Order shows the Receiver for Commands.|r\n\n"..