Sallycantdance Posted January 31, 2024 Group: Members Topic Count: 224 Topics Per Day: 0.14 Content Count: 797 Reputation: 12 Joined: 12/04/20 Last Seen: 11 hours ago Share 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 Link to comment Share on other sites More sharing options...
0 Johnson Posted February 1, 2024 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 23 Reputation: 1 Joined: 08/22/18 Last Seen: 4 hours ago Share 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 Link to comment Share on other sites More sharing options...
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 WinterLink to comment
Share on other sites
1 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.