irontusk341 wrote:Got this error in Zandronum 3.0
irontusk341 wrote:Got rid of the Errors.
I already told you that sweety Zandro is quite capricious to DECORATE coding, therefore I haven't any plans for providing Zandro compatibility because "fixing" for Zandro can break a some cool ideas, at least with my current DECORATE skill.
irontusk341 wrote:... it works great in Gzdoom
But yes, I always test my code on latest GZDoom.

Anyway, my resources are share for everyone who will want it, and moreover Diablo 3D IS YOUR mod, so you can modify any actor as you want. Just don't delete initial CREDITS lump from wad. But if you manage to adapt for Zandro a some code-massive actors without much crippling, then it a really respectful achievement I think.
irontusk341 wrote:Script error, "diablo.pk3:_d2_frenzytaur actor (summon fr).wad:DECORATE" line 88:
Call to unknown function 'CountInv'
and
Unknown identifier 'SXF_TRANSFERSPRITEFRAME' for 58 lines.
What about this two errors if you still interested ofc, then stay awhile and listen.

A_JumpIf(CountInv("Frenzy1,2,3...6") == 0, "See") - it essential line for Frenzy buff, without it Frenzy never drops. But I did place in code a some alternative solution: each similar line can be replaced by these two (also it twice commented for tips)
- Code: Select all • Expand view
A_JumpIfInventory ("Frenzy1,2,3...6",1,2) //equivalent of MLWL A 0 A_JumpIf(CountInv("Frenzy2") == 0, "See")
A_Jump (256, "See") //equivalent of MLWL A 0 A_JumpIf(CountInv("Frenzy2") == 0, "See")
I hope that it can be accepted by Zandro. But looks that you already notice it.

SXF_TRANSFERSPRITEFRAME - is flag which provides "post-images" for blured trail effect and have only aestethic sence. Unfortunately I dunno how it can be replaced for Zandro, seems that it should be destroyed, while GZDoom even allows turn this effect off without code destruction. Actually I had commented it too. Btw, if you decide to nerf Frenzytaur's max speed, then the best choice is at beginning - to delete or block-// this line: "TNT1 A 0 A_SetSpeed (20)", it cutoff speed cap instantly by 5 points.