Vice City: Multiplayer

Off-Topic => Off-Topic General => Topic started by: Finch Real on Apr 24, 2016, 11:18 AM

Title: GTA VC
Post by: Finch Real on Apr 24, 2016, 11:18 AM
Hello Guys I want a little Help I am Modding my VC and I Felt One Problem Again and Again That I Download Maps and Try to add them in my game it has file like Folder oceandrv or starisl or what ever when i replace these folders with old ones and start game, game Crash in middle of Loading Screen Can Anyone Help Me to Figure Out This?
Title: Re: GTA VC
Post by: Kewun on Apr 24, 2016, 11:32 AM
maybe you did something wrong, just read the readmes.txt's
check everyfile you replaced there might be something wrong
Title: Re: GTA VC
Post by: Finch Real on Apr 24, 2016, 11:40 AM
Well I have death squad file .vcm i have downloaded vcm and install it automatically and then game crash at loading screen
Title: Re: GTA VC
Post by: Kewun on Apr 24, 2016, 11:49 AM
hmm, maybe check your game version or change it
or install the mod running as administrator
Title: Re: GTA VC
Post by: Finch Real on Apr 24, 2016, 12:01 PM
i have added another vcm mod that works perfectly
Title: Re: GTA VC
Post by: KakaroT on Apr 25, 2016, 07:56 AM
Quote from: Finch Real on Apr 24, 2016, 12:01 PMi have added another vcm mod that works perfectly
Probably something wrong with vcm or gtavc.exe incompatibility.
Title: Re: GTA VC
Post by: KAKAN on Apr 25, 2016, 09:13 AM
Finch, what's the need of adding maps? You want to hack using 'em?
Title: Re: GTA VC
Post by: EK.IceFlake on Apr 25, 2016, 11:42 AM
Quote from: KAKAN on Apr 25, 2016, 09:13 AMFinch, what's the need of adding maps? You want to hack using 'em?
We have every right to hack, okay?
Title: Re: GTA VC
Post by: Stormeus on Apr 25, 2016, 12:32 PM
Quote from: ext-d.CrystalBlue on Apr 25, 2016, 11:42 AM
Quote from: KAKAN on Apr 25, 2016, 09:13 AMFinch, what's the need of adding maps? You want to hack using 'em?
We have every right to hack, okay?

I mean you're not technically wrong, it's just that the server owners also have every right to ban you for it and we have every right to ban people from this forum for discussing hacks.
Title: Re: GTA VC
Post by: Finch Real on Apr 25, 2016, 05:38 PM
I am not About to Hack Something @KAKAN I am Creating A Mod GTA Pakistan That 's why i ask for my problem here
Title: Re: GTA VC
Post by: Finch Real on Apr 26, 2016, 10:54 AM
I just have downloaded an CLEO Script In This Script If I Pressed NuM2 in front of any ped he will be my Bodyguard I just Open That using Sanny Buiilder it look like this
{$CLEO .cs}

//-------------MAIN---------------
thread 'R_GUARD'

:R_GUARD_10
wait 0
if and
04C4: create_coordinate 0@ 1@ 2@ from_actor $PLAYER_ACTOR offset 0.0 1.5 0.0
05EF: 4@ = random_actor_near_point 0@ 1@ 2@ in_radius 3.0 find_next 0 pass_deads 0 //IF and SET
05EE:   key_pressed 98 //VK_...
else_jump @R_GUARD_10
01DF: tie_actor 4@ to_player $PLAYER_CHAR
01B2: give_actor 4@ weapon 18 ammo 66 // Load the weapon model before using this
wait 1000
jump @R_GUARD_10

How Can i Change Key of Numpad 2 ? and Weapon?
Title: Re: GTA VC
Post by: PunkNoodle on Apr 26, 2016, 02:59 PM
@Finch Real: You should seek help in other GTA related forums, where they discuss Cleo scripts and you'll be sure to find better responses. Anyway as for the key you need to retrieve the correct ASCII ID corresponding to it, just google "ASCII table" or if you want to use another key from the numpad, here is a link (http://board.flashkit.com/board/showthread.php?654089-where-can-i-get-the-ascii-key-codes-for-the-num-pad&p=3417468&viewfull=1#post3417468).
So i.e. if you want to use numpad 9 instead of numpad 2 just change this line:05EE:   key_pressed 98to: 05EE:   key_pressed 105
As for the weapon you can retrieve the IDs from VC:MP wiki, Home -> ID References -> Weapons, so i.e. if you want to give them Tec-9 instead of Python, change this line: 01B2: give_actor 4@ weapon 18 ammo 66to: 01B2: give_actor 4@ weapon 22 ammo 66
P.s. I don't have any knowledge about Cleo so here I gave you an untested theorical way to do it, therefore it may or may not work, if you want to learn this stuff, go to an appropriate forum, by googling you may find plenty.
Title: Re: GTA VC
Post by: Finch Real on Apr 26, 2016, 03:58 PM
Thanks For the Help Dude