Then mods could use script with pseudocode such as
Code: Select all
if (SOURCEPORTNAME == "GZDoom" && SOURCEPORTVERSION >= 1.024)
{
print_relevant_message_or_do_other_relevant_stuff;
}
elseif // ZDoom
{
print_relevant_message_or_do_other_relevant_stuff;
}
elseif // Skulltag
{
print_relevant_message_or_do_other_relevant_stuff;
}
else
{
crash;
}
Of course, something like that may already exist, I don't know. If so, what was the point of the feature request?