forked from Wisling/tibiaauto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.txt
executable file
·1831 lines (1550 loc) · 71.2 KB
/
changelog.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
2.73.0 1.7.2017
Enhancements:
Tibia Auto: Updated to Tibia 10.00 Jan 5, 2017
Defects:
Inject MC Support: Fixed so it can patch Tibia.exe 10.00 and earlier
tibiaauto-tiles.xml: Updated new holes, stairs, rope spots and fields
2.70.0 8.30.2016
Enhancements:
Tibia Auto: Updated to Tibia 10.97
Defects:
2.69.1 8.27.2016
Enhancements:
Defects:
Cavebot & Autolooter: fixed TA not opening creatures
2.69.0 7.16.2016
Enhancements:
Tibia Auto: Updated for Tibia 10.96
consts.xml: Migrated all version updating addresses to the const.xml. This is the only file that needs changing between TA versions aside from advanced changes.
Defects:
2.67.0 6.1.2016
Enhancements:
Tibia Auto: Updated for Tibia 10.94
Cavebot: Doubled pathfinding efficiency
Cavebot/Automap: Can manually set 'Usable Teleporter' for things like switches or minecarts in kazordoon.
Defects:
2.66.0 5.14.2016
Enhancements:
Tibia Auto: Updated for Tibia 10.93
Tibia Auto: Removed dependence on TA registry install path and infers installation location from tibiaauto.exe path
Spellcaster & others: Made frame names clickable for enabling tabs
Auto Login: Added automatic backpack opener that opens indicated backpacks when no backpacks are open for 8 seconds
Defects:
Tibia Auto: Updated for Tibia 10.93
Trade Monitor: Trade monitor text now shows up in window
Auto Login: Fixed TA not minimizing more than 4 backpacks
2.65.1 4.19.2016
Defects:
Tibia Auto: Fixed crashing on loading(but those using OpenGL will still not see a health bar above their character)
2.65.0 4.12.2016
Enhancements:
Tibia Auto: Updated for Tibia 10.92
Defects:
Cavebot: Fixed Pause/Break key pausing cavebot
2.64.2 4.11.2016
Enhancements:
Tibia Auto: Improved performance and reduced CPU usage
Python: Added takernel.setModuleParam and takernel.getModuleParam to automatically change parameters based on their name in a saved xml script
Python: Module functions used with takernel now take module name instead of a number. Added takernel.getModuleList function to replace "getModuleCount" and "getModuleName" functions
Map Hacks: Added option to show a manabar above your character
Defects:
Tibia Auto: Fixed error message when opening sub-windows of TA
Python: Fixed tamap.mapSetPointItemId function when changing animated items to non-animated ones
Tibia Auto: Can exit TA and reassociate a new TA to a previously used Tibia window with more certainty.
Python: Prevented memory leak with tasender.printText function
2.64.1 1.25.2016
Enhancements:
Map Hacks: Added option to show a manabar above your character
Defects:
Python: Fixed tasender.printText function
Cavebot: Fixed loot from floor bug causing cavebot to stop working
2.64.0 1.2.2016
Enhancements:
Tibia Auto: Updated for Tibia 10.90
tiles.xml: Updated for Tibia 10.90
Fluid Drinker: Drops flasks in groups instead of one at a time
Defects:
2.63.0 10.8.2015
Enhancements:
Tibia Auto: Updated for Tibia 10.82
Defects:
2.62.0 8.14.2015
Enhancements:
Tibia Auto: Updated for Tibia 10.81
Defects:
2.61.1 7.23.2015
Enhancements:
Tibia Auto: Added version independent Tibia.exe multi-client patcher.
Defects:
Tibia Auto: Fixed some instability issues.
2.61.0 7.22.2015
Enhancements:
Tibia Auto: Updated to Tibia 10.80
Defects:
2.60.1 7.14.2015
Enhancements:
item.xml: Updated some item names
Python: Changed "getPointUpDown" functions to the more logical name of "getPointType"
Installer: Allow non-admin users to edit xml and csv files within "Program Files" folder
Defects:
ShowMap: Prevented map corruption when character disappears during kick or server-save
ShowMap: Fixed error in reading teleport locations from saved file
2.60.0 7.12.2015
Enhancements:
Tibia Auto: Updated for Tibia 10.79 Installer: Made more clear and helpful notes to installer for missing files
Defects:
2.59.0 5.19.2015
Enhancements:
Tibia Auto: Updated for Tibia 10.78
Installer: Made more clear and helpful notes to installer for missing files
Defects:
Tibia Auto: Fixed memory leaks
2.58.0 4.15.2015
Enhancements:
Tibia Auto: Updated for Tibia 10.77
Defects:
2.57.2 4.9.2015
Enhancements:
Tibia Auto: First official release version since Rebell's upgrades to Visual Studio 2013
Defects:
Cavebot: Fixed TA crashing when opening containers
Tibia Auto: Works with XP again
2.57.1 3.22.2015
Enhancements:
sellers.csv: Added Dawnport NPCs
Defects:
Installer: added error messages and download links for all required dll files.
Cavebot: Fixed TA freezing when opening some containers
2.57.0 3.17.2015
Enhancements:
Tibia Auto: Updated for Tibia 10.76
Cavebot: Made depot depositer more efficient when "Deposit Item Config items" is checked
Defects:
Cavebot: Made opening containers crash TA less frequently
Auto Login: Removed no longer available "Login with last account" option
2.56.0 12.24.2014
Enhancements:
Tibia Auto: Updated for Tibia 10.71
Defects:
2.54.0 12.4.2014
Enhancements:
Tibia Auto: Updated for Tibia 10.64
Defects:
2.53.0 11.27.2014
Enhancements:
Tibia Auto: Updated for Tibia 10.63
Defects:
2.52.0 11.1.2014
Enhancements:
Tibia Auto: Updated for Tibia 10.61
Defects:
2.51.0 10.10.2014
Enhancements:
Tibia Auto: Updated for Tibia 10.59
bankers.csv: Added Dawnport banker
sellers.csv: Added and correction some seller locations(thanks to community)
items.xml: Added Rorc loot(thanks to community)
Defects:
2.50.0 10.6.2014
Enhancements:
Tibia Auto: Updated for Tibia 10.58
Defects:
2.49.0 9.30.2014
Enhancements:
Tibia Auto: Updated for Tibia 10.57
tiles.xml: added all new items
Defects:
Map Hacks: Fixed "always show creature name" option
2.46.0 9.9.2014
Enhancements:
Tibia Auto: Updated for Tibia 10.54
Defects:
2.45.1 9.7.2014
Enhancements:
Defects:
Auto Login: Fixed invalid password entry
2.45.0 8.28.2014
Enhancements:
Tibia Auto: Updated for Tibia 10.53
Defects:
2.44.0 8.12.2014
Enhancements:
Tibia Auto: Updated for Tibia 10.52
Defects:
2.43.0 7.23.2014
Enhancements:
Tibia Auto: Updated for Tibia 10.51
Auto Go/Log: Fixed detecting private messages
Defects:
Changed size of packet for pipe messages of text spoken in Tibia to include the channel number if it is said on a channel
2.42.0 7.13.2014
Enhancements:
Tibia Auto: Updated for Tibia 10.50
Cavebot: Ability to set all unlisted monsters as lowest priority in attack list. This will still not attack ignored creatures.
Defects:
Responder: Fixed bug causing a crash at a random time after enabling many talk threads
Tibia Auto: Fixed occasional crash when reading empty container.
Auto Go/Log: Fixed bug in detecting online players
2.41.0 4.30.2014
Enhancements:
Tibia Auto: Updated to 10.39
Auto Go/Log: Added automatic selection of alarm when adding and deleting
Cavebot: Added automatic selection of depot item when adding and deleting
Defects:
Tibia Auto: Fixed a bunch of memory leaks
Auto Go/Log: Made default spell list in 'Cast Spell' box lower case
Auto Go/Log: Made default spell list in 'Cast Spell' box variables instead of being hardcoded
Load Script: load script dialog is now destroyed every time it is needed again. ShowMap no longer has this window as a parent.
2.40.0 3.31.2014
Enhancements:
Tibia Auto: updated for Tibia 10.38
Seller: Added option to suggest how much banker should withdraw based on items needing to be purchased.
Banker: Changed the "Withdraw up to keep on hand" to "Always have Keep on Hand" and removed dependence on seller.
Seller, Banker: Added 5 second timeout after banking or selling before starting again.
Cavebot: Loot from floor constantly looks for items to pick up that are <= 1 sqm.
Login: Does not keep trying to log in after wrong password is entered.
Map Research: Movable, blocking objects no longer cause mapper to research them as blocking unless they are in the way.
Defects:
Login: Made backpack opener work only for non-premium accounts(for now until I can allow users to minimize premium ad windows)
Auto Go/Log: Character not moved alarm only activates when online.
Seller, Banker: No longer stops by these if it has nothing to do there.
Cavebot: Fixed 'Loot from floor' bug that removed certain items from list of looted items.
Cavebot: Made looting from floor more aggressive, but still avoids being led away with items.
Cavebot: Fixed bug causing bot to infrequently attack twice in a row quickly.
Login: Removed lag for logging in when Login window has never been opened. Status messages start from when window is opened.
Login: Fixed error with mutex not being freed and holding up all other clients.
Spellcaster: Added login check to not send spells when not logged in.
2.39.1 3.23.2014
Enhancements:
Auto Go/Log: Added functionality to save different picture formats as screenshots.
Defects:
Cavebot: Changed attack so as to avoid switching quickly between creatures the same distance apart
Runemaker: Fixed bug preventing it from looping through containers
Showmap: Fixed bug that occasionally caused crashing when enabled for long periods of time.
Cavebot: Fixed opening of wrong corpse when looting in certain areas.
Tibia Auto: sendTAMessage messages are displayed whenever Tibia receives an incoming packet(not ideal but still OK)
Auto Go/Log: Fixed TA crashing when Auto Go/Log is stopped while taking a screenshot.
Cavebot: No longer attacks creatures when in PZ
2.39.0 12.3.2014
Enhancements:
Tibia Auto: Updated to 10.37
tiles.xml: Updated
Defects:
Runemaker: fixed crash on opening the runemaker
2.38.1 8.3.2014
Enhancements:
Python: added function "readOpenContainerCount" to tareader
Tibiaauto: Reduced CPU usage by half by improving a few CPU intense operations.
Defects:
Spellcaster: Adjusted poison cure for changes in protocol
Spellcaster: Fixed casting at random mana amount for more than 1 tab
Cavebot: Adjusted ignoring unreachable creatures for changes in protocol
2.38.0 6.3.2014
Enhancements:
Tibia Auto: Updated for Tibia 10.36
Defects:
2.37.1 4.3.2014
Enhancements:
Defects:
Eater: Fixed eater item count error
Cavebot: Fixed packet sending errors.
Cavebot: Added back reaction to "there is no way" message when ignoring unreachable creatures.
2.37.0 25.2.2014
Enhancements:
Tibia Auto: updated to Tibia 10.35
Defects:
Cavebot: Fixed the depot walker for depositing and retrieving.
Accidental Removals:
Removed TA's reaction to "there is no way" message when ignoring unreachable creatures.
2.36.0 31.1.2014
Enhancements:
Tibia Auto: updated to Tibia 10.34
Defects:
tibiauto-tiles.xml: Fixed some holes appearing as rope spots
2.35.1 18.12.2013
Enhancements:
Tibia Auto: updated to Tibia 10.31
2.35.0 11.12.2013
Enhancements:
Tibia Auto: updated to Tibia 10.30
tiles.xml: added new tile IDs
2.34.3 4.12.2013
Enhancements:
Auto Login: Based "relogin after death" on HP to be more accurate
Depot Walker: When capacity is below specified amount, it goes to depot only when it has items to drop off or pick up
Defects:
Auto Login: Fixed opening quest log when opening more than 5 bp
Auto Login: automatic login to last character changed to last account and character position must be specified
Auto Login: Reduced long delay for stopping module when it is running
Depot Walker: Goes to depot when "Deposit item config items" is checked
Restacker: Fixed left hand address
2.34.2 18.11.2013
Enhancements:
Defects:
Auto Login: corrected backpack address
Runemaker: corrected hand slot addresses
tiles.xml: fixed missing stairs
2.34.1 17.11.2013
Enhancements:
Defects:
tibiaauto_utils: removed debugging code from container reader.
2.34.0 17.11.2013
Enhancements:
Tibia Auto: updated to 10.22
tiles.xml: added missing rope spots, stairs and new tiles
Defects:
consts.xml: removed some redundant addresses
cavebot: Handles issue where creature is not attacked even though they are selected.
2.33.2 4.10.2013
Defects:
Tibia Auto: Fixed crashing on Windows XP
2.33.2 4.10.2013
Defects:
Tibia Auto: Fixed crashing on Windows XP
2.33.1 19.9.2013
Defects:
tibiaauto-tiles.xml: Fixed tile definitions
2.33.0 18.9.2013
Enhancements:
Tibia Auto: updated to Tibia 10.11
tibiaauto-tiles.xml: updated tile definitions
2.32.1 5.9.2013
Enhancements:
Tibia Auto: added changing icon when hiding TA client in the tray
Tibia Auto: updated to Tibia 10.13
2.32.0 2.9.2013
Enhancements:
Tibia Auto: updated to Tibia 10.12
2.31.0 24.8.2013
Tibia Auto: updated to Tibia 10.11
General Settings: Changed icon for hidden TA windows
Python: Added new function to read new vocation variable in memory
Creature Info: displays your vocation based on variable instead of looking at yourself
2.30.0 17.7.2013
Enhancements:
Tibia Auto: Updated to 10.10
Defects:
Tibia Auto: Fixed TA freezing on computers running for more than 25 days
Added default itempos argument to python useWith functions.
Added tray icon change to hidden windows.
Completed outgoing packet parser.
Added new self vocation identifier to character stats and creature info module
Fixed login module keeping walking priority when lagging causes short logout
2.29.1 18.6.2013
Enhancements:
Python: added functions for changing PVP mode
Python: for all useWith functions, the tile position does not need to be specified
Defects:
2.29.0 18.6.2013
Enhancements:
Tibia Auto: Updated to 10.01
Defects:
All: Fixed one source of random crashing when reading from memory soon after reading a Tibia Container
2.28.1 25.5.2013
Enhancements:
Defects:
AutoLogin: Fixed account name and password functions
2.28.0 2.5.2013
Enhancements:
Tibia Auto: Updated memory addresses to 9.86
Tibia Auto: Updated TA to work with new container system(does not handle containers of item stacks yet)
Defects:
Spellcaster: Removed "hi" message when casting manaburn spell
2.27.1 12.3.2013
Enhancements:
Defects:
consts.xml: fixed all addresses
2.27.0 4.3.2013
Enhancements:
Tibia Auto: updated for Tibia 9.82
Spell Caster: Added tabbing to individual tabs
Auto Go/Log: Added tabbing to individual tabs
Defects:
Show map: Fixed enabling of Extended map research from saved config
2.26.6 5.2.2013
Enhancements:
Defects:
Cavebot: Fixed the saving of several options.
Auto Go/Log: Fixed the converting of the time string to an integer value.
Internal:
Auto Go/Log: fixed help strings
2.26.5 27.1.2013
Enhancements:
Cavebot & Auto looter: "Loot Custom" option is enabled by default.
Python: readVIPEntry returns extra information regarding the
Python: getMemIntValue has added parameter for offsetting address by the base address.
Tibia Auto: Sensical tabbing for all modules(except for those with multiple pages)
Defects:
Cavebot: Fixed the process to use ladders when walking
Anylogout: Removed the "Stop All" command from the set of commands it uses to stay logged in.
VIP reader: fixed crashes from reading operations on the VIP list
MapHacks: fixed writing multi-level minimap colours to Tibia's memory
Cavebot: fixed load waypoints from minimap
Python: Fixed readVIPEntry function
Autogo: Fixed VIP alarms
Autogo: Fixed text in info box going past end of box
Internal:
added xercesc and libs folders back into tibiaauto-pub
added regular expressions engine deelx.h to SDK folder for use in parsing incomming packets.
Changed all RandomVariable generators in all modules to use pointers
Removed duplicated list of the AutoGo IDS strings from tibiaauto.rc that were added to allow tibiaauto.exe to compile.
2.26.4, 25.1.2013
Enhancements:
Auto Go/Log: Forced Alarm trigger text to be in a valid format upon adding to the alarm list. eg "[1x, 1y, 3z] 6" for distance away from a point would be simplified to "(1,1,3)6"
Auto Go/Log: New accepted format for stamina eg. "2h" or "120" or "2h0m"
Auto Go/Log: New accepted format for any values involving seconds eg. "1m30s" "90s"
Defects:
Cavebot: Fixed the problem of not saving delays of 0 from the waypoint list.
tiles.xml: Fixed ladder identifiers
2.26.3, 10.1.2013
Enhancements:
Cavebot: added and tested functionality for the new ropespot and new hole
Cavebot: removed option for choosing weapon hand
Cavebot: updated trainer "fight when surrounded" to trigger when > 2 creatures are 1 space away, regardless of whether they are attacking
Defects:
tiles.xml: Added new ropespot and hole for Corym cave
2.26.2, 8.1.2013
Enhancements:
Defects:
Tibia Auto: Found and fixed random crashing problem
2.26.1, 6.1.2013
Enhancements:
tiles.xml: Added new ropespots to the tile.xml
Defects:
Spellcaster: Fixed healing of poison
Show Map: Fixed crash when comitting tile information after an edit.
Cavebot: Removed "attack only attacking" feature and others that are no longer client-sided. Updated cavebot to properly attack again.
Anti Logout: Uses turns and 'looks' to no longer perform the same action repeatedly.
2.26.0, 13.12.2012
Enhancements:
Tibia Auto: Updated for Tibia 9.80(still some bugs related to VIPs and minimap markers)
Auto Login: Applied changes for new login method.
items.xml: updated item list to 9.80
Defects:
2.25.2, 11.11.2012
Enhancements:
Defects:
Auto Login: Changed relogin info address to its new location.
2.25.1, 9.11.2012
Enhancements:
Defects:
Auto Login: Fixed login step for accepting character selection.
2.25.0, 8.11.2012
Enhancements:
TibiaAuto: Updated to 9.71
Defects:
2.24.1, 25.10.2012
Enhancements:
Defects:
TibiaAuto: Found bug causing sections of the map to disappear. Fixed!
2.24.0, 16.10.2012
Enhancements:
TibiaAuto: Updated to 9.70
Defects:
TibiaAuto: Fixed incorrect Decrypt address
2.23.2, 4.10.2012
Enhancements:
Defects:
Autogo: Fixed persistent alarms always being on even when not selected.
2.23.1, 23.9.2012
Enhancements:
Autogo: Added persistent and permanent alarms to allow a player to finish an action even when the trigger condition is no longer met
Autogo: Added safeguard "Maintain Position an Alarm" for standing in same place when an alarm is active and not walking anywhere
Autogo: Added compatibility for new method of storing VIPs(9.6)
Defects:
Responder: Fixed method for sending private messages to ather players
Python: Fixed PrintText not being able to output blue text
Autogo: Alarm when a VIP player was offline did not trigger properly
2.23.0, 3.9.2012
Enhancements:
Tibia Auto:Updated to Tibia 9.63
Defects:
2.22.2, 15.8.2012
Enhancements:
Cavebot:Pauses during first 10 seconds after logging in while it cannot attack anything
Defects:
Cavebot:Fixed bug that continually sent 'change attack mode' packets to server after relogging
Auto Login: Specified a more specific window to restore before logging in so other windows are not restored
Cavebot: Pauses for 200ms before closing container to give restacker better chance to restack items.
Tibia Auto: Fixed skill percent addresses.
2.22.1, 13.8.2012
Enhancements:
Defects:
Cavebot: fixed cavebot going to location (0,0,0) when loading one script after another with more waypoints.
Python: Inpacket python function no longer has a memory leak!
Tibia Auto: fixed some "pipe handle not being read fast enough" messages were caused by restarting TA
Tibia Auto: made the "pipe handle not being read fast enough" message into a ingame message rather than a dialog box.
Python: Fixed Inpacket python function from passing on incomplete packets
2.22.0, 10.8.2012
Enhancements:
Tibia Auto: Updated to 9.61
Defects:
2.21.1, 28.7.2012
Enhancements:
Defects:
consts.xml: Fixed currentTm address
2.21.0, 12.7.2012
Enhancements:
Tibiaauto: Updated to 9.60
Python: Added an example .py file to scripts
Python: Added a fourth python function type that gets called every time an incoming packet is received that matches a regular expression
Defects:
Seller: Fixed seller selling more that 100 items at a time
Enhancements:
Tibiaauto: Updated to 9.54
Defects:
2.19.4, 15.5.2012
Enhancements:
Tibiaauto: Added debug messages to prevent TA from closing silently
Defects:
ShowMap: Fixed Map Research placing teleporters in random places
Cavebot: Fixed Hybrid map from crashing TA when going to different floor
2.19.3, 4.5.2012
Enhancements:
Tibiaauto: Updated
2.19.2, 15.4.2012
Enhancements:
Tibiaauto: Updated
2.19.1, 11.4.2012
Enhancements:
Tibiaauto: Updated
2.19.0, 4.4.2012
Enhancements:
Tibiaauto: Updated
2.17.1, 9.2.2012
Enhancements:
Tibiaauto: Updated
2.17.0, 4.2.2012
Enhancements:
Tibiaauto: ALSR.reg is no longer needed for Windows 7 and Vista as TA adjusts addresses automatically
Python: Added getBaseAddr function
Defects:
Cavebot: While "loot while killing" is checked, fixed TA using 100% CPU with two looting threads running at once
Cavebot: Fixed problems with pausing while walking
Cavebot: Fixed Hybrid Map feature so that it is functional again
2.16.0, 14.12.2011
Enhancements:
Tibiaauto: Updated to Tibia 9.40
Defects:
Seller: fixed buying more that 100 items
2.15.0, 23.10.2011
Enhancements:
Tibiaauto: Updated to 9.31
Defects:
2.14.1, 15.10.2011
Enhancements:
Defects:
Auto Login: Fixed clicking on Enter Game button that was moved
2.14.0, 6.10.2011
Enhancements:
Tibiaauto: Update to Tibia 9.20
Defects:
2.13.2, 17.9.2011
Enhancements:
Defects:
Tibiaauto Util: Fixed mod by 0 error
Tibiaauto: Fixed level display bug in text console
2.13.1, 13.8.2011
Enhancements:
Tibiaauto: Updated remaining portions for Tibia 9.10(many function calls were optimized by the new compiler)
Defects:
2.13.0, 10.7.2011
Enhancements:
Tibiaauto: Partially updated for Tibia 9.10(many function calls were optimized by the new compiler)
Defects:
2.12.1, 10.7.2011
Enhancements:
Defects:
Tibiaauto: Fixed IPC back pipe getting full too quickly
2.12.0, 14.6.2011
Enhancements:
Tibiaauto: Updated for Tibia 9.00
Defects:
2.11.0, 12.5.2011
Enhancements:
Tibiaauto: Updated for Tibia 8.74
Defects:
2.10.0, 5.5.2011
Enhancements:
Tibiaauto: Updated for Tibia 8.73
Defects:
2.9.0, 20.4.2011
Enhancements:
ShowMap: Made extended research a savable parameter
Maphacks: Added auto-mounting
Python: Added mount functions
Defects:
Autogo: Fixed problem where spells that were substrings of another spell were not cast
Cavebot: Looting no longer gets interrupted by other walkers
Added automount feature to Maphacks, anytime it can, it will eventually mount
Python: Fixed problem with python scripts staying enabled after a new config has been loaded
Autolooter: Fixed autolooter trying to open non-corpses
Cavebot: Fix loot dropper list when saves and loads
2.8.3, 4.3.2011
Enhancements:
Spellcaster: Added a quick fix ico spell to spellcaster
Banker: Added option to banker to withdraw cash if it has none
Auto login: it pauses all walking modules until all BPs are opened
Defects:
Cavebot: Fixed bug causing Cavbot to stop running if the depot walker gets interrupted
2.8.2, 29.1.2011
Enhancements:
Tibia Auto: Updated to 8.71
items.xml: Added new items
Cavebot: Cavebot will automatically loot "new" items if their ID is above a certain constant(which will increase each release)
Defects:
Tibia Auto: Fixed bug causing TA to crash when saying things between 124 and 252 characters long
2.8.1, 16.1.2011
Enhancements:
Seller & Banker: Displays location when path not found
Cavebot: Added better method for using "Reduced attack when player seen" (Fixes constantly attacking, then ignoring monster)
Cavebot: Depositer stops when BP closed manually
Defects:
Tibia Auto: Removed Auto Aim
Fluid Drinker: Updated vocabulary
Seller & Banker: fixed not saving NPC locations to script file (you may need to resave xml file)
Maphacks: Fixed showing creature names from different levels
Cavebot: Fixed depot walker never walking to depot after cavebot is paused
Cavebot: Fixed infrequently trying to walk to point (0,0,0)
Autogo/Log: Fixed loading scripts and editing alarms with "Food" trigger saved in them
Various: When depositing/selling/banking the module doesn't lose control while it is busy with depot/NPC
Banker: Fixed banker not starting automatically when started by saved script
Cavebot: Fixed Backattack alien with rune
Seller & Banker: Not blocked by players
2.8.0, 8.12.2010
Enhancements: Update
Defects:
2.7.3, 3.12.2010
Enhancements:
Various: Negative heal values in the fluid drinker, spellcaster, and runemaker heal at MaxHp/Mana - value
Cavebot: Added drop list to cavebot
Auto Login: TA does not save but can load passwords from scripts
Auto Go: Auto go internals changed and proximity settings take less CPU
Various: Autogo, seller, banker and cavebot all work together for control over walking
Various: Modules can be given priorities as to which will act first
Various: Can go to seller and/or banker and/or depot in the same trip into town
Various: Added status messages to walking modules(seller, banker, autogo,cavebot)
Cavebot: When cavebot enabled, pausebreak/%ta pause stops all movement from cavebot and other modules as well
Banker: The banker can change gold instead of depositing
Banker: The banker counts gold in hands and other slots
Cavebot: Can go though waypoints backwards
CVS Files: Bankers and Sellers only need 1 location
Various: Banker, seller and autogo detect gold and items in hand
AutoGo: Added alarm for VIP names in the VIP list
AutoGo: Added alarm for when conditions disappear
Defects:
Cavebot: Fixed Blood hit control
Cavebot: Fixed cavebot always looting plats and crystals
Spellcaster: Fixed bug in casting spells
Spellcaster: Fixed problem with healing other using Sio
2.7.2, 4.11.2010
Enhancements:
Seller: Considers equipped items wen deciding what to buy and sell(still does not work well with AutoGo's StopWalking)
Defects:
Cavebot: Fixed TA not attacking creatures after hunting for a long time
Cavebot: Fixed training option which sometimes accidentally puts your weapon into a creature if switching
Items: Fixed light shovel Id
Internal: waitForItemChange returns value
2.7.1, 22.10.2010
Enhancements:
Auto Login: Fixed Tibia window sometimes staying behind other windows when trying to log in
Defects:
Runemaker: Saves spell list properly
Runemaker: Making enchanted spears no longer crashes TA
Auto Go: Alarm for equipped items as well as those in open backpacks
Auto Go: Added alarm when hit for more than certain value
Item Config: Saves loot list all the time when saving script
2.7.0, 23.9.2010
Enhancements:
Updated to 8.62
Defects:
Cave Bot: Fixed attacking creatures and players that have previously attacked you, but more than 30 seconds ago.
Auto Looter: Looting stackable items no longer does so in parts, it takes them all at once.
Spellcaster: Fixed delay on casting multiple times in a row.
2.6.2, 9.6.2010
Enhancements:
Defects:
Cavebot: Bad memory leak in cavebot fixed
2.6.1, 9.4.2010
Enhancements:
Cavebot: Reduced CPU usage for depot walker check
Defects
Maphack: Name viewer fixed
Trade Monitor: No longer talks normally when trying to talk in Trade channel
Spellcaster: Loads Sio players with spaces within names(need to save a new script)
Cavebot: Depot walker fixed
Fluid: Drops empty flasks again
2.6.0, 8.23.2010
Enhancements:
TibiaAuto: Updated to 8.61
Grouping: Made more accurate and efficient
AutoLooter: stacks items in backpacks that are already full
Defects:
Maphack: Fixed maphack crashing when it's the first module to start
AutoGo/Log: fixed hanging when enabling and disabling reponder
Show Map: fixed "Research" overwriting ladders and holes when enabled
2.5.2, 21.8.2010
Enhancements:
Tibia Auto: TibiaAuto icon reloads if Explorer crashes
Tibia Auto: Can choose to hide Tibia with TA(works with login, and autogo)
Cavebot: Walks through players on non-PvP
Tibia Auto: Can choose what to do when starting modules after loading a script
Tibia Auto: Added new settings in general options and statistics
Tibia Auto: Tray icon name changes based on player name
AutoLogin: Fixed long delay before logging in
AutoLogin: Can automatically use last password and account name
Defects:
TAUtil: Fixed not sending correct index
Tibia Auto: Fixed crashing when sending stats
TAUtil: fixed getMemRange function
Seller: Spam when enabled is now gone
2.5.1, 2.7.2010
Enhancements:
Defects:
Cavebot: Fixed attacking monsters
Modules: Fixed x-ray, fisher, and depot walker
PlayerInfo: Fixed "Not detecting spells" bug
Kernal/Showmap: Fixed "error messages when editing tiles" bug
2.5.0, 1.7.2010
Enhancements:
Installer: Installer does not change the current items.xml, but it adds a file named "tibiaauto-items-{version number}.xml"
Tibia Auto: Updated to Tibia 8.6
items.xml: added new items
tiles.xml: made all runes a potions stackable and added all new tiles for new areas
consts.xml: updated addresses
Player Info: Added the ability to disable spell timers
Defects:
Kernal: Fixed bug in MapHacks module causing Tibia to crash/dead creatures to appear in BL
2.4.1, 27.6.2010
Enhancements
Autogo: New "Waypoint Reached" Alarm
AutoGo: Restructured alarm types
Cavebot: TA Map walk delay after interruptions has been improved
Auto Login: Accounts for message of the day
Python: Decreased Python function delay to 25ms
Python: Extra diagonal walk python functions
Python: Added moving variable to characters
Cavebot: Walking packets better mimick what the client sends
Autogo: waits for 3 seconds after killing something before walking again
Autogo: You can edit text in the autogo trigger window instead of having it disappear
Defects
Autogo: Several Bugs corrected
ShowMap: Saves destination teleporter to xml file properly
Python: Fixed writeGotoCoordinates function
Cavebot: Hybrid map walker is working again
Autogo: Autogo no longer crashes when enabling modules that have not been opened yet with popup windows
Cavebot: Don't attack players option get saved
Item Config: Fixed adding food items to list
Eater: Fixed food eating times in xml file
Seller: Fixed memory leak
Seller & Banker: Fixed overshooting destination
Seller: No longer says "hi" twice in a row
Seller: Fixed seller crashing when it tries to buy items
AutoGo: Fixed triggers with integer values
AutoGo: No longer adds selected modules to start if the start module button is not enabled
2.4.0, 7.5.2010
Enhancements
General update to Tibia 8.57
Defects
Auto Go/Log: Corrected a bug in the detection of VIP online status
2.3.2, 2.5.2010
Enhancements
Auto Go/Log: Typed Item List
Auto Go/Log: Additional Icons
Kernel: Added support for item typing
Load and Save: Saves and starts scripts and modules when loading
Load and Save: Option in general settings to load a player's script on startup
Kernel: Added support for on-screen text display
Restacker: Improved speed of restacker
Restacker: Allowed it to pick up less than a full stack if it's too heavy
Item Config: Added a couple more items
Defects
Auto Go/Log: Corrected a graphical glitch related to using icons in drop-down menus.
Python: Fixed setFollowedCreature function
Spellcaster: Exori mas casts properly
Trade Monitor: Fixed corrupt packet sending after saying long messages
Creature Info: No longer fails to read green text when looking at self
Cavebot: Is able to go up and down stairs like the ones at the edge of the dock in Yalahar
ItemConfig: Correctly identifies CTRL key for Copying, cutting and pasting
Tibia Auto: Cleans up more stuff when exiting
2.3.1, 18.4.2010
Enhancements
ItemConfig: Looted items are now saved to script files. It will always add them to the loot array when loading but it will only select them first one in the tree if it exists.
Cavebot: Final version of loot while killing
Auto Go/Log: Can walk between start and runaway continuously
Installer: Installation will now never repace the items.xml file unless it is missing
Defects
AutoGo: Fixed fighting with banker and seller for control
Banker, Seller, Auto Go/Log: Fixed fighting for control when attacking
Auto Go/Log: Fixed crash when alarm triggers
Auto Go/Log: Now saves blacklist,highlight, detect all floor, detect +-1 floor options
Auto Go/Log: Newer conditions like drowning and dazzled are now correctly detected
Auto Go/Log: Checks if a logout block is on before trying to log out
ItemConfig: Fixed memory leak
Cavebot: Fixed crash errors when looting while killing
Spellcaster: Exura sio now heals at proper health
Python: Fixed memory leak for readContainerItem() function
2.3.0, 13.4.2010
Enhancments
Auto Go/Log: Reworked AutoGo now 4.11
Auto Go/Log: Added functionality to capture an image of start and runaway positions.
Cavebot: Changed adding and removing waypoint slightly
Defects
Auto Go/Log: Stabalized Tibia client window manipulation
Auto Go/Log: Corrected and error preventing the logout action from completing successfully
Auto Go/Log: Corrected several problems with the spellcasting action
Auto Go/Log: Fixed alarm for leveling up
Auto Go/Log: Corrected Vista screenshot error
Auto Go/Log: Corrected MC Window Confusion error
Auto Go/Log: Corrected Window flashing
ItemConfig: Cancel button doesn't make any changes now
Installer: Added logs folder to TA directory
2.2.3, 4.8.2010
Enhancments
Auto Go/Log: Reworked AutoGo now 4.11
Auto Go/Log: Added functionality to capture an image of start and runaway positions.
Defects
Cavebot: Loot from floor works now
Python: walkOnTAMap function will now walk to positions 1 square away
Spellcaster: Fixed saving timed spells
2.2.2, 4.4.2010
Enhancments
Auto Go/Log:Runaway+Back kills monsters on the way
Defects
Cavebot: Fixed toggling between two creatures
ItemConfig: Fixed "refresh items from file" button
Cavebot: Resets standing timer when cavebot disabled
Spellcaster: Freezing when enabling Exura Sio spells
Autolooter: Fixed random crashing
Cavebot: No longer randomly walks to depot when autogo alarm goes off
Cavebot: Fixed fighting with Auto Go/Log when going to runaway point
Autolooter: Fixed sometimes closing your own backpacks
Cavebot: No more long pauses every ~8 steps when walking
Grouper: Groups immediately when enabled
2.2.1, 28.3.2010
Defects
Spellcaster: Fixed not casting spells
Spellcaster: Fixed never casting when cast mana == maximum mana
2.2.0, 27.3.2010
Enhancments
Spellcaster: New and improved spellcaster
Item Config: Created Tree Control for items, visit wiki for more information
Python: Added entirely new taitem python functions
Python: Added MoveUp/Down/Right/Left functions
Python: Added other function
Python: Removed older taitem python functions(only functions not used in forum python scripts)
Tibia Auto: Separated out items and constants into different files
Tibia Auto: Installation added new items and consts XMLs and will not need to overwrite future items.xml's
REMINDER to check with Akilez)Auto Go/Log: On logout the cavebot will Half attack, but stay in the same spot until log out
Cavebot: Able to choose your own prefix for loading mini map labels (default was $ta)
Cavebot: For the trainer, a player must be attacking you to be considered an "Alien"
Cavebot: Fixed sometimes not looting creature after killing
Autolooter: Improved algorithm for auto open corpses to always loot except when a creature dies while it is moving items
Defects
Auto Login: Fixed closing backpack after opening them
Auto Go/Log: Fixed Logging out command for alarms(it now logs out)
Auto Login: Always maximizes window when trying to log in
Tiles: Made closed hole very slow so that in case it is actually open but not researched it will avoid it
Python: Fixed crash on invalid parameter or module name
Python: Fixed error when reading nonexistent item or non-existent character ID
Cavebot: Radius now works properly and chooses a random distance to walk to within the radius
Cavebot: Fixed high CPU usage created by pathfinding and causing lag
Creature Info: Put in safeguard to stop 'looking' at character if it fails
RuneMaker: Will only move items from hand into backpacks open for more than 20 seconds.
Banker: Fixed Tzelia and added Finarfin locations in the banker.xml