Recent posts

#1
Bugs and Crashes / Re: vcmp client problem with r...
Last post by vitovc - Today at 08:58 AM
I dont have windows to show an example but you can google/youtube 'msi run as administrator'
#2
Bugs and Crashes / Re: vcmp client problem with r...
Last post by EazyVU - Today at 07:00 AM
Quote from: vitovc on May 08, 2024, 08:24 AM
Quote from: EazyVU on Apr 30, 2024, 05:31 PMthere's no administartive on this file
did you unpacked archive (exe/install file) before run as admin? also you can create link of installer file and change its attributes to run as admin. Removing read-only protection from vice city directory or install in another directory can help too.
Quotedid you unpacked archive (exe/install file) before run as admin

QuoteRemoving read-only protection from vice city directory
i did tick off then automatiaclly ticks on
Quoteinstall in another directory can help too.
na i did that with vcmp client it launches itself to singleplayer via social club
Quotealso you can create link of installer file and change its attributes to run as admin
i dont know this sorry you can guide me if you want to
here's my discord account eazy1242
#3
Bugs and Crashes / Re: vcmp client problem with r...
Last post by vitovc - May 08, 2024, 08:24 AM
Quote from: EazyVU on Apr 30, 2024, 05:31 PMthere's no administartive on this file
did you unpacked archive (exe/install file) before run as admin? also you can create link of installer file and change its attributes to run as admin. Removing read-only protection from vice city directory or install in another directory can help too.
#4
Bugs and Crashes / Re: vcmp client problem with r...
Last post by Eva - May 07, 2024, 02:52 PM
Social club is not for Vice city! but for gta 4/5. So i cant understand why you get this msg
#5
Bugs and Crashes / Re: vcmp client problem with r...
Last post by EazyVU - May 07, 2024, 02:27 PM
its been a week habi if you reading this please guide me
im nervous and i dont like myself in situation that am
#6
Client Scripting / Re: RGB Color Gradient
Last post by PSL - May 05, 2024, 03:04 AM
The code has been tested by blank service and is accurate and can be used with confidence.
#7
Client Scripting / RGB Color Gradient
Last post by PSL - May 05, 2024, 03:01 AM
Do you want your text or images, or other gui components to have RGB gradients?
The following code can get you inspired, but you can also use it in between.
The gradient order is white red orange yellow green cyan blue purple.

local serverlogor=255,serverlogog=255,serverlogob=255;
local rgblabel=null;

function Script::ScriptLoad()
{
rgblabel=GUILabel();
rgblabel.Pos=VectorScreen(250,450);
rgblabel.FontSize=40;
rgblabel.Text="Very cool gradient text";
rgblabel.TextColour=GetGradientRGB();
}

function Script::ScriptProcess()
{
UpdateRGB();
rgblabel.TextColour=GetGradientRGB();
}

function GetGradientRGB(alpha=255)
{
    return Colour(serverlogor,serverlogog,serverlogob,alpha);
}

function UpdateRGB()
{
    /* red to purple
    if(serverlogor==255&&serverlogog<255&&serverlogob==0)
    {
        serverlogog+=1;
        if(serverlogog==255) serverlogor-=1;
    }
    else if(serverlogor<255&&serverlogog==255&&serverlogob==0)
    {
        serverlogor-=1;
        if(serverlogor==0) serverlogob+=1;
    }
    else if(serverlogor==0&&serverlogog==255&&serverlogob>0)
    {
        serverlogob+=1;
        if(serverlogob==255) serverlogog-=1;
    }
    else if(serverlogor==0&&serverlogog<255&&serverlogob==255)
    {
        serverlogog-=1;
        if(serverlogog==0) serverlogor+=1;
    }
    else if(serverlogor>0&&serverlogog==0&&serverlogob==255)
    {
        serverlogor+=1;
        if(serverlogor==255) serverlogob-=1;
    }
    else if(serverlogor==255&&serverlogog==0&&serverlogob<255)
    {
        serverlogob-=1;
    }
    */

    // white to purple
    if(serverlogor==255&&serverlogog==255&&serverlogob==255)
    {
        serverlogog-=1;
        serverlogob-=1;
    }
    else if(serverlogor==255&&serverlogog<255&&serverlogob<255&&serverlogob!=0)
    {
        serverlogog-=1;
        serverlogob-=1;
        if(serverlogog==0&&serverlogob==0) serverlogog+=1;
    }
    else if(serverlogor==255&&serverlogog<255&&serverlogob==0)
    {
        serverlogog+=1;
        if(serverlogog==255) serverlogor-=1;
    }
    else if(serverlogor<255&&serverlogog==255&&serverlogob==0)
    {
        serverlogor-=1;
        if(serverlogor==0) serverlogob+=1;
    }
    else if(serverlogor==0&&serverlogog==255&&serverlogob>0)
    {
        serverlogob+=1;
        if(serverlogob==255) serverlogog-=1;
    }
    else if(serverlogor==0&&serverlogog<255&&serverlogob==255)
    {
        serverlogog-=1;
        if(serverlogog==0) serverlogor+=1;
    }
    else if(serverlogor>0&&serverlogog==0&&serverlogob==255)
    {
        serverlogor+=1;
        if(serverlogor==255) serverlogog+=1;
    }
    else if(serverlogor==255&&serverlogog<255&&serverlogob==255)
    {
        serverlogog+=1;
        if(serverlogog==255)
        {
            serverlogog-=1;
            serverlogob-=1;
        }
    }
}
#8
Community Plugins / Re: Discord Plugin
Last post by gamingpro - May 04, 2024, 02:21 AM
Quote from: Samir_HG on Aug 04, 2022, 05:13 PMI'm having this problem when trying to connect:
[2022-08-04 21:56:45] [connect] Successful connection
[2022-08-04 21:56:45] [error] handle_transport_init received error: TLS handshake failed
[2022-08-04 21:56:45] [info] asio async_shutdown error: asio.ssl:336462231 (shutdown while in init)
disconnect
[2022-08-04 21:56:45] [connect] Successful connection
[2022-08-04 21:56:45] [error] handle_transport_init received error: TLS handshake failed
[2022-08-04 21:56:45] [info] asio async_shutdown error: asio.ssl:336462231 (shutdown while in init)
disconnect

Plugin versions used: x32 and x86
Systems used: Windows 10 Pro 21H2 and Ubuntu 20.04 (both updated)
OpenSSL downloaded from https://slproweb.com/products/Win32OpenSSL.html
Tried all versions available on the website.

On Linux, I downloaded libssl-dev as instructed in this tutorial.

I'm using the exact same script that worked months ago.
As a precaution, I decided to create a new one with only the most basic functions as suggested in more recent tutorials and also the examples on GitHub pages.

Two different ISPs were used in the connection attempt. In all the above scenarios returns the same error.
#9
Bugs and Crashes / Re: vcmp client problem with r...
Last post by EazyVU - Apr 30, 2024, 05:31 PM
there's no administartive on this file
#10
Bugs and Crashes / Re: vcmp client problem with r...
Last post by habi2 - Apr 29, 2024, 10:42 PM
Run as administrator.