Recent posts

#1
Bugs and Crashes / Re: vcmp client problem with r...
Last post by EazyVU - Today at 12:05 AM
yea i tried this before i had misunderstanding with you now its clear
here's a proof with administrative access


and this to remind you
Quoteinstall in another directory can help too.
na i did that with vcmp client it launches itself to singleplayer via social club
#2
Bugs and Crashes / Re: vcmp client problem with r...
Last post by vitovc - May 09, 2024, 01:57 PM
#3
Bugs and Crashes / Re: vcmp client problem with r...
Last post by EazyVU - May 09, 2024, 12:44 PM
you mean via command prompt?
#4
Bugs and Crashes / Re: vcmp client problem with r...
Last post by vitovc - May 09, 2024, 08:58 AM
I dont have windows to show an example but you can google/youtube 'msi run as administrator'
#5
Bugs and Crashes / Re: vcmp client problem with r...
Last post by EazyVU - May 09, 2024, 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
#6
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.
#7
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
#8
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
#9
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.
#10
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;
        }
    }
}