Jump to content

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


Recommended Posts

​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?

Link to comment

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?

Link to comment

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.

Link to comment

 

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.  

Link to comment

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

Link to comment

Archived

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

  • Recently Browsing   0 members

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

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use