She's waiting...ready to tease you live - Jerkmate is free! Join Now!
x

ocerlot01

Member
May 24, 2021
112
36
47
Did you put it in AddonsPackage folder? Also, you will will find it in 'scenes', in case you were looking for it in appearance presets or something...
i have it in the right folder thats whats confusing me. i have checked in scenes and everywere ells.
 

✵Delon✵

Newbie
Jul 7, 2017
79
776
264
Hello. please help with the problem. when creating a character. outerwear falls off. did the correction did not help.

Acer Nitro 5 -Intel i9-11900H, 32GB RAM, 1TB PCle SSD, GeForce RTX 3060
 

tix07

Newbie
Oct 1, 2017
39
2
18
Hi guys I have a few question, is this better than TK17 ? Is this have a sequencer mode like tk17 or you have to use different program to make stories ? Finally is there a limit of character you can have (in Tk you can have up to 4) ?
Thanks
 

theblackestguy

Active Member
Oct 29, 2020
770
700
258
does anyone here knows how to use a private morph? I have a custom look that uses a morph named X. But when I try to use the same morph on other character, the morph X doesnt appear as available.

I think its somehow private. But how can I use the morph in this case?
 

✵Delon✵

Newbie
Jul 7, 2017
79
776
264
Good morning. please share this plugin. VAM Translations 1.1
Currently the following languages are provided:
German, French, Spanish, Italian, Portugese, Polish, Czech.
 

mixmox82

Engaged Member
Jan 19, 2022
3,028
3,083
387
Good morning. please share this plugin. VAM Translations 1.1
Currently the following languages are provided:
German, French, Spanish, Italian, Portugese, Polish, Czech.
Unless you have not read this answer a multiple times in this thread already, and seen the Mods clear warning, not to request assets in this thread, I suggest you read the forum rules, and post assets requests in the Asset Request section of the forum...

Here: https://f95zone.to/forums/asset-requests.96/
Rules for posting requests here: https://f95zone.to/threads/asset-requesting-rules-instructions-2021-08-18.22924/

Warning from Mod here: https://f95zone.to/threads/virt-a-mate-v1-21-0-4-meshed-vr.6881/post-10161016
 
Last edited:

✵Delon✵

Newbie
Jul 7, 2017
79
776
264
Unless you have not read this answer a multiple times in this thread already, and seen the Mods clear warning, not to request assets in this thread, I suggest you read the forum rules, and post assets requests in the Asset Request section of the forum
Excuse me, please! I'll be more careful next time
 

mixmox82

Engaged Member
Jan 19, 2022
3,028
3,083
387
We just don't want them to lock down this thread, as it is a helpful resource by both season and new users.
 

faleluhi97

Newbie
May 26, 2021
23
4
93
Is there any plugin to make vam faster and lighter 200 gb it has and most of them copy like tittymagic 61 tittymagic 71 any copy deleter plugin or like that ?
 

mixmox82

Engaged Member
Jan 19, 2022
3,028
3,083
387
there are some tools that does this, but they are a risky affair... they prune duplicate resources from packages, but well, it can go bad...

There are simpler tools that just delete old packages, but considering some creators misunderstanding of a revision system, that might mean it can delete packages you need.
 
  • Like
Reactions: faleluhi97

fectah12

Member
Dec 20, 2022
252
1,436
235
If anyone else is annoyed by Kemono's .var downloads, I asked chatGPT to whip this basic python zip renamer up. It can fix badly named .var/.zip files by looking for the intended name inside the meta.json. I did not find a way to extract the correct file version so all renamed files will end in ".1.var" so be careful in case that's important.


Python:
import os
import json
import zipfile

# Look for .zip and .var files in the current directory
zip_files = [f for f in os.listdir('.') if f.endswith('.zip') or f.endswith('.var')]

# Store the old and new filenames in a list
renamed_files = []

# Iterate over the .zip and .var files
for file_name in zip_files:
    # Open the file
    with zipfile.ZipFile(file_name) as zf:
        # Check if the file contains a "meta.json" file
        if 'meta.json' in zf.namelist():
            # Read the "meta.json" file
            with zf.open('meta.json') as f:
                meta = json.load(f)
                # Extract the "packageName" and "creatorName" values
                package_name = meta['packageName']
                creator_name = meta['creatorName']
                # Construct the new filename
                new_filename = f"{creator_name}.{package_name}.1.var"
                # Check if the new filename is already in the list of zip files
                if new_filename in zip_files:
                    print(f"Skipping {new_filename}, it already exists in the list of zip files.")
                else:
                    # Add the old and new filenames to the list
                    renamed_files.append((file_name, new_filename))

# Show the old and new filenames together
for old_filename, new_filename in renamed_files:
    print(f"{old_filename} >> {new_filename}")

# Prompt the user before renaming the files
confirm = input("Rename all files? (y/n): ")
if confirm.lower() == 'y':
    for old_filename, new_filename in renamed_files:
        os.rename(old_filename, new_filename)
 

theblackestguy

Active Member
Oct 29, 2020
770
700
258
If you don't mind -- what custom look are you talking about, and what specific morph? I then might be able to test it any maybe find a solution.
faye.png
ellie.png

the second picture has the presets that I want, and in the first they don't appear.

Do you have any idea how to use them? I want the genital morph
 

banananos

New Member
Apr 30, 2017
3
1
47
If anyone else is annoyed by Kemono's .var downloads, I asked chatGPT to whip this basic python zip renamer up. It can fix badly named .var/.zip files by looking for the intended name inside the meta.json. I did not find a way to extract the correct file version so all renamed files will end in ".1.var" so be careful in case that's important.


Python:
import os
import json
import zipfile

# Look for .zip and .var files in the current directory
zip_files = [f for f in os.listdir('.') if f.endswith('.zip') or f.endswith('.var')]

# Store the old and new filenames in a list
renamed_files = []

# Iterate over the .zip and .var files
for file_name in zip_files:
    # Open the file
    with zipfile.ZipFile(file_name) as zf:
        # Check if the file contains a "meta.json" file
        if 'meta.json' in zf.namelist():
            # Read the "meta.json" file
            with zf.open('meta.json') as f:
                meta = json.load(f)
                # Extract the "packageName" and "creatorName" values
                package_name = meta['packageName']
                creator_name = meta['creatorName']
                # Construct the new filename
                new_filename = f"{creator_name}.{package_name}.1.var"
                # Check if the new filename is already in the list of zip files
                if new_filename in zip_files:
                    print(f"Skipping {new_filename}, it already exists in the list of zip files.")
                else:
                    # Add the old and new filenames to the list
                    renamed_files.append((file_name, new_filename))

# Show the old and new filenames together
for old_filename, new_filename in renamed_files:
    print(f"{old_filename} >> {new_filename}")

# Prompt the user before renaming the files
confirm = input("Rename all files? (y/n): ")
if confirm.lower() == 'y':
    for old_filename, new_filename in renamed_files:
        os.rename(old_filename, new_filename)

I'm not too familiar with python, so i can't confirm/test it myself, but i suspect there should be a way to use the old filename ending in {version#}.var to append the existing version name.
 
4.50 star(s) 24 Votes