• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[Trigger] The problem with the creation of skill

Status
Not open for further replies.
Level 3
Joined
Nov 3, 2017
Messages
34
Good day friends! I came across such a problem, according to the scenario of my project, a hero, who has reached the maximum level, creates a skill. The essence of the problem is that one of the characters has a metamorphosis spell, and as soon as he uses this spell, the skill disappears completely. How can this be implemented? solve such a small nuance trigger?
Thank you in advance!
 
UnitMakeAbilityPermanent(unit whichUnit, boolean makePermanent, ability abilButInRawCode)

Calling this native ought to fix the current problem. Note that the last parameter actually takes an integer argument, but is conventionally based on raw-code. (To get the raw-code of your skill, go to Object Editor, and press Ctrl + D)
 
Level 3
Joined
Nov 3, 2017
Messages
34
UnitMakeAbilityPermanent(unit whichUnit, boolean makePermanent, ability abilButInRawCode)

Calling this native ought to fix the current problem. Note that the last parameter actually takes an integer argument, but is conventionally based on raw-code. (To get the raw-code of your skill, go to Object Editor, and press Ctrl + D)

Thank you very much buddy
 
Status
Not open for further replies.
Top