Jump to content

Question

Posted

i implement this config.

// Will tuxedo and wedding dresses be shown when worn? (Note 1)

wedding_modifydisplay: yes

how to enable attacking and using skill for those who already worn those clothes.

for example. my character is ranger. and i worn this tuxedo then i became a poring job. and i got the wedding display effect. but i can't use any skill and do a normal attack to the monster and player.

is this possible to implement?you can use skill or do a normal attack while wearing this item? this is also a issue for summer and xmas class. then cannot use or make a normal attack.

3 answers to this question

Recommended Posts

Posted

src > map > clif.c

find:

switch(action_type)
{
case 0x00: // once attack
case 0x07: // continuous attack

comment the wedding option, christmas and summer outfit ones

/*
if( sd->sc.option&(OPTION_WEDDING|OPTION_XMAS|OPTION_SUMMER) )
return;
*/

don't forget to compile after that.

even though that doesn't return your skills, I don't know about that, and also the sprite doesn't move as if it was a job attacking though.

Posted

src > map > clif.c

find:

switch(action_type)
{
case 0x00: // once attack
case 0x07: // continuous attack

comment the wedding option, christmas and summer outfit ones

/*
if( sd->sc.option&(OPTION_WEDDING|OPTION_XMAS|OPTION_SUMMER) )
return;
*/

don't forget to compile after that.

even though that doesn't return your skills, I don't know about that, and also the sprite doesn't move as if it was a job attacking though.

thanks for this info. anyone else who know how to implement my issue?

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