Jump to content
  • 0

[ SOLVED ] Help regarding 99/70 item script


GM Winter

Question


  • Group:  Members
  • Topic Count:  176
  • Topics Per Day:  0.14
  • Content Count:  666
  • Reputation:   9
  • Joined:  12/04/20
  • Last Seen:  

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

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  23
  • Reputation:   1
  • Joined:  08/22/18
  • Last Seen:  

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