kivaba2844

Newbie
Nov 9, 2020
15
71
Asking some help with the Sandbox:

- So I've issue where I try create camera system that reacts to sex scene change/index change (idk what's the right word).
- Currently I try to trigger camera changes using ''on switched to index'' -event dispatcher to change cameras (angles) when sex scene changes from the list as scene goes on. However I'm not sure if this event dispatcher works or if I'm fault in here, most likely me but I wonder how other people would do this.

So my set up is:
-Sex animation
-- On switched to index -> set option value (value field: onSwitchedToIndex;2) ->

-Camera
--possess: on switched to index -field command

However if I set 2 cameras in an example (I post bellow) it just triggers one camera and keeps triggering it. Any idea how I can trigger possess when sex scene changes from anim queue like 3 and 5 for example and so forth (numbers don't really matter I guess). And only triggering when index changes to that certain list index.
The animation index event dispatcher sends out a value corresponding to the index of the animation. For example, when you switch to the first animation of the list, the dispatcher sends out a value of "0" and no other text. You can use a condition to match a camera to each value, it's a crude and easy method but it works:

Camera.png

The value A of the condition is set automatically each time the animation index changes, the value B is set beforehand, if the values match the condition will dispatch a signal, in this case to possess a camera.

Unrelated elves.

SkyroomElves_A.jpg
 

GerP1

Newbie
Nov 4, 2022
61
63
The animation index event dispatcher sends out a value corresponding to the index of the animation. For example, when you switch to the first animation of the list, the dispatcher sends out a value of "0" and no other text. You can use a condition to match a camera to each value, it's a crude and easy method but it works:

Camera.png

The value A of the condition is set automatically each time the animation index changes, the value B is set beforehand, if the values match the condition will dispatch a signal, in this case to possess a camera.
Thank you! Works like a charm. Gotta wonder how's the impact on the performance after 100 cameras and almost same amount of condition blocks lol..
 

kivaba2844

Newbie
Nov 9, 2020
15
71
Thank you! Works like a charm. Gotta wonder how's the impact on the performance after 100 cameras and almost same amount of condition blocks lol..
That crossed my mind and I figured that a more efficient process would require something unnecessarily complex involving operations but turns out it doesn't. The "Event Executer" block solves this problem very effortlessly. I'm not sure how long it has been in the game since this is the first time I've used it.

Camera2.png

Quite simple, the animation dispatcher sends the index of the animation as a value to the event executer, which then executes an event using the given value as the name of the event. So all you need to do is name the receiver on the camera the same number as the index of the animation its intended for. Have to use separate events for setting the name of the event and executing it even though they're the same event.
 

limesseur

Member
Oct 7, 2019
244
246
Does anyone know if it's posible to mix Skeleton+Skin of different characters ? I mean "Max skeleton using Bol skin" since Max is the one with the most poses (and Maya ofc) i'm not a pro with custom stuff tbh but i want to know if it's posible so then i can make it happen.
You would need to, as far as I know, somehow get the skeletons and models from the game, which would probably require decompiling the game. Then you would need to import the skeleton and model into a 3D modeling program like Blender, and rig the skeleton to the model you want to use. I'm only speculating about this, so I might be way off.
 
  • Like
Reactions: Suiguihara

falamy

New Member
Aug 18, 2017
10
4
how to unlock all character on sandbox mode when i press T for summon character if only some can summon but not at all
 

SortaLewd

Member
Feb 26, 2019
351
491
Congratulations, you've described every single developer ever.


Literally nobody asked or paid for and patreon page still says this is an rpg.


Nobody told them to "rework" the world and non-existent story for the millionth time. Seems to me it was all intentional just to milk more patreon cows.


Monthly report: We made it possible to play pong in our sandbox mode!


Yeah, it has been slowly being worked on for years. "Slowly" is an understatement by the way.


I am so happy this is yet another patreon cash grab that is intentionally stuck in a development hell just to milk horny people. I am especially happy with knowing that there are people who actually shamelessly defend this.
About Sandbox, I don't know if you were in the old Wild Life Discord server, but there were a bunch of people happy with focus on Sandbox and there were many people frequently asking for new features to be included. I don't know if you're referring to the Patreon comment section when you say, "Literally nobody asked or paid for-" in reply to the other person mentioning sandbox, but if you were active in the Discord you would have seen the opposite of what you're saying, and as a matter of fact, there are still many people giving feedback and suggesting features for Sandbox in the new Discord server aswell. I can understand wanting the game to speed up with development, I myself was hoping for release this year but that seems unlikely, but you're wrong in saying there wasn't any demand for the sandbox features. There were and still are plenty of people actively engaging and requesting stuff for it, and if I'm being completely honest, I myself just want the campaign stuff to be done so all the assets are updated and all the lower quality model stuff is swapped out. For me, I'm more interested in seeing what people do with Sandbox once the game is complete and hopefully mod tools/mod support is implemented(if that's still being considered). I know there are people interested in the campaign, but in my time spent in the Wild Life Discord servers, a good amount of the active people there were engaged in the sandbox channels.

If not by the end of this year, I do hope the WL devs manage to wrap things up in 2025 at the latest though. After 2025 I don't think we'll be too far off from Elder Scrolls 6, and at that point the horny modders in Bethesda community will have made their own porn game in ES6 like they have in Skyrim, and Skyrim is already unironically one of the best games with porn content available and good visuals + a shit ton of other non pornographic content. I genuinely don't think most porn devs can compete with a Bethesda game modded into a porn game, especially considering by now after so many years modding, most of the horny modders are seasoned in modeling/rigging/animating so they're damn near on a professional level if they aren't already.

Kinda went on a tangent there, but yeah, sandbox did/does have demand and hopefully this game will be complete within these next couple of years.
 
Last edited:

hypermodule

Newbie
Jan 28, 2023
22
27
Is anyone experiencing freezing or crashing when trying to open the animation menu through sandbox?
It seems to be an issue affecting some players with AMD cards. As a possible fix, try running the game with DirectX11 like so:
  1. Create a separate shortcut of the .exe
  2. Right click the shortcut and select "properties"
  3. Type -dx11 at the end of the target field (with a space to separate it from the rest of the text in that field)
  4. Play the game through the shortcut
 
  • Like
Reactions: SortaLewd

Fuchsschweif

Well-Known Member
Sep 24, 2019
1,041
1,695
However if I set 2 cameras in an example (I post bellow) it just triggers one camera and keeps triggering it. Any idea how I can trigger possess when sex scene changes from anim queue like 3 and 5 for example and so forth (numbers don't really matter I guess). And only triggering when index changes to that certain list index.
I think you're overcomplicating things, you can simply change the index value together with a cam change. No need for complicated operators/values.

So you have sex scene A with 3 cams. As soon as all cams are run through, after finishing, cam 3 triggers sex scene B, and then proceeds with cam 4, 5, 6 and so on.
 

SortaLewd

Member
Feb 26, 2019
351
491
It seems to be an issue affecting some players with AMD cards. As a possible fix, try running the game with DirectX11 like so:
  1. Create a separate shortcut of the .exe
  2. Right click the shortcut and select "properties"
  3. Type -dx11 at the end of the target field (with a space to separate it from the rest of the text in that field)
  4. Play the game through the shortcut
Yep, I'm on AMD GPU and that fixed it.
 

darkender

New Member
Sep 24, 2018
3
0
I don't know why I can't start this game now. After double clicking on the program, there are no pop ups or any reactions, not even error messages. Has anyone encountered this situation before? I am using the Windows 10 system
 

Paarl

Member
Dec 25, 2019
454
481
The game is too buggy, both visually and playable, I'm supposed to follow the girl but she doesn't move and nothing happens, with the first girl who flies you can't see her wings or anything
and when you get to the top of the mountain with her and you say jump, I jumped and died because there was no collision with the water.
I haven't even been playing for 10 minutes and I've seen more bugs per minute

1706103304852.png
 

FappyJake

Member
Jan 23, 2022
237
269
The game is too buggy, both visually and playable, I'm supposed to follow the girl but she doesn't move and nothing happens, with the first girl who flies you can't see her wings or anything
and when you get to the top of the mountain with her and you say jump, I jumped and died because there was no collision with the water.
I haven't even been playing for 10 minutes and I've seen more bugs per minute

View attachment 3291387
FYI you don't even have to jump in the water.
Just jump on the spot
 

GerP1

Newbie
Nov 4, 2022
61
63
So I've been working on and off for months on modern world party type of map that would have in the end proper UI dialogue with branching paths and custom art. Map itself is like 90-95% of done and characters have mostly been placed (need to see if I need to cull dozen or few dozens to maintain performance while making remaining of experience more interactive, aiming to around 40 fps performance with lumen on 3000 serie cards lol). I've now started doing curated camera angles and systems for all the sex scenes (would be 15-25 individual scenes depending on the scope, 7 done already but these are very quick to adjust), and after that doing the quest logic, which I've already raw layout done with art 70-80% done, so would be mostly about copy pasting a lot of work and writing reasonable dialogue. I've also 2 collectible systems in works to unlock extra scenes/rewards.

I'm now wondering what's the ideal sex scene length people would assume from such a map (which we can't save or load currently)? As of now I've 2.5-4 minute sex scenes. Is that ideal length or should they be longer? Just from game design standpoint I wouldn't want to force into 10 min cutscene you can't interrupt for example (but playing end state and exiting scene might be something I could do).

Currently there's no way to cancel/skip/return/pause animation stages (if it would be easy to implement I might look into it) since I want mostly hands free experience... Few examples attached.
 
Last edited:

Samshit

Newbie
Jul 28, 2017
22
82
The animation index event dispatcher sends out a value corresponding to the index of the animation. For example, when you switch to the first animation of the list, the dispatcher sends out a value of "0" and no other text. You can use a condition to match a camera to each value, it's a crude and easy method but it works:

Camera.png

The value A of the condition is set automatically each time the animation index changes, the value B is set beforehand, if the values match the condition will dispatch a signal, in this case to possess a camera.

Unrelated elves.

View attachment 3286934
Can you share the preset for this two character ? many thanks !
 

Purple_Heart

Well-Known Member
Oct 15, 2021
1,950
3,326
Can I play this in laptop? Or should it be Pc?
Laptop is a pc(personal computer). You probably meant desktop. Under normal circumstances as long as you meet minimum system requirements games work fine but since this is a patreon porn game who knows? You should try it and see if it works.
 
  • Like
Reactions: fajiker145
3.80 star(s) 177 Votes