We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Been experimenting with trainer gossip and here's something fishy i did not get to bottom of:
Once you have gossip frame open with trainer following scenarios unfold:
which calls:
public void SelectGossipOptionSimple(int gossipId) { LuaDoString($"SelectGossipOption({gossipId}))"); }
result: does nothing
public void SelectGossipOption(int gossipId) { LuaDoString($"SelectGossipOption(max({gossipId}, GetNumGossipOptions()))"); }
result: unlearn talents frame opens
result: learn skills frame opens
So the question is how are the case 1 and 3 different? if they lead to such drastically different results.
The text was updated successfully, but these errors were encountered:
mystery solved there's an extra brace ) in SelectGossipOptionSimple()
Sorry, something went wrong.
No branches or pull requests
Been experimenting with trainer gossip and here's something fishy i did not get to bottom of:
Once you have gossip frame open with trainer following scenarios unfold:
which calls:
result: does nothing
which calls:
result: unlearn talents frame opens
result: learn skills frame opens
So the question is how are the case 1 and 3 different? if they lead to such drastically different results.
The text was updated successfully, but these errors were encountered: