znaroks Posted April 12, 2017 Posted April 12, 2017 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: 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?
MadMansGun Posted April 12, 2017 Posted April 12, 2017 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?
anubis Posted April 12, 2017 Posted April 12, 2017 Maybe wrong, you might try typing the "SOS" with undercase\lowercase. Remember having this issue back in the day.
MadMansGun Posted April 12, 2017 Posted April 12, 2017 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.
anubis Posted April 12, 2017 Posted April 12, 2017 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.
znaroks Posted April 12, 2017 Author Posted April 12, 2017 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
Recommended Posts
Archived
This topic is now archived and is closed to further replies.