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?
maybe you did something wrong, just read the readmes.txt's
check everyfile you replaced there might be something wrong
Well I have death squad file .vcm i have downloaded vcm and install it automatically and then game crash at loading screen
hmm, maybe check your game version or change it
or install the mod running as administrator
i have added another vcm mod that works perfectly
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.
Finch, what's the need of adding maps? You want to hack using 'em?
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?
Quote from: ext-d.CrystalBlue on Apr 25, 2016, 11:42 AMQuote 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.
I am not About to Hack Something
@KAKAN I am Creating A Mod GTA Pakistan That 's why i ask for my problem here
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?
@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 98
to:
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 66
to:
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.
Thanks For the Help Dude