Search found 655 matches

by Ignatus
Sat May 24, 2025 3:11 pm
Forum: Rulesets and modpacks
Topic: Requirements and Future Tech
Replies: 4
Views: 7840

Re: Requirements and Future Tech

cazfi wrote: Fri May 23, 2025 12:19 pm Actually you should already be able to use MinTechs requirements for this effect, though it requires a bit more effort than a dedicated requirement type.
Well, it likely works if the tech tree is guaranteed to have no holes and if you first count all the techs in ruleset.
by Ignatus
Thu May 01, 2025 8:09 pm
Forum: Contribution
Topic: OSDN issue, and patches?
Replies: 4
Views: 13680

Re: OSDN issue, and patches?

For me, OSDN today shows 503 all the time. If it is wrong also for you, it is a next bug in a long sequence. Maybe we need to auto-import unclosed issues from there whenever it works?
by Ignatus
Thu May 01, 2025 12:23 pm
Forum: Art and tilesets
Topic: Rate my work
Replies: 10
Views: 13970

Re: Rate my work

Looks nice! I'd look at a tileset in this style.
by Ignatus
Fri Apr 11, 2025 6:38 pm
Forum: Wishlist
Topic: Big and small rivers
Replies: 7
Views: 20152

Re: Big and small rivers

Interesting idea though not one in priority to appear. Currently, it's possible to make a ruleset with different rivers as you can see in Alien World, but they don't connect to each other like big and small rivers normally should. There should be some tweak that we first generate big rivers and then...
by Ignatus
Thu Apr 10, 2025 5:08 pm
Forum: General discussion
Topic: Is FreeCIV worth playing if I already have all the official CIV games?
Replies: 1
Views: 5773

Re: Is FreeCIV worth playing if I already have all the official CIV games?

Hi! In few words, Freeciv is a remake of CivI/II that is mainly targeted to net multiplayer. As this, it worth trying! In other aspects, its value is often questionable. If you want cool 3d graphics, you are probaly in a wrong place to find them (though in FreecivWeb there were some experiments with...
by Ignatus
Thu Jan 02, 2025 3:34 pm
Forum: Wishlist
Topic: Action Enablers use actor specific variables.
Replies: 1
Views: 43995

Re: Action Enablers use actor specific variables.

There are several requests for "Action_Range" effect throughout the forum, probably it will ever appear. For effects, logically, some extension of the multipliers mechanism can be developed, including using like ones some unit or unit type associated counters, but actually just existing re...
by Ignatus
Mon Dec 30, 2024 3:21 pm
Forum: Rulesets and modpacks
Topic: Checking if an resource is available on any road connected city
Replies: 3
Views: 9155

Re: Checking if an resource is available on any road connected city

Currently, it is not available as a normal game feature; I have tried to work on it but I am currently mostly out of the project. Well, you will need to write in Lua some pathfinder to detect what city is connected to what, there are such algorithms on the web. Then you can place some special extras...
by Ignatus
Mon Jul 22, 2024 5:58 am
Forum: Wishlist
Topic: OR condition for requirement vectors (was possible with nreqs, but not any more)
Replies: 7
Views: 25858

Re: OR condition for requirement vectors (was possible with nreqs, but not any more)

Yes. I too once wanted to make OR reqs but looked into the code and understood it won't work.
by Ignatus
Sun Jul 21, 2024 12:24 pm
Forum: Wishlist
Topic: OR condition for requirement vectors (was possible with nreqs, but not any more)
Replies: 7
Views: 25858

Re: OR condition for requirement vectors (was possible with nreqs, but not any more)

nreqs = {"type", "name", "range", "present" "Terrain", "Tundra", "Local", FALSE "Terrain", "Forest", "Local", FALSE } Won't work. On Forest, the 1st nreq fires, on Tundra, the 2nd. To get ORed reqs, ...
by Ignatus
Sat Jul 20, 2024 9:50 pm
Forum: Wishlist
Topic: OR condition for requirement vectors (was possible with nreqs, but not any more)
Replies: 7
Views: 25858

Re: OR condition for requirement vectors (was possible with nreqs, but not any more)

It was theoretically NOT possible with nreqs to make an OR-vector sich that you can't achieve an equivalent effect in reqs I don't understand what this sentence means. Also, I'm not sure what exactly <=> means. a OR b OR c is equal to NOT ( NOT a AND NOT b AND NOT c) I mean that you have lost actua...