Jump to content

How to fix this SexLab Anim Loader Error? (creating slal pack)


Recommended Posts

Posted

​When I created my animation the first time, everything worked fine:

 

 

mcm_name = "Znaroks Anims"
anim_dir("znarokspack")
anim_id_prefix("znaroks_")
anim_name_prefix("Znaroks")
common_tags("Znaroks")



Animation(
    id="ForcedBJ",
    name="ForcedBJ",
    tags="Oral,MF,Forced,Aggressive",
    sound=Sucking,
    actor1=Female(add_cum=Oral),
    actor2=Male(strap_on=True),
    a1_stage_params = [
        Stage(1, silent=True),
        Stage(2, silent=True),
	Stage(3, silent=True, open_mouth=True),
	Stage(4, silent=True, open_mouth=True),
	Stage(5, silent=True, open_mouth=True),
	Stage(6, silent=True, open_mouth=True),
    ],
    stage_params = [
        Stage(6, timer=2.0, sound=Sucking),
    ]
) 

 

 

But then every time I try to make parameters for actor2(male), like this:

 

 

mcm_name = "Znaroks Anims"
anim_dir("znarokspack")
anim_id_prefix("znaroks_")
anim_name_prefix("Znaroks")
common_tags("Znaroks")



Animation(
    id="ForcedBJ",
    name="ForcedBJ",
    tags="Oral,MF,Forced,Aggressive",
    sound=Sucking,
    actor1=Female(add_cum=Oral),
    	a1_stage_params = [
        Stage(1, silent=True),
        Stage(2, silent=True),
	Stage(3, silent=True, open_mouth=True),
	Stage(4, silent=True, open_mouth=True),
	Stage(5, silent=True, open_mouth=True),
	Stage(6, silent=True, open_mouth=True),],
    actor2=Male(strap_on=True),
    	a2_stage_params = [
	Stage(5, SOS=7),
	Stage(6, SOS=7),],
    stage_params = [
        Stage(6, timer=2.0, sound=Sucking),
    ]
)

 

SAL doesn't let me build it and has errors

SexLab Anim Loaderer error:

 

dWdufOs.png?1

 

 

I compared my animation text file to other slal packs, and it should be completely fine, so I'm baffled to why is this not working.

How do I fix this?

Posted

try this

Animation(
id="ForcedBJ",
name="ForcedBJ",
tags="Oral,MF,Forced,Aggressive",
sound=Sucking,
actor1=Female(add_cum=Oral),
actor2=Male(strap_on=True),
a1_stage_params= [
    Stage(1, silent=True),
    Stage(2, silent=True),
    Stage(3, silent=True, open_mouth=True),
    Stage(4, silent=True, open_mouth=True),
    Stage(5, silent=True, open_mouth=True),
    Stage(6, silent=True, open_mouth=True),
    ],
a2_stage_params= [
    Stage(5, sos=7),
    Stage(6, sos=7),
    ],
stage_params = [
    Stage(6, timer=2.0, sound=Sucking),
    ]
)

edit: why do you have "sound=Sucking" in your stage_params when you already have it set as the animation's sound at the top?

Posted

Maybe wrong, you might try typing the "SOS" with undercase\lowercase. Remember having this issue back in the day.

Posted

Maybe wrong, you might try typing the "SOS" with undercase\lowercase. Remember having this issue back in the day.

 

i have never used the sos entry myself, but i just did a small test and it looks like your right about that, so i have edited my last post to correct that error.

Posted

 

i have never used the sos entry myself, but i just did a small test and it looks like your right about that, so i have edited my last post to correct that error.

 

It's confirmed then, thought that case sensitive for sos parameter is happen just on my end. I just keep forgetting to mentioning about this on SLAL thread or Rydin's SLAL tutorial just to look for confirmation.  

Posted

try this

Animation(
id="ForcedBJ",
name="ForcedBJ",
tags="Oral,MF,Forced,Aggressive",
sound=Sucking,
actor1=Female(add_cum=Oral),
actor2=Male(strap_on=True),
a1_stage_params= [
    Stage(1, silent=True),
    Stage(2, silent=True),
    Stage(3, silent=True, open_mouth=True),
    Stage(4, silent=True, open_mouth=True),
    Stage(5, silent=True, open_mouth=True),
    Stage(6, silent=True, open_mouth=True),
    ],
a2_stage_params= [
    Stage(5, sos=7),
    Stage(6, sos=7),
    ],
stage_params = [
    Stage(6, timer=2.0, sound=Sucking),
    ]
)

edit: why do you have "sound=Sucking" in your stage_params when you already have it set as the animation's sound at the top?

 

Worked perfectly, thanks

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...