• 🏆 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!

[vJASS] Syntax Error

Status
Not open for further replies.
Level 5
Joined
Jul 17, 2010
Messages
140
Heey! so i am using the DD Universal Pack v4e

For a few of the spells included in the pack.

And now i´m working on implementing Codeless Save and Load (Multiplayer) - v1.3.6

But they have some trigger commands that collide.

And each system works with the other turned off.
upload_2017-5-28_21-21-17.png

So my question is, how to avoid this issue and have both systems active?

Thanks in advance!
 

Jampion

Code Reviewer
Level 15
Joined
Mar 25, 2016
Messages
1,327
The function is redeclared. This means both systems use a function with the same name. You can rename one and all its calls.
Maybe they do both the same and you can safely remove the second one.
Judging by name and purpose (mathematical function) they could actually both do the same.
Find the two functions and compare them.
 
Level 5
Joined
Jul 17, 2010
Messages
140
The function is redeclared. This means both systems use a function with the same name. You can rename one and all its calls.
Maybe they do both the same and you can safely remove the second one.
Judging by name and purpose (mathematical function) they could actually both do the same.
Find the two functions and compare them.

Thank you, I will look it through. :)
 
Status
Not open for further replies.
Top