Jump to content
  • 0

Auto Job Master Request


Mihael

Question


  • Group:  Members
  • Topic Count:  21
  • Topics Per Day:  0.01
  • Content Count:  130
  • Reputation:   70
  • Joined:  09/03/14
  • Last Seen:  

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.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  68
  • Reputation:   8
  • Joined:  05/12/20
  • Last Seen:  

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
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  21
  • Topics Per Day:  0.01
  • Content Count:  130
  • Reputation:   70
  • Joined:  09/03/14
  • Last Seen:  

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

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  83
  • Reputation:   1
  • Joined:  01/05/13
  • Last Seen:  

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?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  21
  • Topics Per Day:  0.01
  • Content Count:  130
  • Reputation:   70
  • Joined:  09/03/14
  • Last Seen:  

On 7/7/2022 at 12:45 AM, luizinhomt said:

Could you leave it there like you did?

Sorry, I lost the file. But I used this npc as a base: https://pastebin.com/raw/QhekceYC

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   2
  • Joined:  02/15/13
  • Last Seen:  

On 2022. 7. 26. at 오전 2시 53분, Mihael said:

죄송합니다. 파일을 잃어버렸습니다. 하지만 이 npc를 기반으로 사용했습니다:  https://pastebin.com/raw/QhekceYC

4th job add plz.
Please add file language.

lang.txt

Link to comment
Share on other sites

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.

×
×
  • Create New...