What's new

[XBOX]Gravity Gun Mod

  • Thread starter Zorg93
  • Start date
  • Views 4,343
Zorg93

NayJames123

Read Art
Fabled Veteran Modder Programmer
Messages
4,273
Reaction score
3,475
Points
650
Sin$
0
This is still very much a work in progress and may not get released

if it does get released it will be a dumbed down version of this - a time restriction to prevent spamming and it will not work for other players cars, yes its possible but that is private
the reason why its current form will stay private

this gun does kill, its just most people in the lobby had godmode on
thanks to Chr0m3 x MoDz Chr0m3 x MoDz
 
RandomGuy361

RandomGuy361

Enthusiast
Messages
80
Reaction score
14
Points
55
Sin$
0
Well, let me be the first to thank you for not releasing this to the public (even though i would enjoy aving this). I totally agree with you - many people would abuse this and would it would destroy the game.

Anyways, great job with the those mods. :smile:
 
Chr0m3 x MoDz

Xxchr0m3kingxX

From the top to the fall, lessons through it all.
VIP
Sinner Services Seasoned Veteran
Messages
5,377
Reaction score
7,882
Points
1,170
Sin$
0
Hmmm what do you guys think Is this good enough for my 3.0s?
 
eastwood

eastwood

eastwood mods
Modder
Messages
1,212
Reaction score
460
Points
205
Sin$
7
ahhh, I miss my gravity gun from before the patch. I would stand on a car and shoot the hood and go flying in the air, wow that was fun.
Does this work the same but just through scripts ?

Also I dont see how a gravity gun would mess up the game, how is it any worse then having full god mod or a car spawner that people can just freeze the game?
 
Chr0m3 x MoDz

Xxchr0m3kingxX

From the top to the fall, lessons through it all.
VIP
Sinner Services Seasoned Veteran
Messages
5,377
Reaction score
7,882
Points
1,170
Sin$
0
ahhh, I miss my gravity gun from before the patch. I would stand on a car and shoot the hood and go flying in the air, wow that was fun.
Does this work the same but just through scripts ?

Also I dont see how a gravity gun would mess up the game, how is it any worse then having full god mod or a car spawner that people can just freeze the game?
Cuz when you aim it grabs the closest car and picks it up and can shoot it like 1000mph at someone tell me how that wouldn't be bad online
 
eastwood

eastwood

eastwood mods
Modder
Messages
1,212
Reaction score
460
Points
205
Sin$
7
Cuz when you aim it grabs the closest car and picks it up and can shoot it like 1000mph at someone tell me how that wouldn't be bad online

Ive seen this on the pc before, looks cool...
but yea just killing people with full god mode would be just as bad in my opinion
Or people caching people on fire or blowing them up or freezing the game. I would say that scripts all together are bad for the game but yes they are fun :wink:
 
xDeagleModz

xDeagleModz

Mac Miller
Legendary Veteran Seasoned Veteran Jokester
Messages
5,083
Reaction score
2,995
Points
900
Sin$
0
Looks good aye! Although it wont ruin the game if it gets released! :wink: i mean everyone said that about the object spawner and blow up people and **** too. The game is pretty much ****ed up already so who cares? Haha
 
Liquid44

Liquid44

Banned
Programmer
Messages
1,158
Reaction score
691
Points
245
Sin$
0
trust me stuart was using my private one and well said its so much fun, therefore people will want to use it alot, unlike fire and explosions, therefore it will most likely be used alot
its pretty similar, however rather than the physics force on the bullet being changes, a force is applied to the actual car causing it to fly away. oh and once i figure out how the pc version is able to get how high you are aiming, then i would be able to change improve it so you can shoot cars up anywhere you are aiming

Nice work, this looks fun as hell lol. I still can't see how you've managed to get the car to follow where your aiming lol.
 
Charlie SheenXi

Hordes Of Knees

Newbie
Messages
11
Reaction score
1
Points
45
Sin$
0
You are all saying this would ruin the game, if anything it allready has? iv seen alot of people with this , looks pritty fun , im not sayig its bad but a bit to late not to release if you get me :wink:
 
D

Deleted member 117745

Reefer Smoker
Messages
2,393
Reaction score
1,924
Points
365
Sin$
0
Nice work, this looks fun as hell lol. I still can't see how you've managed to get the car to follow where your aiming lol.
GET_OFFSET_FROM_CHAR_IN_WORLD_COORDS

heres an example (this would create an explosion at an offset from your character):
Code:
void CreateExplosionAtOffset(float offx, float offy, float offz)
{
    float x, y, z;
    GET_OFFSET_FROM_CHAR_IN_WORLD_COORDS(MyPed, offx, offy, offz, &x, &y, &z);
    WAIT(0);
    ADD_EXPLOSION(x, y, z, 13, 8, 1, 0, 100);
    WAIT(50);
}

so in order to get the car to constantly move around as the character looks around, you would loop the GET_OFFSET_FROM_CHAR_IN_WORLD_COORDS native, and then be constantly setting the cars position to that offset that is being gotten.

understand?

thanks, but your just trying to copy it lol

copy it? this has been released for pc for a very long time buddy... if anything you're the one who copied someone else. good job on bringing it over to xbox, though.
 
Zorg93

NayJames123

Read Art
Fabled Veteran Modder Programmer
Messages
4,273
Reaction score
3,475
Points
650
Sin$
0
GET_OFFSET_FROM_CHAR_IN_WORLD_COORDS

heres an example (this would create an explosion at an offset from your character):
Code:
void CreateExplosionAtOffset(float offx, float offy, float offz)
{
    float x, y, z;
    GET_OFFSET_FROM_CHAR_IN_WORLD_COORDS(MyPed, offx, offy, offz, &x, &y, &z);
    WAIT(0);
    ADD_EXPLOSION(x, y, z, 13, 8, 1, 0, 100);
    WAIT(50);
}

so in order to get the car to constantly move around as the character looks around, you would loop the GET_OFFSET_FROM_CHAR_IN_WORLD_COORDS native, and then be constantly setting the cars position to that offset that is being gotten.

understand?



copy it? this has been released for pc for a very long time buddy... if anything you're the one who copied someone else. good job on bringing it over to xbox, though.
damn, that seems so much easier that what i did, but i have never worked with offset and dont truely understand what it does, btw do you know how to get the vertical angle that your gun is aiming. and the reason i said copy it is cause i showed him online and he was asking me how i got it to keep the car infront of me
 
Liquid44

Liquid44

Banned
Programmer
Messages
1,158
Reaction score
691
Points
245
Sin$
0
GET_OFFSET_FROM_CHAR_IN_WORLD_COORDS

heres an example (this would create an explosion at an offset from your character):
Code:
void CreateExplosionAtOffset(float offx, float offy, float offz)
{
    float x, y, z;
    GET_OFFSET_FROM_CHAR_IN_WORLD_COORDS(MyPed, offx, offy, offz, &x, &y, &z);
    WAIT(0);
    ADD_EXPLOSION(x, y, z, 13, 8, 1, 0, 100);
    WAIT(50);
}

so in order to get the car to constantly move around as the character looks around, you would loop the GET_OFFSET_FROM_CHAR_IN_WORLD_COORDS native, and then be constantly setting the cars position to that offset that is being gotten.

understand?



copy it? this has been released for pc for a very long time buddy... if anything you're the one who copied someone else. good job on bringing it over to xbox, though.

Ahh I see, thats a good idea thanks. However I don't think you can get it to follow vertically and horizontally because you can only increase either x y or z offsets and if you increase them all then it will be at the resultant angle of those three offsets. I think I have another method I'll explain below.

damn, that seems so much easier that what i did, but i have never worked with offset and dont truely understand what it does, btw do you know how to get the vertical angle that your gun is aiming. and the reason i said copy it is cause i showed him online and he was asking me how i got it to keep the car infront of me

That native basically gets the distance away from the ped in parameter 1, so to get the car or object infront of you. You leave the x and z offset 0 and increase the y offset to however long distance you want it away from your players position.

What we could do to get horizontal and vertical aim is maybe attach any object to your head and make it invisible and collision proof. The object would be at an offset infront of you and then you could constantly get that objects position and teleport the car there. Hopefully that might work. Since its attached to your head, the object will follow your aim and that way we don't have to worry about player heading etc... What do you think?
 
UKxFR33STY13

UKxFR33STY13

Enthusiast
Messages
645
Reaction score
178
Points
145
Sin$
7
right, im dont know why you are saying i didnt make it when you have no proof about who made it, but i can code, liquid knows it, so does chrome, stuartb, borderhopper(the people that test for me), and if you look in chromes video it even says credit to me. I have made a working player menu and i can re-create ihaz's and evades premium mods, just ask liquid. and once me and chrome get our privates up dont join my game, i have a special mod for people that try to piss me off. and you wont like it if i do it to you, its amazing what you can do when you have have your own player menu and the ability to f*** with other peoples cars. i would say how i created it but i dont really want to reveal it to pathetic kids like you and its not chrome kings decision on whether i release it or not. me and chrome both have different ideas on things to code, he generally makes mods that are ok to release to the public, mods i make are intended for private use. only later will i try and make it acceptable for public

i agree people piss me off thats why i made my own trainer looks very similar to the pc 1.0.4.0 but im not gonna release it but maybe. but i will remove half the good stuff
 
Xbox360Freeze

Xbox360Freeze

Enthusiast
Messages
742
Reaction score
185
Points
125
Sin$
0
Bickering over a simple game? Is this real or fiction?

I'm questioning the argument not the modification itself to avoid assumptions from the smart Alec users.
 
L3G3NDxULT1M4TE

L3G3NDxULT1M4TE

Enthusiast
Seasoned Veteran
Messages
911
Reaction score
513
Points
145
Sin$
0
This mod looks very fun to use and would love if I could try it, its just too bad that most people who have mods these days abuse there power by killing and freezing innocent people :frown:
 
MrPirate

WeedPlz

Wanna Get High?
Reporter
Messages
665
Reaction score
113
Points
150
Sin$
7
that looks real fun to have, hope you consider releasing the code at some stage, might start modding GTA again
 
O

oITRiiPZIo

Newbie
Messages
10
Reaction score
1
Points
35
Sin$
0
niice lol i dont see how it would be bad for the game lol its already f*** lol
+ i am release freeze boat sooon :wink: so the game will be super ****ed and hopefully get patched :smile:
i mean i miss when scripts werent released uno
Looks good aye! Although it wont ruin the game if it gets released! :wink: i mean everyone said that about the object spawner and blow up people and **** too. The game is pretty much ****ed up already so who cares? Haha
damn, that seems so much easier that what i did, but i have never worked with offset and dont truely understand what it does, btw do you know how to get the vertical angle that your gun is aiming. and the reason i said copy it is cause i showed him online and he was asking me how i got it to keep the car infront of me
 
Chr0m3 x MoDz

Xxchr0m3kingxX

From the top to the fall, lessons through it all.
VIP
Sinner Services Seasoned Veteran
Messages
5,377
Reaction score
7,882
Points
1,170
Sin$
0
This will probs just be a stand alone sco and with my 3.0s there is no need for 1.0s :wink: Thanks to james for helping me sort out player menu and stuff

You are all saying this would ruin the game, if anything it allready has? iv seen alot of people with this , looks pritty fun , im not sayig its bad but a bit to late not to release if you get me :wink:
Lol you've seen alot of people with this hahaha Iv'e never seen anyone except me nayjames and who we gave it to
 
Top Bottom
Login
Register