for add subclass you should have noblesse status or alliance with varka or ketra lvl 1 or more
This is retail way
if(!Config.ALT_GAME_SUBCLASS_WITHOUT_QUESTS)
{
QuestState qs = player.getQuestState("235_MimirsElixir);
if(qs == null || !qs.isCompleted())
{
player.sendMessage("You must have completed the Mimir's Elixir quest to continue adding your sub class.");
player.setLocked(false);
return;
}
qs = player.getQuestState("234_FatesWhisper");
if(qs == null || !qs.isCompleted())
{
player.sendMessage("You must have completed the Fate's Whisper quest to continue adding your sub class.");
player.setLocked(false);
return;
}
}
Hey! It's been years since I tried this, just redownloaded everything for the nostalgia but I'm having the "mismatch" problem.
You were right, I used another system, not the one from the post! My bad!
Now I can't find the system that works with AuthGateD 🤣
I see you have found it and uploaded it but the link you provided no longer works. If you are still around, can you please reupload? Thank you!
Question
Rapist
I wish to change subclass required system
for add subclass you should have noblesse status or alliance with varka or ketra lvl 1 or more
This is retail way
if(!Config.ALT_GAME_SUBCLASS_WITHOUT_QUESTS) { QuestState qs = player.getQuestState("235_MimirsElixir); if(qs == null || !qs.isCompleted()) { player.sendMessage("You must have completed the Mimir's Elixir quest to continue adding your sub class."); player.setLocked(false); return; } qs = player.getQuestState("234_FatesWhisper"); if(qs == null || !qs.isCompleted()) { player.sendMessage("You must have completed the Fate's Whisper quest to continue adding your sub class."); player.setLocked(false); return; } }i tried
but is not working....
any ideea how i can do it ?
9 answers to this question
Recommended Posts