I'm sorry if it was given before, just cant read the whole thread.
Can somebody give me a simple mech code?
I'm sorry if it was given before, just cant read the whole thread.
Can somebody give me a simple mech code?
Hi. If Divran is still online id like him to look at this http://www.youtube.com/watch?v=pMHxGWx7Rgs. I did not make that VTOL but id like to make one using that E2.
I would like that E2 to be the VTOL function of my aircraft. My aircraft would then have the abillity to turn on 2 giant jets at the back and make the VTOL controllers turn backwards to give forward thrust.
What i do not know is how that E2 works and i cannot figure it out. I am also unable to figure out how to wire the thing. xXxENTExXx says in his video description on youtube that he will make a tutorial on how to make it if enough people watches it. But not many people have seen it so i doubt he will in the nearer future. I therefore ask if you could make/optimize his E2 code into what i described above and make it understandable to wire for a programming noob like me. I know there are some tutorials out there but i find none of them helping me with my VTOL. Please help someone.
Can anyone hook me up with an applyforce steering e2?
I don't know if you already have one like this.. I don't want to go through the pages before this post but can you make an E2 where it spawns a sort of Jet that flies with Pitch and Roll like an actual real life Jet?
There is an OK flight chip posted by divran in this thread, find it yourself.
Oh, I seem to forgot to put in "Spawn 3D Hologram" into that. When I try to rotate it using toWorld angles it starts spazzing out. When I use local Roll, it turns like it's Yaw and starts screwing up in flight -_-
EDIT: I finally fixed it.. now I need an E2 that uses a Holo Missile and follows an entity (Another holo) all of my attempts have the missiles spazzing out, going the wrong way or going in circles .____.
EDIT 2: To Elaborate on the above, basically a homing missile using a 3D hologram, it's for a holo-fight game that i'm trying to make with my friends, i'll be happy if you guys/Divran make a code that lets a hologram home in on an entity using holoAng and holoPos (since it's the only way to move holograms)
Can someone make an flight E2 for planes?
Can someone Make this http://www.youtube.com/watch?v=cq5wMLqueBI
Should be a relatively simple matter of pushing an object along a parabola.
Y=X2*Curve alt-to-distance mult
where Y is the Z of the missile and X is the distance between the launch point and a midpoint between the launchpoint and target. I might look into doing it eventually. If that equation fails, I worked out a simpler method earlier that is less clean.
I simply need a question answering if that's cool. Divran, I am making a map radar / hologram recreation in miniature. For part of this I am getting the players and creating hologram versions of them using holoModelAny. The problem is; I am trying to scale these holograms (models come from ragdolls) but it will not let me. Is it not possible to change the scale of a hologram if the model is taken from a ragdoll? Is there any way around this?
Look forward to a reply. Cheers
any ideas ?
Ive been playing garrysmod for over a year now. Ive gotten used to expression 2 for wiremod but im confused on a setup im trying to make for the wire wheels. Im trying to make the wheels drive in two modes. One as low speed and one as high with a reverse key. This is what i have so far.*
@name 4x4 wheel drive system
@imputs 8D 9D 5R---(D is for drive R is for reverse)
@outputs W1 W2 W3 W4---(W is for wheel)
If (8D==1) {W1=1 W2=1 W3=1 W4=1}
else{W1=0 W2=0 W3=0 W4=0}
if (9D==1) {W1=1*2 W2=1*2 W3=1*2 W4=1*2}
else {W1=0 W2=0 W3=0 W4=0}
if (5R==1) {W1=-1 W2=-1 W3=-1 W4=-1}
else{W1=0 W2=0 W3=0 W4=0}
Thats all i got for now. Im not sure if it will work. But if you know what to do or fix my expression. That would be helpfull. Also, i want to figure out a way to make an E2 chip for suspension and steering. I have a cheap steering E2 but i want to get others. Thankyou very much
-snip- didn't notice how old thread was
Can someone make (or find) an E2 for an auto open fading door? (I've looked for it and can't find it) Thanks
Has anyone ever considered making easy yet interesting stuff, say, an engine kept spinning by Wire Weights O.o?
Removed
Can you make a E2 that its like blackjack where i can type hit or stay in chat and the number increse and make it so min bet is 500 and max is 5000 and then at the bottom make it so it says the person that bet and gave me money
i know this is an old thread but i was wondering if you had a e2 code for an airplane. the adv pod controller and trusters arent cutting it and i need to get the plane working soon because i want to make a dogfight server
thanks
Provided you have a flyable plane that you created, and FinTool:
Just change the settings according to your hydraulics length and thruster. Look on youtube for tutorials on FinTool and planes.Code:@name Plane @inputs W A S D Shift Up Down Active MoreP LessP @outputs Left Right Back Thruster Trim Power Left=52.3 Right=52.3 Back=97+Trim Thruster=0+Power if(Active==0){Trim=0} if(Active==0){Power=0} if(Up){Trim+=1} if(Down){Trim-=1} if(MoreP){Power+=100} if(LessP){Power-=100} if(Trim>10){Trim=10} if(Trim<-10){Trim=-10} if(Power>1000){Power=1000} if(Power<-0){Power=0} if(W){Back=117+Trim} if(S){Back=77+Trim} if(A){Left=42,Right=62} if(D){Left=62,Right=42} if(Shift){Thruster=850+Power}
I am Not a coder, I just take what I have and reconfigure it till it works. I have looked at what you have and what you're asking and came up with this(I don't know if this is what you're asking for, but..)
So you would just wire all the Tires:Go to the chip Go, and all Tires:SpeedMod to the chips Speedmod. Wiring from the chip to an Advanced Pod Controller is a no brainer. You can also use a screen to display what drive you're in by wiring to the chips Speedmod, or you can just peek at the tires. Other than that, Wire wheels suck, they kept going into the ground on me with the speed mod up. OH and, if you want to drive in low speed, just set the wheel torque to something lower and using the SpeedMod will double it when in Drive2.Code:@name 4x4 Wheel Drive System @inputs W S Active Drive1 Drive2 @outputs Go SpeedMod Go=0 if(Active==0){SpeedMod=0} if(Drive1){SpeedMod=0} if(Drive2){SpeedMod=100} if(W){Go=1} if(S){Go=-1}