Jump to content

Cheat Development


edisoncarter
  • Replies 1.6k
  • Created
  • Last Reply

Top Posters In This Topic

  • Vicecitystories

    188

  • creeepers

    160

  • vettefan88

    156

Top Posters In This Topic

Recommended Posts

yes, I need that and pop-up police to see if Cloning still works. I can't believe there's no change ped cheat. That must be hidden in the game somewhere.

 

 

Well I'm officially jealous. These cheats are brilliant stuff icon14.gif The force? Mines? Holy crap.

 

I'm going to make a cheat no matter how bad it is.

Link to comment
Share on other sites

OMFG Watterbottle!!!!!

>> I used your last NOS version, I was driving an indestructible police car with kamakazee cheat on (O=Fire car+Nos), and I don't know why, it happened 2 times, when I used NOS, there was a mechanical motor sound that was playing faster & faster as I accelerated faster & faster!! Did it ever happened to you? IT ROCKED!!!LOL my motor did an accelerating plane sound!!

 

PS : Force blast is still not working... Send me your cheats.txt I'll see if it will...

 

PS2 : Would it be possible to make a speed'o'meter with the money counter? It would be great! wink.gif

Edited by PSPGenMaxime
Link to comment
Share on other sites

does any1 know how 2 convert cheats like be able 2 use lock camera on vcs

I already posted it earlier in this thread, but here you go.

 

#cheat Lock Camerasetchar(pplayer + 0x550,  1);#offsetchar(pplayer + 0x550,  0);

 

 

All I did was look in the same general area from chrislawrence's lcs cheat. whatsthat.gif

Link to comment
Share on other sites

How to make options?

(like the teleport function in cheatdevice)

impossible.

Link to comment
Share on other sites

Its not impossible since edison did it. He just wants to know how he did it.

Make your own cheatdevice and you can do it too.

Link to comment
Share on other sites

 

does any1 know how 2 convert cheats like be able 2 use lock camera on vcs

I already posted it earlier in this thread, but here you go.

 

#cheat Lock Camerasetchar(pplayer + 0x550,  1);#offsetchar(pplayer + 0x550,  0);

 

 

All I did was look in the same general area from chrislawrence's lcs cheat. whatsthat.gif

A thankz good lookin out and does this work in the car 2

Link to comment
Share on other sites

RCB cheat quickly on off when you get off a bike will make you get on again but as a passenger, and you'll never from your bike!!!

 

PS : Did you see my last topic waterbottle?

Link to comment
Share on other sites

 

OMFG Watterbottle!!!!!

>> I used your last NOS version, I was driving an indestructible police car with kamakazee cheat on (O=Fire car+Nos), and I don't know why, it happened 2 times, when I used NOS, there was a mechanical motor sound that was playing faster & faster as I accelerated faster & faster!! Did it ever happened to you? IT ROCKED!!!LOL my motor did an accelerating plane sound!!

 

PS : Force blast is still not working... Send me your cheats.txt I'll see if it will...

 

PS2 : Would it be possible to make a speed'o'meter with the money counter? It would be great!  wink.gif

havn't happened to me, no.. tounge.gif

 

#cheat money is speed'O'meter

speed = (sqrt(getfloat(pcar + 0x140) * getfloat(pcar + 0x140) + getfloat(pcar + 0x144) * getfloat(pcar + 0x144)))*100;

if(pcar) setint(0x08bde55c, int(speed), int(speed));

Edited by Waterbottle
Link to comment
Share on other sites

Is there a code to make your car change colour? cause i couldn't find one. The only ones i've found random colour and disco car.

Link to comment
Share on other sites

Hello, I don´t have VCS yet, but as I was reading vettefans vehiclelist, I was just wondering where the "Insurrection Turbo X" is, its not including, but it was seen on an ad in one of the trailers of VCS.

 

user posted image

Link to comment
Share on other sites

does any1 know how 2 convert cheats like be able 2 use lock camera on vcs

I already posted it earlier in this thread, but here you go.

 

#cheat Lock Camerasetchar(pplayer + 0x550,  1);#offsetchar(pplayer + 0x550,  0);

 

 

All I did was look in the same general area from chrislawrence's lcs cheat. whatsthat.gif

A thankz good lookin out and does this work in the car 2

Ahh, sorry it does not work in a car.

 

I will look into making the car camera locked.

Link to comment
Share on other sites

I need some help now, been stuck all day.

 

I'm trying to redo my superman cheat so you use the analog stick to rotate on all axises, and X to fly forwards depending on your rotation (so it's like real superman). Now I got it partially working, the problem is that I can't rotate so that the player is pointing downwards. I know what is the cause of this, but I'm not able to resolve it.

 

I use these lines,

 

setfloat(pplayer + 0x70, 0.03 * ystick * getfloat(pplayer+0x14));

setfloat(pplayer + 0x74, -0.03 * ystick * getfloat(pplayer+0x10));

 

to make the rotation on X and Y axis. and since

pplayer+0x14 stores, sin(X degrees)*sin(Y degrees)*cos(Z degrees)+cos(X degrees)*cos(Z degrees)

and

pplayer+0x10 stores, cos(Y degrees)*sin(Z degrees)

then as the X/Y rotation goes towards 90 and the player then is pointing sideways, cos of the rotation will then go towards 0 and the player will then stop rotating, bacause any value timed with 0 is 0.

 

I've tried different things to get it working, amongst others doing cos/sin of the players Z rotation in radians (found on pplayer +0x8d4). But that caused other problems.

 

Could someone with greater skills in trigonometry please give some input on what I could do to get it working?

 

Here is the full cheat I have, you can't fly downwards with it.

 

 

#cheat Superman, non workingpstartfly = getshort(pplayer+0x1C8);static speedmult;if(!speedmult) speedmult=0.5;setfloat(pplayer + 0x4E4, 150.0);//health   setfloat(pplayer + 0x78, -0.03 * xstick);   setfloat(pplayer + 0x70, 0.03 * ystick * getfloat(pplayer+0x14));   setfloat(pplayer + 0x74, -0.03 * ystick * getfloat(pplayer+0x10));    if(buttons & CTRL_CROSS) {                  setshort(pplayer+0x1c8, 0x1020);                  setfloat(pplayer+0x140, -getfloat(pplayer+0x10)*(getfloat(pplayer+0x18))*speedmult);                  setfloat(pplayer+0x144, -getfloat(pplayer+0x14)*(getfloat(pplayer+0x18))*speedmult);            setfloat(pplayer+0x148, (getfloat(pplayer+0x18)+cos(90/180*2.1415))*speedmult);            speedmult+=0.02;   } else        if(pstartfly==0x1020)       {       setfloat(pplayer+0x140, 0, 0, 0);       speedmult=0.5;       }

 

Link to comment
Share on other sites

Finally got Vic invisible. colgate.gif

That's invisible Vic and invisible car done now.

 

 

#cheat Invisible Vicsetchar(pplayer+0x4C, 0x10);setchar(pplayer+0x4D, 0x20);#offsetchar(pplayer+0x4C, 0x00);setchar(pplayer+0x4D, 0x00);

 

 

user posted image

 

Only problem/bug is when you enter a vehicle your player skin gets left where you entered the car.

Link to comment
Share on other sites

user posted image

 

 

#cheat Drive On Water!//By Waterbottle//This cheat will allow any vehicle you are in to drive on water. Control Setup 1 recommeded.//X: accelerate, Analog: rotate, R: hand brake//Thanks to Durka Durka Mahn for the cheat idea;)if(getfloat(pcar+0x38)<getfloat(0x96C96B0)+0.8) {  static speed;  //set the car ontop of the water  setfloat(pcar+0x38,  getfloat(0x96C96B0)+0.8);  setfloat(pcar+0x8,  0);  setfloat(pcar+0x18,  0);  setfloat(pcar+0x20,  0,  0,  0);  setfloat(pcar+0x148,  0);  //hand brake  if(buttons & CTRL_RTRIGGER)   {  speed*=0.9;  handb = 2.5;  } else handb = 1;  //rotate the vehicle  if(speed>0.1)          setfloat(pcar+0x78,  -0.015 * xstick * handb);  //accelerte  if(buttons & CTRL_CROSS && speed<0.7)           speed += 0.02;   else if(speed>0)           speed -= 0.01;  //add speed to car  setfloat(pcar+0x140,  -getfloat(pcar+4)*speed);  setfloat(pcar+0x144,  getfloat(pcar)*speed);}

 

Edited by Waterbottle
Link to comment
Share on other sites

Very nice, Watterbottle.

 

Ahh, damn update.

 

Mines, driving on water, speed'o'meters, what's next? You guys just don't quite, do you? tounge.gif

Link to comment
Share on other sites

You're really doing fantastic work here... having a lot of fun with your mods.

 

Yet, I have a few problems... some of the cheats stay active, although I turn them off (happens even to some of CheatDevice's own stuff, like "Heavy Vehicle"), which is especially useless with stuff like "Locked Car Doors", since you can't get out of the car once you're locked in.

 

But still, awesome jobs done ;-)

 

Stuff I'm hoping for:

 

- It would be very cool to have those proximity mines to drop from the back of your car while driving. Might make police chases VERY funny.

 

- A way to alter parameters of the engine itself, like view-distance, LOD-distances, field-of-view and turning off that goddamn speed-blur (which I'm sure isn't helping the framerate).

 

- More possible camera angles while driving (overhead, inside the car, customizable views)

 

- Construction mode, of course ;-)

Link to comment
Share on other sites

Hello, I don´t have VCS yet, but as I was reading vettefans vehiclelist, I was just wondering where the "Insurrection Turbo X" is, its not including, but it was seen on an ad in one of the trailers of VCS.

 

user posted image

That car isn't actually in game... It's like Maibatsu Montruosity in GTA3.

Link to comment
Share on other sites

 

Yet, I have a few problems... some of the cheats stay active, although I turn them off (happens even to some of CheatDevice's own stuff, like "Heavy Vehicle"), which is especially useless with stuff like "Locked Car Doors", since you can't get out of the car once you're locked in.

I believe edison said there is a bug where if the cheat has a comment (//text here) between #cheat and #off.. the off section of the cheat will not work.

I'm sure it will be fin in the next release wink.gif

 

EDIT: oops, realised how stupid my question was.

I was missing a ; so it wouldn't work. Got it now wink.gif

Edited by Winchy
Link to comment
Share on other sites

I know I'm not supposed to be here but I can't stand sitting behind while everyone else makes cheats. Please unban me so I can help!!! Please do not dump this topic away on me.. Anyways, here's mine so far..

 

 

This code makes anything you touch die or blow up.

 

#cheat Touch of Deathobject = getint(pplayer+0x150);carobject = getint(pcar+0x150);if(getint(pplayer+0x150)>0x098b4a40&&getint(pplayer+0x150)<0x098ecf90){setfloat(object + 0x4e4,   0);}if(getint(pplayer+0x150)>0x098edcc0&&getint(pplayer+0x150)<0x099019a0){setfloat(object + 0x27c,   0);} if(getint(pcar+0x150)>0x098b4a40&&getint(pcar+0x150)<0x098ecf90){setfloat(carobject + 0x4e4,   0);}if(getint(pcar+0x150)>0x098edcc0&&getint(pcar+0x150)<0x099019a0){setfloat(carobject + 0x27c,   0);} 

 

 

 

This cheat will allow you to teleport the targeted ped to a saved location. To save use Up and Triangle, to teleport target a ped and hit up.

 

 

#cheat Ped Teleporterpped = getint(0x08BA1D70);if((pressmed & CTRL_TRIANGLE&&pressmed & CTRL_UP)){playerx = getfloat(pplayer + 0x030);playery = getfloat(pplayer + 0x034);playerz = getfloat(pplayer + 0x038);}if((press & CTRL_UP)){setfloat(pped + 0x30,  playerx);setfloat(pped + 0x34,  playery);setfloat(pped + 0x38,  playerz);}

 

 

This cheat allows you to gain an extreme amount of speed when you hit O. Different than WB's NOS cheat, thanks to WB bTW.

 

#cheat Extreme Boost (Hit O)if((press & CTRL_CIRCLE)){   setfloat(pcar+0x140,  getfloat(pcar+0x140)+getfloat(pcar+0x10)+0.1);   setfloat(pcar+0x144,  getfloat(pcar+0x144)+getfloat(pcar+0x14)+0.1);} 

 

 

This cheat makes your car catch fire allowing you to bail and use it as a bomb.

 

#cheat Kamakazee!if ((buttons & CTRL_CIRCLE)){setfloat(pcar + 0x0000027C,  0x0);}

 

Link to comment
Share on other sites

@ Waterbottle:

 

Hey I'm trying to use your custom text in a cheat and I can't get it to work right. Can you tell me what I've done wrong?

 

here is the begining of the cheat:

 

setchar(pplayer+0x4C, 0x10, 0x20);setshort(0x08e90bd8, 1, 'R', '+', 'U', '=', 'L', 'e', 'a', 'v', 'e', ' ', 'R', '+', 'D', '=', 'R', 'e', 't', 'u', 'r', 'n', ' ', 'L', 'e', 'f', 't', '/', 'R', 'i', 'g', 'h', 't', '=', 'T', 'o', 'g', 'g', 'l', 'e', ' ', 'c', 'a', 'm', 0);if (press & CTRL_RTRIGGER&&press & CTRL_UP)setchar(pplayer+0x8B4, 0x36);setshort(0x08e90bd8, 0, 0);

 

I was trying to make it so the text is displayed (and player turned invisible) when the cheat is enabled, then when they press R+UP the cheat happens and the text goes.

Thanks smile.gif

Link to comment
Share on other sites

@ Waterbottle:

 

Hey I'm trying to use your custom text in a cheat and I can't get it to work right. Can you tell me what I've done wrong?

 

here is the begining of the cheat:

 

setchar(pplayer+0x4C, 0x10, 0x20);setshort(0x08e90bd8, 1, 'R', '+', 'U', '=', 'L', 'e', 'a', 'v', 'e', ' ', 'R', '+', 'D', '=', 'R', 'e', 't', 'u', 'r', 'n', ' ', 'L', 'e', 'f', 't', '/', 'R', 'i', 'g', 'h', 't', '=', 'T', 'o', 'g', 'g', 'l', 'e', ' ', 'c', 'a', 'm', 0);if (press & CTRL_RTRIGGER&&press & CTRL_UP)setchar(pplayer+0x8B4, 0x36);setshort(0x08e90bd8, 0, 0);

 

I was trying to make it so the text is displayed (and player turned invisible) when the cheat is enabled, then when they press R+UP the cheat happens and the text goes.

Thanks smile.gif

 

setchar(pplayer+0x4C, 0x10, 0x20);setshort(0x08e90bd8, 1, 'R', '+', 'U', '=', 'L', 'e', 'a', 'v', 'e', ' ', 'R', '+', 'D', '=', 'R', 'e', 't', 'u', 'r', 'n', ' ', 'L', 'e', 'f', 't', '/', 'R', 'i', 'g', 'h', 't', '=', 'T', 'o', 'g', 'g', 'l', 'e', ' ', 'c', 'a', 'm', 0);if (press & CTRL_RTRIGGER&&press & CTRL_UP){setchar(pplayer+0x8B4, 0x36);setshort(0x08e90bd8, 0, 0);}

 

 

Should work wink.gif

Link to comment
Share on other sites

Thanks DDM! smile.gif

That makes the text appear, however when I press R+UP the text disappears for a split second then appears again.

Any ideas?

Link to comment
Share on other sites

That's because you have it to where if you hit the buttons it dissapears..But since you have it changing it back, it wont work. Try this...

 

 

text = 1;setchar(pplayer+0x4C, 0x10, 0x20);if(text == 1){setshort(0x08e90bd8, 1, 'R', '+', 'U', '=', 'L', 'e', 'a','v', 'e', ' ', 'R', '+', 'D', '=', 'R', 'e', 't', 'u', 'r','n', ' ', 'L', 'e', 'f', 't', '/', 'R', 'i', 'g', 'h', 't', '=','T', 'o', 'g', 'g', 'l', 'e', ' ', 'c', 'a', 'm', 0);}if (press & CTRL_RTRIGGER&&press & CTRL_UP){setchar(pplayer+0x8B4, 0x36);setshort(0x08e90bd8, 0, 0);text == 0}

 

 

Note sure how you would get it to work after that confused.gif sorry.. I'm sure WB knows!

Edited by DDM
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • 1 User Currently Viewing
    0 members, 0 Anonymous, 1 Guest

×
×
  • Create New...

Important Information

By using GTAForums.com, you agree to our Terms of Use and Privacy Policy.