Page 11 of 11

Re: Trans AI .:18.06.22 :.

Posted: 06 Dec 2018 00:43
by xarick
The index 'Info' does not exist

Re: Trans AI .:19.04.02 :.

Posted: 02 Apr 2019 07:47
by fanioz
xarick wrote:The index 'Info' does not exist
Thanks for the bug report. :D

=================================================================================
Version 19.04.02 released on Bananas and also on first post.
Just fixes of the following bugs

Fixes: Not build rail depot if cant build the entry
Fixes: Prevent excessive CPU usage in valuator function - thanks to xarick
Fixes: index 'info' not found inside valuator - thanks to xarick

Re: Trans AI .:19.04.02 :.

Posted: 05 May 2019 00:01
by xarick
Return value of valuator is not valid (not integer/bool)

Re: Trans AI .:19.05.06 :.

Posted: 06 May 2019 04:34
by fanioz
xarick wrote:Return value of valuator is not valid (not integer/bool)
Thanks for the bug report. :D
=================================================================================
Version 19.05.06 released on Bananas and also on first post. :D

* 190506
Fixes: Return value of valuator is not valid (not integer/bool)
Feature: Add ability to use Town Actions and option to disable it
Change: Uses modified Fibonacci Heap from library for pathfinding.
Change: TransHeap class now become ListSorter.

Re: Trans AI .:19.05.06 :.

Posted: 01 Jun 2019 10:34
by MatthijsH
Assertion failed (savegame not added due to filesize)

Re: Trans AI .:19.05.06 :.

Posted: 25 Jun 2019 00:24
by fanioz
MatthijsH wrote: 01 Jun 2019 10:34 Assertion failed (savegame not added due to filesize)
Thanks for the bug report. :D
=================================================================================

Version 19.06.25 released on Bananas and also on first post. :D

* 190625
Change: Limit iteration for path finding
Change: Add vehicle more often
Fixes: Sell vehicle without bright future
Fix: Don't wait too long if road has vehicle in the way
Fix: Assertion failed due to invalid Industry (thanks to MatthijsH)

Re: Trans AI .:19.06.25 :.

Posted: 27 Jun 2019 09:50
by ssmit132
Hi,

Seeing that you just updated this AI, I thought I would give it a test in a game along with some other AIs :) . I've encountered two issues, though:

1) The first Trans AI tried to build a plane network, but it didn't take into account the range in PikkaBird's Av8 NewGRF and none of the planes could actually carry out their orders. Naturally they quickly became bankrupt. The next Trans AI company that took their place started to do the same thing.

Image

2) When I tried to reload the game later, Trans AI crashed immediately with an error about not being able to find "StationToClose".

Image

I'll attach the save game, but there are some NewGRF separators that aren't on Bananas in the NewGRF list so I'm not sure if you'll be able to open it.

Re: Trans AI .:19.06.25 :.

Posted: 13 Jul 2019 00:17
by fanioz
ssmit132 wrote: 27 Jun 2019 09:50 Hi,

Seeing that you just updated this AI, I thought I would give it a test in a game along with some other AIs :) . I've encountered two issues, though:

1) The first Trans AI tried to build a plane network, but it didn't take into account the range in PikkaBird's Av8 NewGRF and none of the planes could actually carry out their orders. Naturally they quickly became bankrupt. The next Trans AI company that took their place started to do the same thing.
[+] Spoiler
Image
2) When I tried to reload the game later, Trans AI crashed immediately with an error about not being able to find "StationToClose".
[+] Spoiler
Image
I'll attach the save game, but there are some NewGRF separators that aren't on Bananas in the NewGRF list so I'm not sure if you'll be able to open it.
Thanks for test Trans AI :D ,

for the first issue, yes thanks for raise up this. It was fixed and will be available on Bananas after several days testing.

for the second, there was something weird. In debug window AI version was v200101, while the folder where Trans AI start is at 180411.
discrepancyversion.png
discrepancyversion.png (30.26 KiB) Viewed 4915 times
So please delete "Trans-AI_*.tar" file in "..\content_download\ai" folder, and download the latest available on Bananas (v190625). Let me know if this not solve your issue.
Thanks
:D

Re: Trans AI .:19.06.25 :.

Posted: 14 Jul 2019 10:16
by ssmit132
Doing what you suggested appears to fix the issue I was having on load. Thank you for the advice; I look forward to playing against this AI in the future and seeing how it performs :)

Re: Trans AI .:19.07.23 :.

Posted: 23 Jul 2019 00:04
by fanioz
ssmit132 wrote: 14 Jul 2019 10:16 Doing what you suggested appears to fix the issue I was having on load. Thank you for the advice; I look forward to playing against this AI in the future and seeing how it performs :)
I'm glad that solve the issue. :mrgreen:
=============================================================

And now bugfix release version 19.07.23 available both on Bananas and also on first post. :D

* 190723
* Fixes: Aircraft did not respect NewGRF maximum distance

Re: Trans AI .:19.07.23 :.

Posted: 08 Apr 2020 13:31
by RockyPapery
Hi, I got an error in the middle of the game.

Re: Trans AI .:19.07.23 :.

Posted: 22 Feb 2023 19:00
by xarick
Since the last version, with vanilla aircraft, Trans builds airports but no aircraft at all.

EDIT: Replacing line 118 of manager/airconnector.nut with this, solves the issue:

Code: Select all

if (maxEngineDistance != 0 && orderDistance > maxEngineDistance) continue;
AIEngine.GetMaximumOrderDistance returns 0 for unlimited distance, which is the case for vanilla aircraft.