Okay so I've seen many people asking how to do this and i thought i'd throw this tutorial for help, i do not claim credit for anything made here this is merely a tutorial and nothing but a tutorial for people who still dunno how to use the new vc and lc maps.
Vice City Link
Liberty City Link
2.Extract the files and place them in your server file -> models
3.Download the filterscripts made by Kalcor, links:
Vice City Filterscript
Liberty City Filterscript
4.Rename the filterscripts to something easy like LCMAP and VCMAP then include both in your server.cfg filterscripts param, BUT if you have any problems with the commands, use these ones i made myself using ZCMD which also support vehicle teleport and comment out the commands made by the original FS.
You don't have to put those in any certain script.
5.Start your server, get on and use /gotovice or /gotolib and let the files download.
========
i would've released the crc files as i already uploaded them for some of my members who were having problems downloading through the game but i'm not sure if that's allowed or not but you can just download through the game, that's about it if you have any questions drop them below.
How to install vice city & liberty city on my server
1.Download the maps files converted by RoguerCosta Links:Vice City Link
Liberty City Link
2.Extract the files and place them in your server file -> models
3.Download the filterscripts made by Kalcor, links:
Vice City Filterscript
Liberty City Filterscript
4.Rename the filterscripts to something easy like LCMAP and VCMAP then include both in your server.cfg filterscripts param, BUT if you have any problems with the commands, use these ones i made myself using ZCMD which also support vehicle teleport and comment out the commands made by the original FS.
PHP Code:
CMD:gotovice(playerid,params[])
{
if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
{
SetPlayerInterior(playerid, 0);
SetPlayerVirtualWorld(playerid, 696967);
SetVehicleVirtualWorld(GetPlayerVehicleID(playerid),696967);
SetVehiclePos(GetPlayerVehicleID(playerid),5017.89203,834.71497,11.0);
SetVehicleZAngle(GetPlayerVehicleID(playerid), 180);
SetCameraBehindPlayer(playerid);
SendClientMessage(playerid, 0xFFDD00AA, "* You teleported to Vice City!");
GameTextForPlayer(playerid, "~b~~h~Vice City", 3000, 3);
}
else
{
SetPlayerInterior(playerid, 0);
SetPlayerVirtualWorld(playerid, 696967);
SetPlayerPos(playerid,5017.89203,834.71497,11.0);
SetPlayerFacingAngle(playerid, 180);
SetCameraBehindPlayer(playerid);
SendClientMessage(playerid, 0xFFDD00AA, "* You teleported to Vice City!");
GameTextForPlayer(playerid, "~b~~h~Vice City", 3000, 3);
}
return 1;
}
CMD:gotolib(playerid,params[])
{
if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
{
new pveh[MAX_PLAYERS];
pveh[playerid] = GetPlayerVehicleID(playerid);
SetPlayerInterior(playerid, 0);
SetPlayerVirtualWorld(playerid, 696968);
SetVehicleVirtualWorld(pveh[playerid],696968);
RemovePlayerFromVehicle(playerid);//avoiding some weird bug...
SetVehiclePos(pveh[playerid],-5240.7021,-372.1064,15.6388);
SetVehicleZAngle(pveh[playerid], 180);
SetCameraBehindPlayer(playerid);
SendClientMessage(playerid, 0xFFDD00AA, "* You teleported to Liberty City!");
GameTextForPlayer(playerid, "~b~~h~Liberty City", 3000, 3);
PutPlayerInVehicle(playerid,pveh[playerid],0);//putting player back...
}
else
{
SetPlayerInterior(playerid, 0);
SetPlayerVirtualWorld(playerid, 696968);
SetPlayerPos(playerid,-5228.8399658,-404.5500488,18.2250004);
SetPlayerFacingAngle(playerid, 180);
SetCameraBehindPlayer(playerid);
SendClientMessage(playerid, 0xFFDD00AA, "* You teleported to Liberty City!");
GameTextForPlayer(playerid, "~b~~h~Liberty City", 3000, 3);
}
return 1;
}
5.Start your server, get on and use /gotovice or /gotolib and let the files download.
========
i would've released the crc files as i already uploaded them for some of my members who were having problems downloading through the game but i'm not sure if that's allowed or not but you can just download through the game, that's about it if you have any questions drop them below.