Jump to content
  • 0

need help here


Brynner

Question


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

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.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  392
  • Reputation:   47
  • Joined:  11/18/11
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

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?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  392
  • Reputation:   47
  • Joined:  11/18/11
  • Last Seen:  

It lets you attack monsters as in normal attacks but it doesn't return your skills since the server considers you as if you were another class.

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