Jump to content
  • 0

Mount Dragon on 3rd Job Sprite For Lord Knight


edward817

Question


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  10
  • Reputation:   0
  • Joined:  11/14/13
  • Last Seen:  

Hi Everyone, I would like to offer you a service to help me to solve the issue above.

I have a custom item to put on costume, my character will able to become 3rd Job Class sprite.

However, my Lord Knight's pecopeco cannot change to DRAGON.

How should I settle it?

Thanks.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  47
  • Reputation:   3
  • Joined:  05/04/14
  • Last Seen:  

I use this on my Costume item for 3rd job Costume.

OnEquip Item script:
if(Class == Job_Lord_Knight){
    if(checkriding()){
        setoption OPTION_DRAGON1;
    }
}
OnUnequip Item script:
changebase Class;
if(Class == Job_Lord_Knight){
    if(checkdragon()){
        setriding;
    }
}

Worked well for me so far. there might still be a better way to implement that script wise


 

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