Auto-translated
I have 2 questions about the prophet's hut:
1. Is it possible to repeat the quest?
For example: you need to bring ore to get an army. Then, after completing the quest, when you approach the prophet again, he gives you the same quest, and so on, either infinitely or up to a set limit (e.g., 3 times).
q=0;
function prorokF()
if q==o then
MessageBox(...) - the message that the prophet will display
ore=GetPlayerResource(1, 1);
q=1;
end;
if q==1 then
if ore>=3 then
SetPlayerResource(1, 4, ore-3);
q=0;
Trigger(..., nil);
end;
end;
end;
Trigger(...);
something like that
to make it three times, you need to mess around with variables, but in general, it can be done; I can write it.