PowerVu Chat [only chat, don‘t post keys here]

TheHighLander

Super VIP
Messages
4,144
Thanks..But don't know where to put the ini file in ALTDVB!!!!!!
Please,details.....

ps: DCW OK only when I put the former powervu.mdl not the mdl you put today.
 

Anubis_Ir

Senior Member
Messages
370
- The .ini file should be copied beside the .exe file of the main application. (it can be eliminated by the original author, because modules are able to RequestKeys from the main app...)

Code:
int8_t cPowerVu::GetPowervuKey(uint8_t *buf, uint32_t ident, char keyName, uint32_t keyIndex, uint32_t keyLength, uint8_t isCriticalKey)
{
    char keyStr[EMU_MAX_CHAR_KEYNAME];
    snprintf(keyStr, EMU_MAX_CHAR_KEYNAME, "%c%X", keyName, keyIndex);

    RequestKey("P",ident,keyStr,buf);
    if (IsKeyNull(buf,keyLength))
    {
        if (ShowLog) SendMSG(1,"P %X Key%s is missing...",ident,keyStr);
        return 0;
    }
    return 1;
}

- Also its(.ini file) keys should be updated.
 

kral2008

Member
Messages
60
Only dcw 1 ok 1 second open channel but Continuation dcw down


Change CSA.dll path in ini file and repalace your own path to it. the default is D:\alt.... you have to change it like this example:
DLL_DIR=C:\AltDvb\Devices\CSA.dll
 
Last edited:

rama11

Feed Hunter
Messages
16,424
Change CSA.dll path in ini file and repalace your own path to it. the default is D:\alt.... you have to change it like this example:
DLL_DIR=C:\AltDvb\Devices\CSA.dll

Thank you my brother

I've done this before
 
Top