- Nov 17, 2023
- 24
- 1
It didn't but now it does, Idk it just didn't let me at first.what did you do wrong? seem it wasn working before?
It didn't but now it does, Idk it just didn't let me at first.what did you do wrong? seem it wasn working before?
i will not fix any cloud issue as hosting cloud cost money and yeah i'm cracking the game bu i want to be fair so if the dev disable cloud on cracked version i will not be the one fixing this !I got Windows 11 Pro to work. The issue I have now is that I can create and save characters to the default folder. Even download them. However, when trying to add characters to create interactions nothing appears. Also the download option for interaction from the cloud menu is not clickable.
oh I thought that being a crack, I could not use cloud functions or something like that, thanks for the clarificationin the character editor you can go to the cloud menu to access tons of characters
no uploading or commenting or voting but you dont seem to need an account to just download characters
Something I've realized in regards to orifices "breaking" is that the shaft has to have all its curve and angle customizations set to 0, and vagina options also have to be set to defaults (anuses are less affected by this, but it helps). Changing the angles and offsets in the interaction itself can also cause similar problems. I loaded up some of my characters that had curved shafts and the results were unwatchableMaking functional scenes is harder than i expected,models are way too shaky and i cant seem to find wherever is the option to not make them do that aside from using Ctrl+click the limbs but it still shakes hard,they are literally jello
Also vag and anus stretch so much it breaks model,gotta keep looking at all these buttons
Is it possible to share this interaction so I could see if its possible to edit in other characters.
i think you want these jiggliness sliders?Making functional scenes is harder than i expected,models are way too shaky and i cant seem to find wherever is the option to not make them do that aside from using Ctrl+click the limbs but it still shakes hard,they are literally jello
Also vag and anus stretch so much it breaks model,gotta keep looking at all these buttons
in the end it wasn't because of that, but because I hadn't loaded the character properly XDhere there a trick to make old character compatible
You must be registered to see the links
you can also create some inside the CC
With the help of crutches and invisible characters.how can i make a fellatio? is it possible to use coupling?
Why solid works will be messed by that?npomme looking for a way to spoof %COMPUTERNAME% for a single application to make your crack a self-contained measure, simply because i'm mildly worried it might interfere with my SOLIDWORKS crack.
View attachment 3463062
Sometimes the dumbest shit sparks innovation.
EDIT: Yeah it's got an allergic reaction to changing %COMPUTERNAME%, but still works, just thinks it's a fresh install. Still going to look for a solution just for everyone's sake.
The general way you crack SW for personal use is by making it treat your own localhost as the license server. Changing the computer name has a funny side effect of your fake zombie server thinking "oh, must be a new worker machine, here, have a fresh setup and initialization... some settings left from previous user? Sure go on use those". It's a non-issue but a great puzzle for me to solve.Why solid works will be messed by that?
the only way this append is AV blocking my programI am still having the patreon login page even though my PC name has been changed to the correct name and everything has been succesful.
You can't change the hostname for a specific process without hooking system calls, which frankly is overkill for a crack. You can, however, change the name temporarily, and without needing a reboot, so I'm not sure why Powershell's Rename-Computer cmdlet was chosennpomme looking for a way to spoof %COMPUTERNAME% for a single application to make your crack a self-contained measure, simply because i'm mildly worried it might interfere with my SOLIDWORKS crack.
because im Lazy but mainly from Time constrain the first code i used wasnt Working as intended and was having really weird issue so to make the thing go faster as i need to sleep sometimes i just opted for the easy shitty cmdletYou can't change the hostname for a specific process without hooking system calls, which frankly is overkill for a crack. You can, however, change the name temporarily, and without needing a reboot, so I'm not sure why Powershell's Rename-Computer cmdlet was chosen
There's a bunch of registry values you'll have to set. Off the top of my head (probably will be errors in the key names) some arebecause im Lazy but mainly from Time constrain the first code i used wasnt Working as intended and was having really weird issue so to make the thing go faster as i need to sleep sometimes i just opted for the easy shitty cmdlet
Im Curious how you Will change the name and make the system apply it without reboot? As Said all my try were solded by weird bugs and i dont have the time to fix this
But its un dev im making a better patcher version just this one was a fast Working way to deliver the crack and take time to make a better patcher
Key Value
SYSTEM\CurrentControlSet\Control\Computername\Computername Computername
..SameThing.. \ActiveComputername Computername
SYSTEM\CurrentControlSet\SomethingIForget\Tcpip\Parameters Hostname, some other one
Etc.
// C++
HKEY hKey;
LPCTSTR newName = "NewName\0"; // Rename to whatever you want it to be called. Keep the null terminator though
RegOpenKeyEx(HKEY_LOCAL_MACHINE, TEXT("SYSTEM\\CurrentControlSet\\Control\\Computername\\Computername"), 0, 0, &hKey);
RegSetValueEx(hKey, TEXT("Computername"), 0, REG_SZ, (LPBYTE)newName, sizeof(newName));
RegCloseKey(hKey);