Recent Posts

Pages: 1 ... 5 6 [7] 8 9 10
61
Issues / Re: Unable to determine training status
« Last post by Dsotm44 on March 22, 2025, 05:28:25 AM »
I can confirm seeing the same issue - went through voice training 3 times  ;D
62
Issues / Re: Can't Install .Net 8 not detected?
« Last post by patpatpowercat on March 21, 2025, 03:35:05 PM »
Doh yes I had x86 version installed. Now working, thanks!
63
Issues / Re: Can't Install .Net 8 not detected?
« Last post by Pfeil on March 21, 2025, 08:42:09 AM »
Do you have the x64 version of the runtime installed?

If so, do you also have the x86 version installed? In that case, there could be a conflict as described here.
64
Issues / Can't Install .Net 8 not detected?
« Last post by patpatpowercat on March 21, 2025, 08:35:32 AM »
I cannot install Voice Attack. I am using Windows 10. The installer keeps saying .NET 8 is required, to run windows update to install and try again.

I have .NET 8 runtimes all installed, however VA will still not install, with the same error. Any ideas?
65
General Discussion / Re: Event Horizon Beta 255 please reinstall this pack
« Last post by SheppardSG1 on March 20, 2025, 03:26:22 PM »
figure out thing was i was using profile for SC :) silly me false alarm. Thanks!
66
Feature Suggestions / Re: Variables update
« Last post by fireytoad on March 20, 2025, 11:25:19 AM »
Thanks Gary  :)
67
Feature Suggestions / Re: Dark Mode, but for the exported Profile Command Sheets
« Last post by Gary on March 20, 2025, 11:20:43 AM »
Thanks for that - I'll see what I can do ;)
68
Feature Suggestions / Re: Variables update
« Last post by Gary on March 20, 2025, 11:18:13 AM »
Due to the way the integer features are used within VA, Int64 would require yet another data type.   That would need to be put on the backburner for another time.

In the meantime, I have added {DECFORMATUSER}, {DECINVFORMATUSER} {INTFORMATUSER} (and their default value counterparts) to the token parsing process.  They will allow you to pass in C# format strings for each type.  For instance, to have a decimal formatted without decimal places and with commas, you would use N0:  {DECFORMATUSER:myDecimal:N0}.

This will be in the next beta.


On a side note, {INTFORMAT:} is old and rigid - needs to be deprecated :P
69
Feature Suggestions / Dark Mode, but for the exported Profile Command Sheets
« Last post by Clonephaze on March 20, 2025, 11:12:22 AM »
The default HTML export currently only includes colors for light mode users. However, light-dark color support is baseline in modern browsers, and we can enhance the styling to properly support both light and dark themes while ensuring older browsers still display a functional light mode. I personally think the below approach keeps a nice clean look in both light and dark modes, and it makes sure to provide a light mode fallback.

Code: [Select]
<style type='text/css'>
    :root {
        color-scheme: light dark;
    }

    body {
        color: #1d1d1d;
        background-color: #efedea;
    }

    @supports (color: light-dark(black, white)) {
        body {
            color: light-dark(#1d1d1d, #efefec);
            background-color: light-dark(#efedea, #202020);
        }
    }

    TH {
        text-align: left;
        padding-left: 10px;
        padding-top: 3px;
        padding-bottom: 3px;
        background-color: #e0e0e0;
        color: #000;
        white-space: nowrap;
    }

    TD {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 2px;
        padding-bottom: 2px;
    }

    TR.r0 {
        background-color: #ffffff;
    }

    TR.r1 {
        background-color: #f2f5ff;
    }

    TABLE {
        width: 100%;
        font-family: Calibri, Tahoma, Arial;
    }

    .tbl {
        font-size: 14px;
        border-style: solid;
        border-width: 1px;
        border-color: #d0d0d0;
    }

    .tbl tr:nth-child(2n) {
        background-color: #f2f5ff;
    }

    .tbl tr:nth-child(2n+1) {
        background-color: #ffffff;
    }

    .tblHeader {
        font-size: 18px;
        color: #ffffff;
        background-color: #000000;
        font-weight: bold;
        font-family: Calibri, Tahoma, Arial;
        border-style: inset;
        border-width: 2px;
    }

    @supports (color: light-dark(black, white)) {
        TH {
            background-color: light-dark(#e0e0e0, #333);
            color: light-dark(#000, #fff);
        }

        TR.r0 {
            background-color: light-dark(#ffffff, #2a2a2a);
        }

        TR.r1 {
            background-color: light-dark(#f2f5ff, #3a3a3a);
        }

        .tbl {
            border-color: light-dark(#d0d0d0, #444);
        }

        .tbl tr:nth-child(2n) {
            background-color: light-dark(#f2f5ff, #3a3a3a);
        }

        .tbl tr:nth-child(2n+1) {
            background-color: light-dark(#ffffff, #2a2a2a);
        }

        .tblHeader {
            color: light-dark(#ffffff, #dddddd);
            background-color: light-dark(#000000, #555);
        }
    }

    thead {
        cursor: pointer;
    }
</style>
70
General Discussion / Re: Event Horizon Beta 255 please reinstall this pack
« Last post by Gary on March 19, 2025, 04:35:24 PM »
Hi, SheppardSG1

This is an issue that will need to be resolved by HCS - the author of your packs.  Although HCS personnel cruise through here from time to time to answer questions, you might find it faster to contact them through their Discord server:  https://discord.gg/W6srxpA

Hope that helps!
Pages: 1 ... 5 6 [7] 8 9 10