No video

[GMod 13] Independent Suspension and Steering Tutorial [2016]

  Рет қаралды 40,188

Zcythe Gaming

Zcythe Gaming

Күн бұрын

Пікірлер: 185
@Kevin15673
@Kevin15673 7 жыл бұрын
I combined both of the E2's together, I did this on my last pc too, I think it makes things easier EDIT: Also, I just build my hydraulics straight onto the Setang Steering E2, thats what I and pretty much everyone else on the server I play on do, makes things more organized (I play on I Just Want to Build (IJWTB)) @name ACF Setup + Setang Steering @inputs W A D CHASSIS:entity @outputs Throttle Constant Damping @persist SLAVE:entity [TURN_RATE TURN_ANGLE TURN] B C @model models/sprops/rectangles/size_2_5/rect_18x18x3.mdl Throttle = W * 100 Constant = 50000 Damping = 500 if (dupefinished()) {reset()} B = round(toUnit("km/h",CHASSIS:vel():length())) if(B >= 20) { TURN_ANGLE = 25 } else { TURN_ANGLE = 45 } if (first()) { interval(20) TURN_RATE = 5 SLAVE = entity() } elseif (clk()) { interval(20) if (!SLAVE:isPlayerHolding()) { TURN += clamp((A-D)*TURN_ANGLE - TURN, -TURN_RATE, TURN_RATE) SLAVE:setAng( CHASSIS:toWorld(ang(0, TURN, 0)) ) SLAVE:propFreeze(1) } }
@gabrieloliveira3273
@gabrieloliveira3273 4 жыл бұрын
Thank you so much for this tutorial. Even though it's pretty old, it still works nowadays, and I can finally make proper suspensions.
@xedproable
@xedproable 8 жыл бұрын
Best ACF tutorial on youtube right now. tyty
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
Thanks!
@benrichard5667
@benrichard5667 7 жыл бұрын
Every time i go to use the suspension module thingy, it throws an error code saying that SLAVE:setAng isn't a proper function
@Georetic
@Georetic 5 жыл бұрын
I know it's late but I believe the problem is that you don't have an extension (propcore) enabled in E2. I think you can 'fix' this, in singleplayer only, by following the instructions on this image: image.prntscr.com/image/33WMdj9XSi2cHgA5L5R-CQ.png Although I recommend you enable them all in singleplayer. "Note: Most E2 addons do not register themselves as extensions and thus cannot be turned on or off with the above commands. A notable exception is the propcore extension in the UWSVN, which is disabled by default. Also, you must run wire_expression2_reload in order for enabling/disabling extensions to take effect." Here is the list of functions that propCore provides: github.com/wiremod/wire/wiki/Prop-core And setAng is one of them. So enabling propcore must fix it.
@benrichard5667
@benrichard5667 3 жыл бұрын
@@Georetic Thanks for the help! I'll try this later on
@R0MF.2IQ
@R0MF.2IQ 7 жыл бұрын
Help pls. I get error "No such function: entity:SetAng(angle) at line 31 char 15"
@Georetic
@Georetic 5 жыл бұрын
I know it's late but I believe the problem is that you don't have an extension (propcore) enabled in E2. I think you can 'fix' this, in singleplayer only, by following the instructions on this image: image.prntscr.com/image/33WMdj9XSi2cHgA5L5R-CQ.png Although I recommend you enable them all in singleplayer. "Note: Most E2 addons do not register themselves as extensions and thus cannot be turned on or off with the above commands. A notable exception is the propcore extension in the UWSVN, which is disabled by default. Also, you must run wire_expression2_reload in order for enabling/disabling extensions to take effect." Here is the list of functions that propCore provides: github.com/wiremod/wire/wiki/Prop-core And setAng is one of them. So enabling propcore must fix it.
@GMODISM
@GMODISM 8 жыл бұрын
Great tutorial!
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
Thanks!
@doodle7273
@doodle7273 Жыл бұрын
when creating the wired hydraulic constraint it says precision aligntment is creating errors
@doodle7273
@doodle7273 Жыл бұрын
please reply :)
@SimpleHoon
@SimpleHoon 6 жыл бұрын
anyone getting "Directive (@name) must appear before code at line 2 char 1" delete //acf startup from above the first line.
@spoonfull2155
@spoonfull2155 4 жыл бұрын
SimpleHoon still not working
@edwardkenway148
@edwardkenway148 7 жыл бұрын
How do I do it for more wheels the precision alignment can't take more than 9 points so what I should do about hydraulics part?
@ZcytheGaming
@ZcytheGaming 7 жыл бұрын
basically do what I did to each wheel. And just keep doing it till its done, I will make a Tank tutorial w/ suspension as good as this.
@edwardkenway148
@edwardkenway148 7 жыл бұрын
Ok thanks.
@ZcytheGaming
@ZcytheGaming 7 жыл бұрын
eventually.
@ironichoneybadger5066
@ironichoneybadger5066 4 жыл бұрын
4:19 perfectly balanced, as all things should be
@jaronhamrick6702
@jaronhamrick6702 8 жыл бұрын
My precision alignment tool won't set more then one point
@professorboxtrot4922
@professorboxtrot4922 7 жыл бұрын
Hold SHIFT while you click.
@aclevername8399
@aclevername8399 7 жыл бұрын
I was wondering, what exactly does Constant and Damping do?
@ZcytheGaming
@ZcytheGaming 7 жыл бұрын
Truth be told i'm not sure, I never really experimented with the numbers enough.
@JudoP_slinging
@JudoP_slinging 6 жыл бұрын
Constant is basically spring constant, it's how stiff the spring is. The higher it is the more force will be required to move wheels from neutral position and the more force they will return to neutral with. Heavier cars need stronger constant. Ideally you want a constant such that the biggest bumps you expect to hit will max out your available wheel travel. Damping is like the delta (or $) if you have ever coded hovering e2 thrusters before. It basically punishes and slows down high speeds, it slows the amount of time to return to neutral initially but then heavily cuts down the oscillations and springing around the neutral point. If you have no damping you return to neutral fast but then overshoot it and keep oscillating back and forth past it. Ideally you want higher damping for fewer really big bumps and low damping for many smaller bumps. This is because you need fast return to neutral if you hit many smaller bumps in sequence, but if you hit big bumps you need something that will cancel the large oscillations out and perform smoothly. You may want to look up PID controller- P relates to constant and D relates to damping. You can ignore the I bit, it's an extra factor that can be added which accumulates over time to overcome natural failure to return to the exact start position. It's not used here.
@Rex-xj4dj
@Rex-xj4dj 3 жыл бұрын
When I used this, the wheels in the front locked up
@pewnews6935
@pewnews6935 6 жыл бұрын
Your e2 doesn’t work
@Kevin15673
@Kevin15673 6 жыл бұрын
0:43 "Lets get begin!"
@Chubbza5
@Chubbza5 7 жыл бұрын
The ball socket things dont really work the way you described. Mine wont hold the wheel in place.
@bradlinsley8028
@bradlinsley8028 6 жыл бұрын
You probably didn't build north because I had that problem then I fixed the orientation and it worked
@zubbbz8541
@zubbbz8541 7 жыл бұрын
the only good tutorial
@ZcytheGaming
@ZcytheGaming 7 жыл бұрын
thanks
@RobbiePTSD
@RobbiePTSD 6 жыл бұрын
it keeps saying u need @name to be at line 2 char 1
@madakhan
@madakhan 2 жыл бұрын
I can’t figure out how to make a six wheel vehicle with the mirror, any tips?
@13B-POWAH
@13B-POWAH 5 ай бұрын
i bring unfortunate news, im not sure if its something im doing wrong addon-wise, but the method of using PA for wire hydraulics doesn't seem to work anymore
@xanar1358
@xanar1358 4 ай бұрын
i bring fortunate news there is a fork of precision alignment also for some reason the wire hydraulic does work in multyplayer but it work in signleplayer
@13B-POWAH
@13B-POWAH 4 ай бұрын
what's the fork? also i was trying this in singleplayer
@13B-POWAH
@13B-POWAH 4 ай бұрын
ill try again in multiplayer if i get the time
@xanar1358
@xanar1358 3 ай бұрын
@@13B-POWAH the offbrand version is called "precision alignment" and its made by a guy called GNU. And fork is when someone makes something makes it open to the public and some takes it and makes adjustments to it
@bluej360
@bluej360 6 жыл бұрын
10:22 "Directive (@name) must appear before code at line 2 char 1" fix?? this is also happening with inputs and outputs
@darktoonlinko3468
@darktoonlinko3468 6 жыл бұрын
this is bullshit the steering E2 simply doesnt work for me i put it its red it says that some characters dont exist and if i delete them than it has errors i dont even understand so yeah for me its a failure
@sampindrock9108
@sampindrock9108 2 жыл бұрын
Probably a bit late but I'm stuck on the step where you connect the hydraulics to the wheels. The odd and even step. It's giving me errors and saying its a nil value. any advice?
@sampindrock9108
@sampindrock9108 2 жыл бұрын
attempt to callmethod 'SetRope'
@TheDrummerJ
@TheDrummerJ Жыл бұрын
I have the problem that Precision Alignment can't constraint an object to itself
@mstsmanchance
@mstsmanchance 8 жыл бұрын
While this tutorial is amazing and very appreciated, I can't get the E2 chip to work. I keep getting an error saying "directive (@name) is required on line 2 at character 1... which doesn't make sense because the @name is definitely there, I re-pasted the code numerous times. I need halp. :(
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
Sorry man I've kinda stopped playing, and all I can suggest is check my description and make sure some of the e2 settings in the console. Otherwise I recommend maybe finding a different steering e2 or go to a legit build server and ask some who is much better with e2. :/ sorry I'm not of much help here. Tomorrow I will add another steering e2 to the pastebin.
@mstsmanchance
@mstsmanchance 8 жыл бұрын
+ZcytheGaming hehe, nevermind, I did the same thing as one of the comments below, I copied some ball socket values by accident. Awesome video, definitely subbing.
@gelatinoussire7772
@gelatinoussire7772 8 жыл бұрын
Wheels don't rotate like they should. Wheels roll over sideways. Can't dupe machine because it won't duplicate the hydraulics for some reason.
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
Did you ball socket correctly?, As for duplication, you are using the advanced duplicator right?
@gelatinoussire7772
@gelatinoussire7772 8 жыл бұрын
Advanced duplicator 2. My vehicle is facing north, and I have the exact same settings for the ball socket. I've tried to change the settings to see if I can fix it, but it doesn't work no matter what I do.
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
Then I'm unsure how to help, and I am terribly sorry I cannot. I wish only for you to find a solution.
@gelatinoussire7772
@gelatinoussire7772 8 жыл бұрын
Yes! I got it working. I decided to make it on the flatgrass map, facing the Flattywood sign (which I assumed was north for some reason). It decided to roll only sideways, so I realized that I wasn't actually facing north, and I changed the settings of the ball socket to fix it. It works now, thanks for your awesome tutorial!
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
Deathpuff12 Glad you got it working! Remember that on any map, the top of your spray is north.
@ricke1804
@ricke1804 4 жыл бұрын
i need help the ball socket is not working it just has my weels just go left right i want help
@ZcytheGaming
@ZcytheGaming 4 жыл бұрын
Sorry to say, but I haven't messed with GMod since this video. Your gonna have to find help somewhere else. :( Good luck
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
5:20 ish fail edit.
@dalee.9128
@dalee.9128 7 жыл бұрын
ZcytheGaming you can press shift to wire multiple at once
@ruttokello6222
@ruttokello6222 6 жыл бұрын
Why you need to build north??
@ZcytheGaming
@ZcytheGaming 6 жыл бұрын
not sure, but i do know that if you dont some things wont work.
@ruttokello6222
@ruttokello6222 6 жыл бұрын
ok thx
@dootdoot1828
@dootdoot1828 7 жыл бұрын
Does anyone know how to fix the problem of the steering not working over 5 mph?
@pizzakeitto
@pizzakeitto 7 жыл бұрын
When i spawn in the E2 steering thing it says "No such function: entity:setAng(angle) at line 31, char 15" Can you help? E: After like 2 seconds found answer in google :P Sorry for my comment. Amazing tutorial bro
@ZcytheGaming
@ZcytheGaming 7 жыл бұрын
Glad you found a solution, I was halfway onto searching google myself when I read your edit. Thanks.
@lxndr9044
@lxndr9044 7 жыл бұрын
where did you find the solution?
@Maks-rz8zb
@Maks-rz8zb 7 жыл бұрын
facepunch.com/showthread.php?t=1256001
@user-qt5mh7fc3w
@user-qt5mh7fc3w 5 жыл бұрын
"wire_expression2_extension_enable propcore" on console to fix. You could have copypasted the command here instead of telling that you've found the solution on google, not only it would have taken less time to type but also it would have been more helpful for other people. Also facepunch link got 404'd.
@matthewr6854
@matthewr6854 7 жыл бұрын
The link for pastebin where you gave us the E2 and ball-socket information isn't working.
@ZcytheGaming
@ZcytheGaming 7 жыл бұрын
It has been over a year, and I haven't played gmod in forever. IF you're talking about the actual link not working, it is for me. Otherwise I won't be much help sorry :(
@probably9085
@probably9085 6 жыл бұрын
nice physgun skin btw
@zsoleszgamer6271
@zsoleszgamer6271 8 жыл бұрын
You dont need to click on the sides for adv ball socket, u can click anywhere
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
+zsolesz gamer Oh, Well either way it works, and it helped me visualize how it kind of works.
@zsoleszgamer6271
@zsoleszgamer6271 8 жыл бұрын
im just saying to make things easyer :D
@banstack2869
@banstack2869 7 жыл бұрын
it says cannot constrain entity to itself
@banbankbarbs1791
@banbankbarbs1791 8 жыл бұрын
The Steering e2 is not working it says: " left curly bracket ({) expected after if condition at line 29, char 33 " please help.
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
I recommend looking up similar e2s. I haven't played GMOD for quite some time.
@banbankbarbs1791
@banbankbarbs1791 8 жыл бұрын
+ZcytheGaming ok.
@banbankbarbs1791
@banbankbarbs1791 8 жыл бұрын
nvm i passed the error code!
@galacticnipple2586
@galacticnipple2586 7 жыл бұрын
ok so, i enabled the "wire_expression2_extension_enable propcore" and the "reload" one but it still doesn't change to the block thingo, not sure why? help would be appreciated c:
@ZcytheGaming
@ZcytheGaming 7 жыл бұрын
I'd recommend surfing the web for an e2 you put onto a prop. But i can't help right now as I don't have gmod installed.
@galacticnipple2586
@galacticnipple2586 7 жыл бұрын
ZcytheGaming I'm not entirely sure what you're suggesting i search for but thanks for the fast reply c: i appreciate it.
@radicalradish6853
@radicalradish6853 7 жыл бұрын
When i unfreeze my car the suspension doesn't work and it just flops or freaks out
@Kevin15673
@Kevin15673 6 жыл бұрын
your baseplate needs to be heavier than the wheels
@mrsobelek
@mrsobelek 7 жыл бұрын
Clicked for tutorial, stayed for synthwave
@ZcytheGaming
@ZcytheGaming 7 жыл бұрын
Thanks! One of my favorite albums.
@SWETHOR02
@SWETHOR02 7 жыл бұрын
I do not have the advanced wire tool plizz help
@JoeMakaFloe
@JoeMakaFloe 7 жыл бұрын
Wiremod has been updated so the advanced wire tool is the standard tool now, the legacy tool has been removed cause it was never used
@cillblinton8181
@cillblinton8181 7 жыл бұрын
Do you know how I can do suspension with only three wheels. on say a tricycle?
@ZcytheGaming
@ZcytheGaming 7 жыл бұрын
You do the same thing I do here, except for both sides of the wheel, look at the end of my ACF video for reference, though it's backward :p
@kimerpelding5845
@kimerpelding5845 6 жыл бұрын
Does this works on Cars with a weight from... like 120 tons? ._.
@Minecraftminer3000
@Minecraftminer3000 5 жыл бұрын
If your car weighs 120 tons, you might want to reconsider your life choices.
@yosher1765
@yosher1765 7 жыл бұрын
I put down the E2 on the plate with the code in it but it says "Directive (@name) must appear before code at line 2 char 1" please help NVM I noticed what I was doing wrong, LOL.
@Rex-xj4dj
@Rex-xj4dj 3 жыл бұрын
What did you do wrong
@camronthomas5087
@camronthomas5087 6 жыл бұрын
cant get the e2 chip
@Ryan-gc5zd
@Ryan-gc5zd 5 жыл бұрын
i followed step by step but the wheels wont rotate and the wheels sway back and fourth
@Ryan-gc5zd
@Ryan-gc5zd 5 жыл бұрын
i just re did it, i even slowed it down but it still sways
@CJGTLGAMER
@CJGTLGAMER 7 жыл бұрын
i need help i get an errar that seas entitty:setang(angel) line 31 chr 15 what do i do on the stering
@professorboxtrot4922
@professorboxtrot4922 7 жыл бұрын
Go into Q>Utilities>Admin>E2 Extensions and enable all of them, Then in console type: wire_expression2_reload
@Lc4Tuna
@Lc4Tuna 5 жыл бұрын
@@professorboxtrot4922 thanks man
@weastfab2311
@weastfab2311 7 жыл бұрын
Hey I messaged you asking if you have time to help me with this part
@Thomas-go9ge
@Thomas-go9ge 6 жыл бұрын
UFGFFGFG I SPENT 1 HOUR ON THIS AND I FAILED
@superdestructorx
@superdestructorx 7 жыл бұрын
Thanks, great tutorial!
@venomdrop3166
@venomdrop3166 8 жыл бұрын
Can I not use ACF
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
Yeah, use whatever means you feel to get the vehicle going.
@cringlez1096
@cringlez1096 6 жыл бұрын
so lets get begin!
@silverheart302
@silverheart302 6 жыл бұрын
E2 seems broken, Game Crashes as soon as it attempts to load your Chip
@ZcytheGaming
@ZcytheGaming 6 жыл бұрын
Silverheart this doesn't make sense. If a chip doesn't work, it should just throw an error or something. I've never heard of a simple e2 chip causing a crash. And if your talking about the steering e2 that's not my chip, and it was made years ago. I'd try searching for a updated steering chip.
@silverheart302
@silverheart302 6 жыл бұрын
This perplexed me as well, as no e2 chip crashed my game before, especiallly not when i just copy the code into the Editor. ill go look for an updated version then.
@weastfab2311
@weastfab2311 7 жыл бұрын
mine doesn't freak out like that now now it just stays in one pot and the wheels just sag plz help
@weastfab2311
@weastfab2311 7 жыл бұрын
nvm fixed it maybe haven't fully finished this part
@weastfab2311
@weastfab2311 7 жыл бұрын
nope still have problems
@Lambda01
@Lambda01 8 жыл бұрын
My wheels won't spin at all. Help?
@Lambda01
@Lambda01 8 жыл бұрын
BUT this is an amazing tutorial either way! Best one out there!! All the others out there are wayyyy too vague. Awesome!!
@Lambda01
@Lambda01 8 жыл бұрын
Nvm actually... I got it. Awesome tutorial!!
@chop0072
@chop0072 8 жыл бұрын
Rest in rip idubs
@TheBlueScroom
@TheBlueScroom 3 жыл бұрын
My wheels are spinning the wrong way
@TheBlueScroom
@TheBlueScroom 3 жыл бұрын
I fixed it
@ZcytheGaming
@ZcytheGaming 3 жыл бұрын
@@TheBlueScroom Good to hear
@kivi5586
@kivi5586 5 жыл бұрын
the e2 setang steering is outdated please update it
@Georetic
@Georetic 5 жыл бұрын
I know it's late but I believe the problem is that you don't have an extension (propcore) enabled in E2. I think you can 'fix' this, in singleplayer only, by following the instructions on this image: image.prntscr.com/image/33WMdj9XSi2cHgA5L5R-CQ.png Although I recommend you enable them all in singleplayer. "Note: Most E2 addons do not register themselves as extensions and thus cannot be turned on or off with the above commands. A notable exception is the propcore extension in the UWSVN, which is disabled by default. Also, you must run wire_expression2_reload in order for enabling/disabling extensions to take effect." Here is the list of functions that propCore provides: github.com/wiremod/wire/wiki/Prop-core And setAng is one of them. So enabling propcore must fix it.
@kristangame9429
@kristangame9429 6 жыл бұрын
Derective (@name) must appere before code at line 2 char 1 Help!
@tonycastro1618
@tonycastro1618 8 жыл бұрын
very nice :D
@professorboxtrot4922
@professorboxtrot4922 7 жыл бұрын
How do I make this support a lot of weight? Turning the damping up, it stops being effective and increasing strength at one point (about 5000 id say?) And I have a big car that weighs a lot.
@ZcytheGaming
@ZcytheGaming 7 жыл бұрын
Mabye make the car not heavy? And make sure the wheels and baseplate are significantly more heavy then the "body"
@professorboxtrot4922
@professorboxtrot4922 7 жыл бұрын
I'm working with a lot of acf engines and gearboxes guns etc, so I can't decrease weight. I've also tried making the body and wheels heavier, no such luck.
@ZcytheGaming
@ZcytheGaming 7 жыл бұрын
Umm... well i'm not sure, Making the baseplate and wheels heavier works for me. Also remember that the wheels must be lighter than the baseplate. And your baseplate needs to be heavier than all of the combined ACF parts attached to it.
@professorboxtrot4922
@professorboxtrot4922 7 жыл бұрын
That didn't seem to work, What happens is the suspension isn't able to support the car and this happens: Before: steamcommunity.com/sharedfiles/filedetails/?id=868000326 After: steamcommunity.com/sharedfiles/filedetails/?id=868000207
@ZcytheGaming
@ZcytheGaming 7 жыл бұрын
What are the the weights?
@pkbossmanawd349
@pkbossmanawd349 8 жыл бұрын
its good now :D
@isaiahduarte9210
@isaiahduarte9210 8 жыл бұрын
do you do holo?
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
Nope, I just know how to setup cars.
@isaiahduarte9210
@isaiahduarte9210 8 жыл бұрын
the e2 is not working
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
+Isaiah Duarte How? Whats it say, Give me more information so I can help you, because it works for me.
@isaiahduarte9210
@isaiahduarte9210 8 жыл бұрын
the part that says if(replied)){ say("ITS JUST A PRANK BRO")
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
Oky m8, wanna go? I'll rek you i swear on me mum.. 1v1 me cod mw2
@isaiahduarte9210
@isaiahduarte9210 8 жыл бұрын
I will use my minecarft hacks -_-
@weastfab2311
@weastfab2311 7 жыл бұрын
wait no I changed it its Mr.Weast
@isaiahduarte9210
@isaiahduarte9210 8 жыл бұрын
alrightjust added you I am vShazerJr
@Neldonax
@Neldonax 7 жыл бұрын
Oh
@bridgerjohnson6941
@bridgerjohnson6941 8 жыл бұрын
I need help pasting the e2 code. can anyone help me? i need to know where to extract the E2 file in the good folder
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
+Bridger Johnson How are you having trouble? Like all you have to do is past the stuff into the E2, and save it. And update the list on the wire menu.
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
+Bridger Johnson Also keep in mind, that the pastebin has multiple codes, for multiple chips.
@bridgerjohnson6941
@bridgerjohnson6941 8 жыл бұрын
+ZcytheGaming i was being stupid sorry. lol. Also on the steering E2 it says "unknown character found (.)" the period after ball socket adv.
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
I'm not sure, The code works for me, I'd suggest trying to re-paste it and save it. I'm sorry I can't help you on this part.
@bridgerjohnson6941
@bridgerjohnson6941 8 жыл бұрын
+ZcytheGaming i have multiple times. can you look on your link at the steering code? the period is on line 46 on the page.
@isaiahduarte9210
@isaiahduarte9210 8 жыл бұрын
if you can make a holo with 0 ops and have it move without parenting come and show me
@isaiahduarte9210
@isaiahduarte9210 8 жыл бұрын
add me on steam trust me i can show you we will join a server and i will show you wrong
@vej5010
@vej5010 8 жыл бұрын
+ZcytheGaming toWorld() magic my friend
@nicholascarr6251
@nicholascarr6251 8 жыл бұрын
Can you build a engine, like a V-12,8,6 pls
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
+Gamer_time What like e2 engines? Otherwise its all very similar just mess with the final drive until it works well.
@nicholascarr6251
@nicholascarr6251 8 жыл бұрын
Like a e2 engine.
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
Sorry don't know anything about e2 engines.
@Maks-rz8zb
@Maks-rz8zb 7 жыл бұрын
music please.
@ZcytheGaming
@ZcytheGaming 7 жыл бұрын
Home - Odyssey
@Maks-rz8zb
@Maks-rz8zb 7 жыл бұрын
ZcytheGaming thank you very much!
@Maks-rz8zb
@Maks-rz8zb 7 жыл бұрын
man, u sure that this music is Home - Odyssey? i was looking for that but i think its different music
@Maks-rz8zb
@Maks-rz8zb 7 жыл бұрын
and, uh, i want first music from second movie about ACF car
@pepper-pultpult1604
@pepper-pultpult1604 6 жыл бұрын
is it possible to do this car but without acf;and make steering and gas like in this video:kzfaq.info/get/bejne/fNKVq5Bj2NXDiqc.html
@Blyter7
@Blyter7 8 жыл бұрын
build one without mods
@Kot337
@Kot337 8 жыл бұрын
you mean addons?
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
I do not know how. And I don't think limiting myself will be fun in this game. (Not that I play it anymore)
@zerobyter
@zerobyter 8 жыл бұрын
Dude you desperately need to make videos along side a script...
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
Agreed but it was a heat of the moment kind of thing. I tried my best not to stutter, trust me you haven't heard the worst of it.
@weastfab2311
@weastfab2311 7 жыл бұрын
my steam name is DSMRSpektrum
@jaronhamrick6702
@jaronhamrick6702 8 жыл бұрын
My precision alignment tool won't set more then one point
@ZcytheGaming
@ZcytheGaming 8 жыл бұрын
Mine works fine, make sure you have the right kind, Check my collection, steamcommunity.com/sharedfiles/filedetails/?id=582472912
@elihalverson3644
@elihalverson3644 7 жыл бұрын
Same problem and i have the same tool as you.
[GMod 13] ACF Setup and Wiring Tutorial [2016]
16:10
Zcythe Gaming
Рет қаралды 14 М.
Garry's Mod ARG: Gaming Gramps
17:38
Radiation Hazard
Рет қаралды 136 М.
Doing This Instead Of Studying.. 😳
00:12
Jojo Sim
Рет қаралды 38 МЛН
WILL IT BURST?
00:31
Natan por Aí
Рет қаралды 10 МЛН
[GMod 13] Suspension & Steering Tutorial - Simple
14:52
Chris Boddum // Jackpody
Рет қаралды 277 М.
Gmod - Updated Suspension Tutorial/Elastics - chazmister56
20:13
chazmister56
Рет қаралды 11 М.
GMod Easy Suspension and steering tutorial
7:15
SnarkyCoconut
Рет қаралды 4 М.
It's MUCH Bigger On The Inside... ( Safe Spaces ) | Garry's Mod
9:08
[GMod 13] Multi-Parenting Tutorial / How to make lots of props not lag
8:18
Chris Boddum // Jackpody
Рет қаралды 24 М.
How to build a turning car in Gmod without thrusters!
2:13
int_overflow
Рет қаралды 15 М.
Garry's Mod Tutorial    :    How to Fix Wheel Spass
5:19
Chris Boddum // Jackpody
Рет қаралды 17 М.
Garry's Mod - Hydraulic Suspension Tutorial
12:02
SirDobbers
Рет қаралды 10 М.
How To Build A Good Base On Gmod DarkRP
13:20
Elitelupus
Рет қаралды 81 М.
Doing This Instead Of Studying.. 😳
00:12
Jojo Sim
Рет қаралды 38 МЛН