Jump to content
    1. Welcome to GTAForums!

    1. GTANet.com

    1. GTA Online

      1. Updates
      2. Find Lobbies & Players
      3. Guides & Strategies
      4. Vehicles
      5. Content Creator
      6. Help & Support
    2. Red Dead Online

      1. Blood Money
      2. Frontier Pursuits
      3. Find Lobbies & Outlaws
      4. Help & Support
    3. Crews

    1. Grand Theft Auto Series

      1. Bugs*
      2. St. Andrews Cathedral
    2. GTA VI

    3. GTA V

      1. Guides & Strategies
      2. Help & Support
    4. GTA IV

      1. The Lost and Damned
      2. The Ballad of Gay Tony
      3. Guides & Strategies
      4. Help & Support
    5. GTA San Andreas

      1. Classic GTA SA
      2. Guides & Strategies
      3. Help & Support
    6. GTA Vice City

      1. Classic GTA VC
      2. Guides & Strategies
      3. Help & Support
    7. GTA III

      1. Classic GTA III
      2. Guides & Strategies
      3. Help & Support
    8. Portable Games

      1. GTA Chinatown Wars
      2. GTA Vice City Stories
      3. GTA Liberty City Stories
    9. Top-Down Games

      1. GTA Advance
      2. GTA 2
      3. GTA
    1. Red Dead Redemption 2

      1. PC
      2. Help & Support
    2. Red Dead Redemption

    1. GTA Mods

      1. GTA V
      2. GTA IV
      3. GTA III, VC & SA
      4. Tutorials
    2. Red Dead Mods

      1. Documentation
    3. Mod Showroom

      1. Scripts & Plugins
      2. Maps
      3. Total Conversions
      4. Vehicles
      5. Textures
      6. Characters
      7. Tools
      8. Other
      9. Workshop
    4. Featured Mods

      1. Design Your Own Mission
      2. OpenIV
      3. GTA: Underground
      4. GTA: Liberty City
      5. GTA: State of Liberty
    1. Rockstar Games

    2. Rockstar Collectors

    1. Off-Topic

      1. General Chat
      2. Gaming
      3. Technology
      4. Movies & TV
      5. Music
      6. Sports
      7. Vehicles
    2. Expression

      1. Graphics / Visual Arts
      2. GFX Requests & Tutorials
      3. Writers' Discussion
      4. Debates & Discussion
    1. Announcements

    2. Support

    3. Suggestions

*DO NOT* SHARE MEDIA OR LINKS TO LEAKED COPYRIGHTED MATERIAL. Discussion is allowed.

Car and Bike Neons


vettefan88
 Share

Recommended Posts

Waterbottle

 

Watterbottle answer please..

 

Waterbottle/vettefan can you make neon for boats too?biggrin.gif and helicopters.

 

and the bmx'es? lol

 

And flash neons??

Boat neons won't be possible through the method I used, and mrobably not through any method I know of.

helicopter neons are possible, but why would you want them? I guess I can make them tonight when I get home from work.

bmx neons, if they don't work with the bike neons then I'll try to figure it out.

 

and by flash neons do you mean neons that pulsate from dark to light? or from on to off? I guess I could make those by writing a simple script and messing with the alpha channel of each color, but I don't know how much it'll slow down the game. Running the same loop 60 times a second has to slow the game down a bit...

I mean that they turn of then on then off en then on etc

 

and why is boat neon inpossible? I mean that they glow under water

 

and can you make a neon cheat that every vehichle/ped etc have random colors?

and finch I had it good and now it is so big.

Edit: its fixed now.

here's one that makes it flash, though I think it looks completely ridiculous. I'm not really sure what you had in mind (should it change at random or a set amount of time? Should it be longer off than on or vice versa?)

 

 

#cheat Red car flashing neonsR = 255;G = 0;B = 0;wait = 8;color = R + (G << 8) + (B << 16);static count;if( count++ % wait == 0){   for( i = 0; i < 56; i += 4 )       setint(0x0972EFF0+i, getint(0x0972EFF0+i)^color);}

 

 

To make the neons he change the color of the shadows, the boats have no shadow. The only way I can think of that would be possible for boat neons would be spawning one of the colored light objects and moving it after the boat, however the objects disappear if you move them to far unfortunately. and I'm sure it wouldn't glow underwater anyway.

Edited by Waterbottle
Link to comment
Share on other sites

Ubersoldier

Thanks! smile.gif

 

And what do you mean with:

 

 

should it change at random or a set amount of time? Should it be longer off than on or vice versa?
???

 

 

and if I change:

wait = 8;

for example too:

wait = 5;

 

is it going to flash is faster then??

 

and I mean that the random colors for example:

2 seconds red

2 seconds green

2 seconds blue etc etc.

 

And can you make neons for objects/trees too ? lol,rofl pimp my VC ;d

Edited by Ubersoldier
Link to comment
Share on other sites

Vicecitystories

I wanted to do that tounge.gif nice work WB ( ask wb I asked him how to do it about a week ago tounge.gif ) doesn't madder it's made smile.gif

Edited by Vicecitystories
Link to comment
Share on other sites

Ubersoldier

 

I wanted to do that tounge.gif nicw work WB

what did you want? lol

 

flash neons was my idea lol

 

Thanks! smile.gif

 

And what do you mean with:

 

QUOTE

should it change at random or a set amount of time? Should it be longer off than on or vice versa?

???

 

 

and if I change:

wait = 8;

for example too:

wait = 5;

 

is it going to flash is faster then??

 

and I mean that the random colors for example:

2 seconds red

2 seconds green

2 seconds blue etc etc.

Edited by Ubersoldier
Link to comment
Share on other sites

Waterbottle

 

And what do you mean with:

 

QUOTE 

should it change at random or a set amount of time? Should it be longer off than on or vice versa?

???

 

 

and if I change:

wait = 8;

for example too:

wait = 5;

 

is it going to flash is faster then??

 

and I mean that the random colors for example:

2 seconds red

2 seconds green

2 seconds blue etc etc.

never mind

 

yes

 

 

#cheat random car flashing neonscolor = (getint(0x08bb3b40)*getint(pplayer)*getint(pplayer+0x30)*getint(pplayer+0x54)) & 0xffffff;wait = 8;static count;if( count++ % wait == 0){   for( i = 0; i < 56; i += 4 )   {       setint(0x0972EFF0+i, getchar(0x0972EFF3+i)<<24);setint(0x0972EFF0+i, getint(0x0972EFF0+i) | color);   }}

 

Edited by Waterbottle
Link to comment
Share on other sites

Ubersoldier

And what do you mean with:

 

QUOTE 

should it change at random or a set amount of time? Should it be longer off than on or vice versa?

???

 

 

and if I change:

wait = 8;

for example too:

wait = 5;

 

is it going to flash is faster then??

 

and I mean that the random colors for example:

2 seconds red

2 seconds green

2 seconds blue etc etc.

never mind

 

yes

 

 

#cheat random car flashing neonscolor = (getint(0x08bb3b40)*getint(pplayer)*getint(pplayer+0x30)*getint(pplayer+0x54)) & 0xffffff;wait = 8;static count;if( count++ % wait == 0){   for( i = 0; i < 56; i += 4 )   {       setint(0x0972EFF0+i, getchar(0x0972EFF3+i)<<24);setint(0x0972EFF0+i, getint(0x0972EFF0+i) | color);   }}

 

which colors are that?????

Link to comment
Share on other sites

Waterbottle

And what do you mean with:

 

QUOTE 

should it change at random or a set amount of time? Should it be longer off than on or vice versa?

???

 

 

and if I change:

wait = 8;

for example too:

wait = 5;

 

is it going to flash is faster then??

 

and I mean that the random colors for example:

2 seconds red

2 seconds green

2 seconds blue etc etc.

never mind

 

yes

 

 

#cheat random car flashing neonscolor = (getint(0x08bb3b40)*getint(pplayer)*getint(pplayer+0x30)*getint(pplayer+0x54)) & 0xffffff;wait = 8;static count;if( count++ % wait == 0){   for( i = 0; i < 56; i += 4 )   {       setint(0x0972EFF0+i, getchar(0x0972EFF3+i)<<24);setint(0x0972EFF0+i, getint(0x0972EFF0+i) | color);   }}

 

which colors are that?????

all.

Link to comment
Share on other sites

Ubersoldier

And what do you mean with:

 

QUOTE 

should it change at random or a set amount of time? Should it be longer off than on or vice versa?

???

 

 

and if I change:

wait = 8;

for example too:

wait = 5;

 

is it going to flash is faster then??

 

and I mean that the random colors for example:

2 seconds red

2 seconds green

2 seconds blue etc etc.

never mind

 

yes

 

 

#cheat random car flashing neonscolor = (getint(0x08bb3b40)*getint(pplayer)*getint(pplayer+0x30)*getint(pplayer+0x54)) & 0xffffff;wait = 8;static count;if( count++ % wait == 0){   for( i = 0; i < 56; i += 4 )   {       setint(0x0972EFF0+i, getchar(0x0972EFF3+i)<<24);setint(0x0972EFF0+i, getint(0x0972EFF0+i) | color);   }}

 

which colors are that?????

all.

ok but can you make neons for beams and objects etc too? LOL xd

Link to comment
Share on other sites

And what do you mean with:

 

QUOTE 

should it change at random or a set amount of time? Should it be longer off than on or vice versa?

???

 

 

and if I change:

wait = 8;

for example too:

wait = 5;

 

is it going to flash is faster then??

 

and I mean that the random colors for example:

2 seconds red

2 seconds green

2 seconds blue etc etc.

never mind

 

yes

 

 

#cheat random car flashing neonscolor = (getint(0x08bb3b40)*getint(pplayer)*getint(pplayer+0x30)*getint(pplayer+0x54)) & 0xffffff;wait = 8;static count;if( count++ % wait == 0){   for( i = 0; i < 56; i += 4 )   {       setint(0x0972EFF0+i, getchar(0x0972EFF3+i)<<24);setint(0x0972EFF0+i, getint(0x0972EFF0+i) | color);   }}

 

which colors are that?????

all.

ok but can you make neons for beams and objects etc too? LOL xd

changeing every shadow in the game to red or blue or something would just be lame.

 

the only textures I can see as being worth while are:

HUD objects.

Circle around the radar.

car lights

street lights

and possibly vics clothing...

Link to comment
Share on other sites

Vicecitystories

Yeah vettefan make's a good point that would be lame and it might slow down the game stupid to do that... I would like to work on a project with vettefan though tounge.gif

Link to comment
Share on other sites

bored.gif HUD objects.

biggrin.gif Circle around the radar.

biggrin.gif car lights

bored.gif street lights

biggrin.gifbiggrin.gifcookie.gifcookie.gif and possibly vics clothing

Link to comment
Share on other sites

Ubersoldier

no it would be cool bored.gif

 

Btw

HUD objects.

Circle around the radar.

car lights

street lights

and possibly vics clothing

 

And Police Sirens??

Link to comment
Share on other sites

Ubersoldier

I like to see other siren colors

 

btw * bump * because this topic is old and dusty!

Link to comment
Share on other sites

  • 2 weeks later...
Gantons Most Wanted

wow wot n asshole attitude if they had the code they would of posted it by now dude

Link to comment
Share on other sites

Ubersoldier
wow wot n asshole attitude if they had the code they would of posted it by now dude

 

GANTOS MOST ASSHOLE

omg you an asshole

 

I really hate you

Link to comment
Share on other sites

wow wot n asshole attitude if they had the code they would of posted it by now dude

 

GANTOS MOST ASSHOLE

omg you an asshole

 

I really hate you

why? because he stated the truth. If someone made the code they would of posted it, you didn't need to ask for it again.

 

and now, I'll never even look into making that cheat because of your replys.

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
 Share

  • 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.