Jump to content
  • 0

[ SOLVED ] Help regarding 99/70 item script


Question

Posted (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 by GM Winter

1 answer to this question

Recommended Posts

  • 0
Posted (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 by khouuming21

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...