Create and Fuck your AI Cum Slut –70% OFF
x

Unity True Facials [v0.58b Pro] [HenryTaiwan]

3.90 star(s) 68 Votes

TFfan1

Member
Jul 8, 2024
342
425
149
Hi folk, I wonder if anyone like me has tried to run this game on Winlator for Android?
I tried using Frost ver and playing around with the settings but it didn't seem to work. Looking forward to hearing advice from someone who has had success with this.
like posted previously, TF is a *heavy* game, it is not optimised for phones. Someone tried and "succesfully" launched it, the information we got was that it ran at very low FPS, the phone heated A LOT!, and in general it was not worth the effort. What programs and what phone did that person used? no idea, we didnt get enough info besides what i shared

TLDR: feel free to try but most likely, it wont run well
 

TFfan1

Member
Jul 8, 2024
342
425
149
Good day to all, tell me, are there any mods for this game? I want to at least somehow diversify it! Thanks!
besides characters and some mods people have made and shared here and discord? no, there are not any mods for this game
 

gghhoosstt123

Member
Oct 9, 2022
358
438
177
like posted previously, TF is a *heavy* game, it is not optimised for phones. Someone tried and "succesfully" launched it, the information we got was that it ran at very low FPS, the phone heated A LOT!, and in general it was not worth the effort. What programs and what phone did that person used? no idea, we didnt get enough info besides what i shared

TLDR: feel free to try but most likely, it wont run well
Lets look at the bright side, the phone did not exploded on him and he lived to tell the tale, now thats inspiring!
 

TFfan1

Member
Jul 8, 2024
342
425
149
Lets look at the bright side, the phone did not exploded on him and he lived to tell the tale, now thats inspiring!
the person did metion that his phone was hot and it was not worth the effort. We didnt get neither the model nor what software was used to run it. i kind of wish we had got the steps he took, so we could try and compare results
 
  • Like
Reactions: gghhoosstt123

Vrchamp

New Member
Aug 14, 2023
10
11
104
Does anyone know how to make scripts in this game?
Here is an basic example script of a triple bj


you can add that unzipped folder in
Mods -> Scripts

and test it out to see the functionality

Getting Started

You are gonna need something like VSCode to edit the lua files which you can download for free


Folder Structure

When you open the zip the important ones to note are
triple.lua (your script/voice line/character set up happens in here) [every script needs a lua file that initializes everything]
Voice -> Main (your saved voice lines are stored here)
Poses (your scenes/captures are stored here) [Drag and drop from your captures into the poses folder]

Voice Lines

I use this fakeyou text to speech to add voicelines for characters I want
but not always going to be accurate



You can download and use an mp3 converter and add these to the Main folder in Voice
you'll see that the mp3 files are named the way they are used in the triple.lua

For example
I saved the voice file in my example as
ahri I did a good job, right.mp3

which you use in the triple.lua through adding quotations to the text
ahri "I did a good job, right"

LUA setup

You'll need to initialize each script with what map and characters will be used which is

label Start()
game.CreateMap("Map_Bedroom")
game.m_controlsUI.Show()
ahri = game.CreateHuman("ahri kda")
actorB = game.CreateHuman("Generic Male")
actorC = game.CreateHuman("Generic Male")
actorD = game.CreateHuman("Generic Male")
Jump("Main")
stop

You can add the scenes by copy and pasting the pose name into the triple.lua in the order that you want
and add the character variables + time
triplehandjob(ahri, actorB, actorC, actorD, 0.3)

If a scene has just two characters you would need to set it up appropriately, etc.
triplehandjob(ahri, actorB, 0.3)

The number value at the end (ex. 0.3) is the delay to get into position
If 0 the character will instantly snap into position, at a higher number the slower the character will get into position

I know its not super detailed regarding other features but hope this helps!
I referenced the tutorial_main.lua from the tutorial to learn more about the different features you can use
you can copy things from other scripts to try out
 

VanillaLover

Well-Known Member
Jun 15, 2021
1,046
1,656
286
Still totally waiting for a way to mod characters in. There's no way Shani will ever win any poll because Triss used sorcery to force every redhead discussion in her favor.
 
  • Like
Reactions: jdaniels

Purple_Heart

Engaged Member
Oct 15, 2021
3,002
5,349
637
"I fucking knew there was something strange going on here! ò_ó"

(I don't know if Yen or Triss can transform into other people, buuuut...)

View attachment 4799415 View attachment 4799414
Lmao Geralt's overreaction looks funny as fuck. I don't think I've ever seen him like that in his game(s).
But seriously though, they are characters from a fictional fantasy world with magic and stuff. I don't know if they can actually transform into other people in canon but it is highly likely they know how to disguise themselves as others using magic or some other method.
 

TFfan1

Member
Jul 8, 2024
342
425
149
Still totally waiting for a way to mod characters in. There's no way Shani will ever win any poll because Triss used sorcery to force every redhead discussion in her favor.
is not going to happen in a LONG time. The devs have stated that custom modding is something desired but will not be implemented until the game´s base features are added adn even then they´d first need to make sure that the modding doesnt break anything and that´ll, most likely, wont have troubleshooting (if you were to break something, you´d be on your own)
 

aliennaire

Newbie
Aug 8, 2017
44
6
128
Is it possible to get a 3d model of a custom character and include it in the game by converting it to game file?
 

Withy91

Newbie
Mar 2, 2020
67
102
145
Dragging the camera with mouse wheel sometimes causes camera to zoom in as if I'm scrolling the wheel eventhough I'm not. Is this a bug?
I think it's a feature. If the camera is too far away from any characters - it resets to a position a certain distance away from them, so you don't have to fly around through walls to look for them if you accidentally move them out of bounds or something of that nature.
 

aliennaire

Newbie
Aug 8, 2017
44
6
128
Here is an basic example script of a triple bj


you can add that unzipped folder in
Mods -> Scripts

and test it out to see the functionality

Getting Started

You are gonna need something like VSCode to edit the lua files which you can download for free


Folder Structure

When you open the zip the important ones to note are
triple.lua (your script/voice line/character set up happens in here) [every script needs a lua file that initializes everything]
Voice -> Main (your saved voice lines are stored here)
Poses (your scenes/captures are stored here) [Drag and drop from your captures into the poses folder]

Voice Lines

I use this fakeyou text to speech to add voicelines for characters I want
but not always going to be accurate



You can download and use an mp3 converter and add these to the Main folder in Voice
you'll see that the mp3 files are named the way they are used in the triple.lua

For example
I saved the voice file in my example as
ahri I did a good job, right.mp3

which you use in the triple.lua through adding quotations to the text
ahri "I did a good job, right"

LUA setup

You'll need to initialize each script with what map and characters will be used which is

label Start()
game.CreateMap("Map_Bedroom")
game.m_controlsUI.Show()
ahri = game.CreateHuman("ahri kda")
actorB = game.CreateHuman("Generic Male")
actorC = game.CreateHuman("Generic Male")
actorD = game.CreateHuman("Generic Male")
Jump("Main")
stop

You can add the scenes by copy and pasting the pose name into the triple.lua in the order that you want
and add the character variables + time
triplehandjob(ahri, actorB, actorC, actorD, 0.3)

If a scene has just two characters you would need to set it up appropriately, etc.
triplehandjob(ahri, actorB, 0.3)

The number value at the end (ex. 0.3) is the delay to get into position
If 0 the character will instantly snap into position, at a higher number the slower the character will get into position

I know its not super detailed regarding other features but hope this helps!
I referenced the tutorial_main.lua from the tutorial to learn more about the different features you can use
you can copy things from other scripts to try out
Can you explain about the custom animation? For example, how do I attach custom animation from faunaLABS to specific actor in a scene, so the animation play when the scene start?
 
3.90 star(s) 68 Votes