Language…
13 users online: caioskii, Cristian Cardoso, fanfan21, Golden Yoshi, Green Jerry, Hayashi Neru, Josuke Yoshikage, KoJi, Maw, Shomi, toady, tOaO, yoshi9429 - Guests: 243 - Bots: 327
Users: 64,795 (2,377 active)
Latest user: mathew

Sonniku's Custom Reznor inserting problem (with GIEPY)

When I try to insert sonniku's custom reznor, (It's in the C3 2017 thread...) I get this below error.
Originally posted by GIEPY
D:\giepy_v1.0.2\giepy_v1.0.2\sprites\normal\pixi\CustomReznor.asm:1165: error: Label "GET_DRAW_INFO" redefined [GET_DRAW_INFO: STZ $186C,x]
D:\giepy_v1.0.2\giepy_v1.0.2\sprites\normal\pixi\CustomReznor.asm:1050: error: Unknown command. [JSR GET_DRAW_INFO]
Assembling of "D:\giepy_v1.0.2\giepy_v1.0.2\sprites\normal\pixi\CustomReznor.asm" failed...
CFG file "D:\giepy_v1.0.2\giepy_v1.0.2\sprites\normal/pixi/CustomReznor.cfg" processing failed...


My understand of this message, It seems like there are some coding errors on this reznor sprite, but I don't know how to fix that...
So I just decided to ask for help!

Here's the reznor's code!

Mod edit: No need for giant blocks of code, see local rule 6.
Looks like the Reznor has a label which conflicts with one of your library routines. Remove the routine in question from the Reznor's code, should be lines 1165-1226.

Sonikku's Reznor is one of the sprites I was going to convert to PIXI and submit to the section, but I never got around to fully finishing that. Maybe I'll do it some day.
Late reply, but I still get this error for some reason...

Originally posted by GIEPY
D:\giepy_v1.0.2\giepy_v1.0.2\sprites\normal\pixi\CustomReznor.asm:1050: error: Unknown command. [JSR GET_DRAW_INFO]
Assembling of "D:\giepy_v1.0.2\giepy_v1.0.2\sprites\normal\pixi\CustomReznor.asm" failed...
CFG file "D:\giepy_v1.0.2\giepy_v1.0.2\sprites\normal/pixi/CustomReznor.cfg" processing failed...
Not sure of what routines are you using, but try changin every instance of
Code
JSR GET_DRAW_INFO
to
Code
JSL GetDrawInfo
Oh! I just solved my problem by using method that you just exactly mentioned 1 hour ago... :P
Well, thanks for help anyway!