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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
[Icons]
Name: Re-Atk
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 200 if ?$target.isplayer' isnotattacking attack target | listas 'Lock |setcolor 206 206 206
RightCommand: 

State: Inactive
IconType: Normal
IconIds: 5907 0 0 0
BkgType: Normal
BkgIds: 5907 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 200
Text: Re-Atk
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 1723 0 0 0
BkgType: Normal
BkgIds: 5907 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 200
Text: Re-Atk
TextColor: 16776960
HoverColor: 16776960

Name: Chase
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 100 listas 'Chase-Target' | setattackmode 'Offensive' 'Chase'
RightCommand: setattackmode 'Offensive' 'Chase'

State: Inactive
IconType: Normal
IconIds: 3553 0 0 0
BkgType: Normal
BkgIds: 9019 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 250
Text: Chase
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 3553 0 0 0
BkgType: Normal
BkgIds: 9019 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 250
Text: Chase
TextColor: 16776960
HoverColor: 16776960

Name: Haste
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 200 dontlist | if [$mp >= 300 && $hasted == 0 && $inpz == 0] say 'Utani gran hur'
RightCommand: say 'Utani gran Hur'

State: Inactive
IconType: Normal
IconIds: 3079 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 350
Text: Haste
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 3079 0 0 0
BkgType: Normal
BkgIds: 9019 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 350
Text: Haste
TextColor: 16776960
HoverColor: 16776960

Name: Manashield
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 200 dontlist | say 'Utamo vita' | wait 20000
RightCommand: 

State: Inactive
IconType: Normal
IconIds: 3241 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 400
Text: Manashield
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 3241 0 0 0
BkgType: Normal
BkgIds: 2135 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 400
Text: Manashield
TextColor: 16776960
HoverColor: 16776960

Name: Sio
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: Auto 200 sio 90 friend
RightCommand: auto 200 sio 80 friend

State: Inactive
IconType: Normal
IconIds: 132 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 450
Text: Sio
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 1723 0 0 0
BkgType: Normal
BkgIds: 132 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 450
Text: Sio
TextColor: 16776960
HoverColor: 16776960

Name: exiva
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: Exivatarget
RightCommand: Exivalast

State: Inactive
IconType: Normal
IconIds: 3487 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 150
Text: Exiva
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 3487 0 0 0
BkgType: Normal
BkgIds: 1723 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 150
Text: Exiva
TextColor: 16776960
HoverColor: 16776960

Name: East push
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 200 listas 'East By TibiaScript' | moveitemonground [$target.posx] [$target.posy] [$target.posz] [$target.posx+1] [$target.posy] [$target.posz]
RightCommand: 

State: Inactive
IconType: Normal
IconIds: 2014 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 110
AlignY: Absolute
PositionY: 430
Text: East
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 2014 0 0 0
BkgType: Normal
BkgIds: 2014 0 0 0
AlignX: Right
PositionX: 110
AlignY: Absolute
PositionY: 430
Text: East
TextColor: 16776960
HoverColor: 16776960

Name: West push
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 200 listas 'West By TibiaScript' | moveitemonground $target.posx $target.posy $target.posz [$target.posx-1] $target.posy $target.posz
RightCommand: 

State: Inactive
IconType: Normal
IconIds: 2016 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 10
AlignY: Absolute
PositionY: 430
Text: West
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 2016 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 10
AlignY: Absolute
PositionY: 430
Text: West
TextColor: 16776960
HoverColor: 16776960

Name: South push
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 200 listas 'Sul By TibiaScript' | moveitemonground $target.posx $target.posy $target.posz $target.posx [$target.posy+1] $target.posz
RightCommand: 

State: Inactive
IconType: Normal
IconIds: 2015 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 460
Text: South
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 2015 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 460
Text: South
TextColor: 16776960
HoverColor: 16776960

Name: North
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 200 listas 'North by Delpan' | moveitemonground $target.posx $target.posy $target.posz $target.posx [$target.posy-1] $target.posz
RightCommand: 

State: Inactive
IconType: Normal
IconIds: 2013 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 400
Text: North 
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 2013 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 400
Text: North 
TextColor: 16776960
HoverColor: 16776960

Name: Rope/dorr
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 1 usegrounditem 5007 | usegrounditem 4911 | usegrounditem 1632 | usegrounditem 1633 | usegrounditem 1629 | usegrounditem 1630 | usegrounditem 5108 | usegrounditem 5107 | usegrounditem 5281 | usegrounditem 1968 | usegrounditem 435 | useongrounditem 3003 386 | usegrounditem 1948 | usegrounditem 5542 | useongrounditem 9594 2130 | 9594 3696 useongrounditem 3457 | usegrounditem 9358| usegrounditem 9357| usegrounditem 9360| usegrounditem 9359|
RightCommand: usegrounditem 5007 | usegrounditem 4911 | usegrounditem 1632 | usegrounditem 1633 | usegrounditem 1629 | usegrounditem 1630 | usegrounditem 5108 | usegrounditem 5107 | usegrounditem 5281 | usegrounditem 1968 | usegrounditem 435 | useongrounditem 3003 386 | usegrounditem 1948 | usegrounditem 5542 | useongrounditem 9594 2130 | 9594 3696 useongrounditem 3457 | usegrounditem 9358| usegrounditem 9357| usegrounditem 9360| usegrounditem 9359|

State: Inactive
IconType: Left
IconIds: 0 0 0 0
BkgType: Normal
BkgIds: 9599 55 55 55
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 250
Text: Door/R
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 0 0 0 0
BkgType: Normal
BkgIds: 9599 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 250
Text: Door/R
TextColor: 16776960
HoverColor: 16776960

Name: Mwalldoor
Enabled: no
DrawAsBackground: no
Size: Small
LeftCommand: auto 1 listas Prepared by Delpan (MW DOOR!) | setcolor 255 255 0 | useongrounditem 3180 5126 | useongrounditem 3180 5117 |  useongrounditem 3180 1630 | useongrounditem 3180 5117 | useongrounditem 3180 1633 | useongrounditem 3180 9360 | useongrounditem 3180 9358 | useongrounditem 3180 9360
RightCommand: auto 10 listas 'MwTarget' | magwall target | setcolor 000 250 250

State: Inactive
IconType: Normal
IconIds: 3180 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 200
Text: Mwall
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 1723 0 0 0
BkgType: Normal
BkgIds: 3180 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 200
Text: <<<~MWALL~>>>
TextColor: 65280
HoverColor: 65280

Name: JailerScript
Enabled: no
DrawAsBackground: no
Size: Small
LeftCommand: auto 1 listas "Anti Push: ON" | dropitemsxyzamount $target.posx $target.posy $target.posz 3031 2 | wait 1 | dropitemsxyzamount $target.posx $target.posy $target.posz 3035 2
RightCommand: 

State: Inactive
IconType: Normal
IconIds: 6104 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 100
Text: AFf N0 Ab00s Plx!!!
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 6104 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 100
Text: AB0S OF D00m!!
TextColor: 65280
HoverColor: 65280

Name: Spy
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: Spyup
RightCommand: Spydown

State: Inactive
IconType: Normal
IconIds: 2012 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 555
Text: SPY!
TextColor: 255
HoverColor: 16776960

State: Active
IconType: Normal
IconIds: 2012 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 555
Text: SPY!!!!!!!!!!
TextColor: 255
HoverColor: 16776960

Name: GMP
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 1  | if [$mppc <= 99] useoncreature 238 self
RightCommand: useoncreature 238 self

State: Inactive
IconType: Normal
IconIds: 238 0 0 0
BkgType: Normal
BkgIds: 9019 0 0 0
AlignX: Right
PositionX: 10
AlignY: Absolute
PositionY: 520
Text: GMP
TextColor: 255
HoverColor: 16776960

State: Active
IconType: Normal
IconIds: 238 0 0 0
BkgType: Normal
BkgIds: 9019 0 0 0
AlignX: Right
PositionX: 10
AlignY: Absolute
PositionY: 520
Text: GMP
TextColor: 16776960
HoverColor: 16776960

Name: Fbomb
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: useoncreature 3192 self
RightCommand: crosshair 3188

State: Inactive
IconType: Normal
IconIds: 3192 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 100
AlignY: Absolute
PositionY: 300
Text: Fbomb
TextColor: 255
HoverColor: 16776960

State: Active
IconType: Normal
IconIds: 3192 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 100
AlignY: Absolute
PositionY: 300
Text: Fbomb
TextColor: 255
HoverColor: 16776960

Name: Para
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 200 dontlist | paralyze target
RightCommand: paralyze target

State: Inactive
IconType: Normal
IconIds: 3165 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 20
AlignY: Absolute
PositionY: 350
Text: Paralyze
TextColor: 255
HoverColor: 16776960

State: Active
IconType: Normal
IconIds: 3165 0 0 0
BkgType: Normal
BkgIds: 3165 0 0 0
AlignX: Right
PositionX: 20
AlignY: Absolute
PositionY: 350
Text: Paralyze
TextColor: 16776960
HoverColor: 16776960

Name: Adv Dash
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 1 listas 'Adv Dash' | setcolor 250 250 000 | if [$key.100] {usegroundxyz [$posx-4] $posy $posz | end} if [$key.102] {usegroundxyz [$posx+4] $posy $posz | end} if [$key.98] {usegroundxyz $posx [$posy+4] $posz | end} if [$key.104] {usegroundxyz $posx [$posy-4] $posz | end}
RightCommand: auto 1 listas 'Bug Map' | if [$key.65] {usegroundxyz [$posx-7] $posy $posz | end} if [$key.68] {usegroundxyz [$posx+7] $posy $posz | end} if [$key.83] {usegroundxyz $posx [$posy+6] $posz | end} if [$key.87] {usegroundxyz $posx [$posy-6] $posz | end} if [$key.67] {usegroundxyz [$posx+6] [$posy+5] $posz | end} if [$key.90] {usegroundxyz [$posx-6] [$posy+5] $posz | end} if [$key.81] {usegroundxyz [$p

State: Inactive
IconType: Normal
IconIds: 3079 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 590
Text: Adv Dash
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 3368 0 0 0
BkgType: Normal
BkgIds: 2135 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 590
Text: Adv Dash
TextColor: 16776960
HoverColor: 16776960

Name: Buy/Frigo
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 50000 listas ‘Buy Mana’ | npcsay ‘Hi’ | wait 1000 | npcsay ‘Trade’ | wait 1000 | buyitems 238 100
RightCommand: auto 700 say exevo gran mas frigo

State: Inactive
IconType: Normal
IconIds: 238 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 20
AlignY: Absolute
PositionY: 300
Text: Buy/Frigo
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 238 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 20
AlignY: Absolute
PositionY: 300
Text: Buy/Frigo
TextColor: 16776960
HoverColor: 16776960

Name: collect
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 1 dontlist | collectitems 'empty'11344 3215 8090 3253 3423 8077 3278 8054 8863 6526 9396 8148 3398 8864 9189 11651 11689 7993 9189 9018 3080 3068 349 651 3080 10324 3043 6526 11455 7450 3040 8104 3423 3369 3368 11651 3363 3424 406 9017 654  3024 8155 8037 7381 10345 9189 10341 11371 9653 11692  11692 8103 3553 3560  8154 8097  9369 9019 9056 11687 8022 10339 3363 8862 7532 10342 8863 10184 8060 141 3232 141 8192 3399 10200 8095 8155 8037 3048 6529 6104 2971 7527 9172 10798 5953 7381 3021
RightCommand: 

State: Inactive
IconType: Normal
IconIds: 9019 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 100
AlignY: Absolute
PositionY: 150
Text: collect
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 9018 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 100
AlignY: Absolute
PositionY: 150
Text: collect
TextColor: 16776960
HoverColor: 16776960

Name: Collect Bp
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 1 listas 'JwBp' | setcolor 00 051 255 |  moveitems 9019 'Jewelled backpack' | moveitems 349 'Jewelled backpack' | moveitems 651 'Jewelled backpack' | moveitems 7993 'Jewelled backpack'  | moveitems 8864 'Jewelled backpack' | moveitems 8022 'Jewelled backpack' | moveitems 6526 'Jewelled backpack' | moveitems 8097 'Jewelled backpack' | moveitems 3368 'Jewelled backpack' | moveitems 8103 'Jewelled backpack' | moveitems 3423 'Jewelled backpack' | moveitems 11344 'Jewelled backpack' | moveitems 3043 'Jewelled backpack' | moveitems 3389 'Jewelled backpack' | moveitems 3363 'Jewelled backpack'' | moveitems 3398 'Jewelled backpack'
RightCommand: auto 1 listas 'Move Supplies' | setcolor  010 250 025 |  moveitems 3192 'Jewelled backpack' | moveitems 238 'Jewelled Backpack' | moveitems 3188 'Jewelled backpack' | moveitems 3156 'Jewelled backpack' | moveitems 3148 'Jewelled Backpack' | moveitems  3197 'Jewelled Backpack' | moveitems 180 'Jewelled Backpack' | moveitems 3155 'Jewelled backpack' | moveitems 3160 'Jewelled backpack' | moveitems 3180 'Jewelled backpack' | moveitems 3165 'Jewelled backpack' | moveitems 3195 'Jewelled backpack' 

State: Inactive
IconType: Normal
IconIds: 0 0 0 0
BkgType: Normal
BkgIds: 3253 0 0 0
AlignX: Absolute
PositionX: 10
AlignY: Absolute
PositionY: 150
Text: JBp
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 1723 0 0 0
BkgType: Normal
BkgIds: 3253 0 0 0
AlignX: Absolute
PositionX: 10
AlignY: Absolute
PositionY: 150
Text: JBp
TextColor: 16776960
HoverColor: 16776960

Name: NG MW / TARGET
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 1 dontlist | set $L $topitem.[$target.posx-2].[$target.posy].[$target.posz] | if [$L == 1630] useongroundxyz 3180 [$target.posx-2] [$target.posy] [$target.posz] | set $L $topitem.[$target.posx+2].[$target.posy].[$target.posz] | if [$L == 1630] useongroundxyz 3180 [$target.posx+2] [$target.posy] [$target.posz]  | set $L $topitem.[$target.posx].[$target.posy+2].[$target.posz] | if [$L == 1630] useongroundxyz 3180 [$target.posx] [$target.posy+2] [$target.posz]
RightCommand: auto 10 listas 'MwTarget' | magwall target | setcolor 000 250 250

State: Inactive
IconType: Normal
IconIds: 3180 0 0 0
BkgType: Normal
BkgIds: 3180 0 0 0
AlignX: Right
PositionX: 100
AlignY: Absolute
PositionY: 350
Text: NG MW / TARGET
TextColor: 255
HoverColor: 16776960

State: Active
IconType: Normal
IconIds: 3180 0 0 0
BkgType: Normal
BkgIds: 3180 0 0 0
AlignX: Right
PositionX: 100
AlignY: Absolute
PositionY: 350
Text: NG MW / TARGET
TextColor: 255
HoverColor: 16776960

Name: FAST SD
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 1520 listas 'Fast Sd' | sd target
RightCommand: auto 1520 listas 'Fast Sd' | sd target

State: Inactive
IconType: Normal
IconIds: 3155 0 0 0
BkgType: Center
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 500
Text: FAST SD
TextColor: 255
HoverColor: 16776960

State: Active
IconType: Normal
IconIds: 3155 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 500
Text: FAST SD
TextColor: 16777088
HoverColor: 16776960

Name: exura
Enabled: no
DrawAsBackground: no
Size: Small
LeftCommand: say 'exura gran mas res'
RightCommand: 

State: Inactive
IconType: Normal
IconIds: 942 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 15
AlignY: Absolute
PositionY: 520
Text: Masres
TextColor: 255
HoverColor: 65280

State: Active
IconType: Normal
IconIds: 942 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 15
AlignY: Absolute
PositionY: 520
Text: Masres
TextColor: 255
HoverColor: 65280

Name: Anti Idle
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 100 listas 'Anti-Idle' | if [$self.dir == 0] {set $dir 0 | set $firdir 'turnn' | set $secdir 'turns'} | if [$self.dir == 1] {set $dir 1 | set $firdir 'turne' | set $secdir 'turnw'} | if [$self.dir == 2] {set $dir 2 | set $firdir 'turns' | set $secdir 'turnn'} | if [$self.dir == 3] {set $dir 3 | set $firdir 'turnw' | set $secdir 'turne'} | if [$time > $idletime] {exec $secdir | wait 1500 | exec $firdir | wait 1500 | if [$self.dir == $dir] $idletime [$time+60]}
RightCommand: auto 100 listas 'Anti-Idle' | if [$self.dir == 0] {set $dir 0 | set $firdir 'turnn' | set $secdir 'turns'} | if [$self.dir == 1] {set $dir 1 | set $firdir 'turne' | set $secdir 'turnw'} | if [$self.dir == 2] {set $dir 2 | set $firdir 'turns' | set $secdir 'turnn'} | if [$self.dir == 3] {set $dir 3 | set $firdir 'turnw' | set $secdir 'turne'} | if [$time > $idletime] {exec $secdir | wait 1500 | exec $firdir | wait 1500 | if [$self.dir == $dir] $idletime [$time+60]}

State: Inactive
IconType: Normal
IconIds: 3197 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Bottom
PositionY: -30
Text: Anti Idle
TextColor: 255
HoverColor: 16776960

State: Active
IconType: Normal
IconIds: 3197 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Bottom
PositionY: -30
Text: Anti Idle
TextColor: 255
HoverColor: 16776960

Name: Waypoint
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: if [$waypointson] {statusmessage 'ElfBot NG - Waypoints - OFF' | setfollowwaypoints off | follow self} else {statusmessage 'ElfBot NG - Waypoints - ON' | setfollowwaypoints on}
RightCommand: if [$waypointson] {statusmessage 'ElfBot NG - Waypoints - OFF' | setfollowwaypoints off | follow self} else {statusmessage 'ElfBot NG - Waypoints - ON' | setfollowwaypoints on}

State: Inactive
IconType: Normal
IconIds: 3161 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 610
Text: Waypoint
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 3161 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 610
Text: Waypoint
TextColor: 65280
HoverColor: 65280

Name: Utito vita
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 8000 dontlist | mphigher 1000 say utito vita
RightCommand: auto 1000 say utito vita

State: Inactive
IconType: Normal
IconIds: 8864 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 300
Text: Utito vita
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 8864 0 0 0
BkgType: Normal
BkgIds: 9019 0 0 0
AlignX: Absolute
PositionX: 55
AlignY: Absolute
PositionY: 300
Text: Utito vita
TextColor: 16776960
HoverColor: 16776960

Name: Antipickup
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 1 collectitems 'empty' 3555 3388 3414 3031 3035 3725 3043 3492 3447 7368 5801 9019 8090 6529 3051 8097 10384 285 284
RightCommand: auto 1 listas 'Push All' | moveitemonground $posx [$posy-1] $posz $posx $posy $posz|moveitemonground $posx [$posy+1] $posz $posx $posy $posz|moveitemonground [$posx-1] [$posy-1] $posz $posx $posy $posz|moveitemonground [$posx-1] $posy $posz $posx $posy $posz|moveitemonground [$posx-1] [$posy+1] $posz $posx $posy $posz| moveitemonground [$posx+1] [$posy-1] $posz $posx $posy $posz|moveitemonground [$posx+1] $posy $posz $posx $posy $posz|moveitemonground [$posx+1] [$posy+1] $posz $posx $posy $posz

State: Inactive
IconType: Normal
IconIds: 3043 0 0 0
BkgType: Normal
BkgIds: 3043 0 0 0
AlignX: Right
PositionX: 100
AlignY: Absolute
PositionY: 520
Text: Antipickup
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 3043 0 0 0
BkgType: Normal
BkgIds: 3043 0 0 0
AlignX: Right
PositionX: 100
AlignY: Absolute
PositionY: 520
Text: Antipickup
TextColor: 16776960
HoverColor: 16776960

Name: Levite
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 200 dontlist | if [$self.dir == 0 || $self.dir == 3] say 'exani hur "up' | if [$self.dir == 1 || $self.dir == 2] say 'exani hur "down'
RightCommand: 

State: Inactive
IconType: Normal
IconIds: 166 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 200
Text: Levit.
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 166 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 200
Text: Levit.
TextColor: 16776960
HoverColor: 16776960

Name: Mlvl/dance
Enabled: no
DrawAsBackground: no
Size: Small
LeftCommand: auto 200 listas 'mlvl' | setcolor 000 250 250 | say utana vid | say exevo gran mas frigo
RightCommand: auto 300 listas 'Dance' | turnn | wait 30000 | turne | wait 30000 | turns | wait 30000 | turnw | wait 30000 | turnn

State: Inactive
IconType: Normal
IconIds: 3429 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 55
Text: Mlvl/dance
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 3429 0 0 0
BkgType: Normal
BkgIds: 9018 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 55
Text: Mlvl/dance
TextColor: 65280
HoverColor: 65280

Name: Target
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: if [$targetingon] {statusmessage 'ElfBot NG - Targeting - OFF' | settargeting off | stopattack} else {statusmessage 'ElfBot NG - Targeting - ON' | settargeting on}
RightCommand: if [$targetingon] {statusmessage 'ElfBot NG - Targeting - OFF' | settargeting off | stopattack} else {statusmessage 'ElfBot NG - Targeting - ON' | settargeting on}

State: Inactive
IconType: Normal
IconIds: 8022 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 50
Text: Target
TextColor: 255
HoverColor: 255

State: Active
IconType: Normal
IconIds: 8022 0 0 0
BkgType: Normal
BkgIds: 0 0 0 0
AlignX: Right
PositionX: 55
AlignY: Absolute
PositionY: 50
Text: Target
TextColor: 16776960
HoverColor: 16776960

Name: Anti-push
Enabled: yes
DrawAsBackground: no
Size: Small
LeftCommand: auto 1 listas ‘Anti Push: ON’ | dropitems 283 284 285 | ifnot [$topitem.$posx.$posy.$posz == 3031] dropitemsxyzamount $posx $posy $posz 3031 2 | ifnot [$topitem.$posx.$posy.$posz == 3035] dropitemsxyzamount $posx $posy $posz 3035 1
RightCommand: 

State: Inactive
IconType: Left
IconIds: 3031 0 0 0
BkgType: Normal
BkgIds: 3043 3031 0 0
AlignX: Right
PositionX: 50
AlignY: Absolute
PositionY: 650
Text: Antipush/off
TextColor: 255
HoverColor: 255

State: Active
IconType: Left
IconIds: 3043 0 0 0
BkgType: Normal
BkgIds: 3043 3031 0 0
AlignX: Right
PositionX: 50
AlignY: Absolute
PositionY: 650
Text: Antipush/on
TextColor: 65280
HoverColor: 65280

The entries are the properties of their respective owners.
Powered by Flask, SQLAlchemy, Pygments and Bootstrap.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.