Sallycantdance Posted January 31, 2024 Posted January 31, 2024 (edited) hello everyone, i would like to ask is it possible to make an item that will instantly making one 99/70 character of their choice just like an instant job changer npc but this time its an item script Edited January 31, 2024 by GM Winter Quote
0 Johnson Posted February 1, 2024 Posted February 1, 2024 (edited) You can do it with simple script below, then use it on the item you want. Haven't tested it yet. function script testlevel { OnDo: goto(job_menu); job_menu: switch(select("Assassin Cross","Lord Knight")){ case 1: jobchange 4013; set BaseLevel,99; set JobLevel,70; break; case 2: jobchange 4008; set BaseLevel,99; set JobLevel,70; break; } end; } Edited February 1, 2024 by khouuming21 Quote
Question
Sallycantdance
hello everyone, i would like to ask is it possible to make an item that will instantly making one 99/70 character of their choice just like an instant job changer npc but this time its an item script
Edited by GM Winter1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.