GTA Vice-City: Cheats.

Started by Mahmoud Tornado, Jul 11, 2018, 04:46 PM

Previous topic - Next topic

Mahmoud Tornado

Was walking in the forum and saw this http://forum.vc-mp.org/?topic=3883.0 so i made some cheats for the game if someone need it.
Cheats:
PANZER == Spawn a tank
TRAVELINSTYLE == Spawn a Bloodring Banger
GETTHEREQUICKLY == Spawn a fast Bloodring Banger
THELASTRIDE    == Spawn Romero's hearse
ROCKANDROLLCAR == Spawn a v-rock car
GETTHEREFAST == Spawn a Sabre Turbo
RUBBISHCAR == Spawn a garbage truck
BIGBANG == Create Explosions
CHEATSHAVEBEENCRACKED == Play as Ricardo Diaz
LOOKLIKELANCE == Play as Lance Vance
MYSONISALAWYER == Play as Ken Rosenberg
LOOKLIKEHILARY == Play as Hilary King
ROCKANDROLLMAN == Play as Love Fist character (Jezz Torent)
WELOVEOURDICK == Play as Love Fist character (Dick)
ONEARMEDBANDIT == Play as Phil Cassidy
IDONTHAVETHEMONEYSONNY == Play as Sonny Forelli
FOXYLITTLETHING == Play as Mercedes
ASPIRINE == Hp = 100
CANTTAKEITANYMORE == Character commits suicide
SEAWAYS == Drive in water allowed


Normally add this onPlayerChat( player, text )
text = text.tolower ( );
if ( text == "panzer")
    {
    CreateVehicle( 162, player.World, player.Pos.x +2, player.Pos.y +2, player.Pos.z +2, 0, 0, 0 );
    }
if ( text == "travelinstyle")
    {
    CreateVehicle( 234, player.World, player.Pos, 0, 3, 1 );
    }
if ( text == "gettherequickly")
    {
    CreateVehicle( 235, player.World, player.Pos, 0, 2, 0 );
    }
if ( text == "thelastride")
    {
    CreateVehicle( 172, player.World, player.Pos, 0, 0, 0 );
    }
if ( text == "rockandrollcar")
    {
    CreateVehicle( 139, player.World, player.Pos, 0, 0, 0 );
    }
if ( text == "gettherefust")
    {
    CreateVehicle( 206, player.World, player.Pos, 0, 0, 0 );
    }
if ( text == "rubbishcar")
    {
    CreateVehicle( 138, player.World, player.Pos, 0, 0, 0 );
    }
if ( text == "bigbang")
    {
    for(local i =0 ; i < 1000; i++) if(FindVehicle(i) != null) FindVehicle(i).Kill();
    }
if ( text == "cheatshavebeencracked")
    {
    player.Skin = 105;
    }
if ( text == "looklikelance")
    {
    player.Skin = 114;
    }
if ( text == "mysonisalawyer")
    {
    player.Skin = 107;
    }
if ( text == "looklikehilary")
    {
    player.Skin = 109;
    }
if ( text == "rockandrollman")
    {
    player.Skin = 110;
    }
if ( text == "weloveourdick")
    {
    player.Skin = 116;
    }
if ( text == "onearmedbandit")
    {
    player.Skin = 127;
    }
if ( text == "idonthavemoneysonny")
    {
    player.Skin = 113;
    }
if ( text == "foxylittlething")
    {
    player.Skin = 115;
    }
if ( text == "aspirine")
    {
    player.Health = 100;
    }
if ( text == "preciousprotection")
    {
    player.Armour = 100;
    }
if ( text == "canttakeitanymore")
    {
    player.Health = 0;
    }
if ( text == "seaways")
    {
    SetDriveOnWater( true );
    }
I hope to be at least helped one.
Mahmoud. <3

NicusorN5

lol no bigbang is something like:
if(text == "bigbang")
{
  for(local i =0 ; i < 1000; i++) if(FindVehicle(i) != null) FindVehicle(i).Kill();
}

kennedyarz

#2
Quote from: Mahmoud Tornado on Jul 11, 2018, 04:46 PMif ( text == "bigbang")
    {
    CreateExplosion( player.World, 0, player.Pos.x +10, player.Pos.y +10, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x +10, player.Pos.y, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x, player.Pos.y +10, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x +7, player.Pos.y +7, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x +7, player.Pos.y, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x, player.Pos.y +7, player.Pos.z, -1, true );
    }

hahahaha what you do. my eyes bleed

MEGAMIND


Mahmoud Tornado

Quote from: Athanatos on Jul 11, 2018, 05:09 PMlol no bigbang is something like:
if(text == "bigbang")
{
  for(local i =0 ; i < 1000; i++) if(FindVehicle(i) != null) FindVehicle(i).Kill();
}
Okay, but i didn't mean the vehs only in the command.
Anyway thanks, Edited

Mahmoud Tornado

#5
Quote from: kennedyarz on Jul 11, 2018, 06:25 PM
Quote from: Mahmoud Tornado on Jul 11, 2018, 04:46 PMif ( text == "bigbang")
    {
    CreateExplosion( player.World, 0, player.Pos.x +10, player.Pos.y +10, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x +10, player.Pos.y, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x, player.Pos.y +10, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x +7, player.Pos.y +7, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x +7, player.Pos.y, player.Pos.z, -1, true );
    CreateExplosion( player.World, 0, player.Pos.x, player.Pos.y +7, player.Pos.z, -1, true );
    }

hahahaha what you do. my eyes bleed
Just "no comment" will be better for me.

Mahmoud Tornado

Quote from: MEGAMIND on Jul 11, 2018, 06:41 PM^ thats something i already made from one of my projects

https://forum.vc-mp.org/?topic=5051.msg36511#msg36511
I don't know if it was one of your projects or not but i'm trying to help anyone who need it.
And i got the idea from here.
Quote from: Mahmoud Tornado on Jul 11, 2018, 04:46 PMWas walking in the forum and saw this http://forum.vc-mp.org/?topic=3883.0 so i made some cheats for the game if someone need it.

haxerx

I want the cigarette you got it? ;D
Who will have respite to bow their heads. Prostrations, of their own accord shall trickle from the very eyes. We will go out in Yasrib, bereft of familiar company. And deliberately lose our way in streets. Having reached there, we shall not return. Be it that looking for us, people grow weary