Jump to content
  • 0

[Request] Same race sub npc


alexa026

Question

Is it possible to someone tell me where can i find npc that giving sub, but only for same race classes.

For exemple, if u are dark elf to can take sub only from dark elf race classes...

please..

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Its a java edit.. And you better use [Dev] Help section ,not this.

Interpid made a share to edit the subclass system.. You need only the check like :

				switch (_race)
			{
				case Elf:
					subclasses.removeAll(getSet(DarkElf, Third));
					break;
				case DarkElf:
					subclasses.removeAll(getSet(Elf, Third));
					break;
			}

See this? :

subclasses.removeAll(getSet(DarkElf, Third));

So make it like

Human,DarkElf,Orc,Dwarf and so on and it should limit it .. GL!

 

 

Post merged by Raule

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now


×
×
  • Create New...