Jump to content
  • 0

skill requirements


Hitman Monkey

Question


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  8
  • Reputation:   0
  • Joined:  04/03/22
  • Last Seen:  

guys can you help me.

i want to use chain crush combo skill with just (  zen/dangerous soul collect +tiger knuckle fist ) as requirements to activate chain crush combo..
how to make that and where do i put the script, im currently using pre-renewal server.. its just offline server  and i really enjoy playing with offline, thanks for the help guys ❤️

have a great day everyone

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Developer
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  813
  • Reputation:   234
  • Joined:  01/30/13
  • Last Seen:  

You will need to edit the source code. Open skill.cpp and search for SC_COMBO, then you find all parts with combo checks.

For example:

		case MO_CHAINCOMBO:
			if(!sc)
				return false;
			if(sc->data[SC_BLADESTOP])
				break;
			if(sc->data[SC_COMBO] && sc->data[SC_COMBO]->val1 == MO_TRIPLEATTACK)
				break;
			return false;

This says you can use MO_CHAINCOMBO only if you have the status change SC_BLADESTOP or when you are in combo state (SC_COMBO) and the last skill was MO_TRIPLEATTACK.

("break;" here basically means it works, if you return false, it's blocked.)

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