Jump to content
  • 0

Auto Job Master Request


Question

Posted

I'm in need of an npc, he's very old from the eathena era.

It would be a Job Change with automatic option, you selected what you wanted to be and would level up, then when you reached the level (set in the npc) you changed classes automatically.

More details:
Let's suppose that I want to level an Archmage, I would make the Novice character handsome, I would go to the npc, select the option of [Auto Class Change] and the npc would ask me the evolution sequence I would like, then I would choose "Mage > Wizzard > Reborn > Wizzard.T > Archmage" and would level up.

- Reaching x base level and job level automatically changed the class to Mage.
- Reaching x base level and job level changed the class automatically to Wizard.
- Reaching 99 base level 70 job level will respawn automatically.
- Reaching x base level and job level changed the class automatically to Wizard T.
- Reaching x base level and job level automatically changed the class to Archmage.

all automatically.

If any kind-hearted soul can do it for me I would really appreciate it. ?

Sincerely Mihael.

5 answers to this question

Recommended Posts

  • 0
Posted
prontera,150,150,4	script	NpcJobChange	82,{
	mes "Hi, wich class? "
	job[0] = select("Swordman:Magician:Archer:Acolyte:Merchant:Thief:Super Novice");
	if (job[0] == 7) job[0] = 23; // Suno
	close;
OnPCBaseLvUpEvent:
	if (!Class && job[0] == 23 && BaseLevel >= 45) // If Suno
		jobchange job[0];
	end;
OnPCJobLvUpEvent:
	if (job[0] == 23) end; // suno doesnt apply
	if (!Class && JobLevel >= 10)
		jobchange job[0];
	end;
}

Test this prototype and u can improve it for more classes

  • MVP 1
  • 0
Posted
On 5/25/2022 at 10:31 AM, buraquera said:
prontera,150,150,4	script	NpcJobChange	82,{
	mes "Hi, wich class? "
	job[0] = select("Swordman:Magician:Archer:Acolyte:Merchant:Thief:Super Novice");
	if (job[0] == 7) job[0] = 23; // Suno
	close;
OnPCBaseLvUpEvent:
	if (!Class && job[0] == 23 && BaseLevel >= 45) // If Suno
		jobchange job[0];
	end;
OnPCJobLvUpEvent:
	if (job[0] == 23) end; // suno doesnt apply
	if (!Class && JobLevel >= 10)
		jobchange job[0];
	end;
}

Test this prototype and u can improve it for more classes

Oh, sorry I couldn't answer you sooner.
I managed to develop the npc by another method, even so thank you very much for commenting.

Hope this helps if anyone else has the same problem as me.
Ty ;3

  • 0
Posted
On 21/06/2022 at 17:49, Mihael said:

Ah, desculpe não ter respondido antes.
Consegui desenvolver o npc por outro método, mesmo assim muito obrigado por comentar.

Espero ter ajudado se mais alguém tiver o mesmo problema que eu.
Ty ;3

Could you leave it there like you did?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...