You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
end else if ( (myron_permission) or (myron_date) ) then begin
start_dialog_at_node(Node031); // this node will check if you are a mordino made man
end else begin
start_dialog_at_node(Node018); // this node does not check if you are a mordino made man
The made man check is only made in node031, but the only way to get to node031 is if you already have permission to see myron or if you are pretending to be a prostitute from the cat's paw (i think the RP adds a way to get miss kitty to send you there).
So what happens if the player is a mordino made man is that the guard skips to node018 and he doesn't recognize that they are a mordino made man.
Simple fix, change line 194 to :
end else if ( (myron_permission) or (myron_date) or ( (self_family == dude_family) ) ) then begin
When you talk to the guard, he recognizes that you are a mordino made man and responds correctly.
The text was updated successfully, but these errors were encountered:
In NCMYRGRD.ssl, line 194 (talk_p_proc) :
The made man check is only made in node031, but the only way to get to node031 is if you already have permission to see myron or if you are pretending to be a prostitute from the cat's paw (i think the RP adds a way to get miss kitty to send you there).
So what happens if the player is a mordino made man is that the guard skips to node018 and he doesn't recognize that they are a mordino made man.
Simple fix, change line 194 to :
When you talk to the guard, he recognizes that you are a mordino made man and responds correctly.
The text was updated successfully, but these errors were encountered: