Nothing Working
I think the reinstallation of OS is the last solution to this problem.
I think the reinstallation of OS is the last solution to this problem.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: habi on Feb 25, 2022, 01:34 PMhttps://www.moddb.com/downloads/mirror/75598/123/eb5ef55c5353617fa565041b77f0cf80/?referer=https%3A%2F%2Fvc-mp.org%2F
Quote from: habi on Feb 21, 2022, 10:56 PMHello Omnicient,
Go to the website vc-mp.org
Click on Download (alternate)
VCMP04_Installer.zip will be downloaded.
Then extract the file and then install it. You will be able to install it smoothly.
If the installation is successful, do not forget to change the updater url to http://u04.vc-mp.org
Quote from: Sebastian on Dec 25, 2020, 11:40 AMCan you tell us what Windows version do you have, and if it is 32bit or 64bit?
Also, check this:Quote from: AdTec_224 on Dec 25, 2020, 12:17 AMlibpng16.dll is included with the client update (as seen here) so either something/someone deleted it or it may require the Visual Studio redistributable to be installed, located here.
else if ( cmd == "setwep" )
{
if( !status[player.ID].LoggedIn ) MessagePlayer(" "+red+"You need to login first.", player);
else if ( status[player.ID].Level < 2 ) MessagePlayer(" "+dark+"You can not use this command.", player );
else if ( !text ) MessagePlayer(""+red+" [ERROR] "+yellow+" /" + cmd + " <player> <wep>", player );
else{
local params = split(text, " " );
local plr = FindPlayer(params[0]);
local wep = GetWeaponID( params[1] );
local ammo = params[2];
plr.SetWeapon( wep, ammo );
Message(""+acmd+"Administrator "+player.Name+" has given "+plr.Name+" wep "+wep+" ammo: "+ammo+" ");
}
}
else if ( cmd == "buywep" )
{
if ( !text ) MessagePlayer(""+red+"Error: "+white+"Please use /buywep <wepname / id > <ammo>.",player);
else
{
local params = split(text, " ")
local wep = GetWeaponID( params[0] )
local ammo = params[1] //Error Here of Index 1
local q = QuerySQL ( WEP, "SELECT * FROM PremiumWeps WHERE WepID='"+ wep +"' " ); // it also shows here wrong number of parameters
local cost = GetSQLColumnData( q, 2 );
if ( !params[0] ) MessagePlayer(""+red+"Error: "+white+"Please use /buywep <wepname / id > <ammo>.",player);
else if ( !params[1] ) MessagePlayer(""+red+"Error: "+white+"Please use /buywep <wepname / id > <ammo>.",player);
else if ( status[player.ID].Cash < cost ) MessagePlayer(""+red+"Error:"+white+"You don't have enough cash to buy this weapon. Cost: "+cost+"",player);
else if ( !GetSQLColumnData( q, 0 ) ) MessagePlayer(""+red+"Error:"+white+"Invalid Weapon ID or Name.",player);
else{
player.SetWeapon(wep, ammo);
player.Cash -= cost;
}
}
}
if ( !params[0] ) MessagePlayer(".......
orif ( params < 1 ) MessagePlayer("........