13.5k Grob0s0VBRa Comments

  • 2000 hours on SimplePlanes 2.9 years ago

    Pathetic! -
    TF2 Heavy

  • Pre rotating Propeller (See description for clearer understanding0) 2.9 years ago

    clamp01(Throttle+ clamp01(Activate1)*0.025)
    This may help.
    You can additionally change the 0.025 value to whatever you see fit if this one is too low/big.
    And yes, It goes into Throttle input section of propeller.

    +2
  • GR-MS 01 Pawn 2.9 years ago

    A knight in shining armor!
    Looks awesome and inspiring.
    Performs nicely.
    Absolutely worth the wait.


    Ian was talking about labels, its about that you can put FT codes into color and alpha making symbols change their colors and/or transparency (which, with help of emission parameter on label part, can make symbols pulsate and glow accordingly to the code used)
    Well, i guess so.
    ...
    Edit: Ah, yes he gave an example, it comes on 0:10, the all monitors offline piece changes its alpha with time

    +3
  • MiG-9 Troika (I-303) 2.9 years ago

    Many thanks to those who upvote, leaves spotlight and/or comment and those who just downloads this craft of mine or passes by.
    Oi, i got over pow(10,3) points. Wow.
    Its pow(10,4) dummy!
    Umm, three eighties, is nice
    O ye, 1000 downloads, cool.
    1555
    1616...

  • A skull 2.9 years ago

    RATTLE ME BONES!!!

    +2
  • MiG-9 Troika (I-303) 2.9 years ago

    @BogdanX they just procrastinate.
    Ok, ok, i don't remember why i made them that way.
    edit: POV: somebody vented...

  • MiG-9 Troika (I-303) 2.9 years ago

    @XAircraftManufacturer @Bryan5
    You asked for a tag on teasers

    +1
  • How to make weapons activate in range 2.9 years ago

    (abs(TargetElevation-PitchAngle) + abs(TargetHeading-Heading) ) less than 10
    Try this, insert it in activation group of cannon part.

    +1
  • Funky trees question.[][ 2.9 years ago

    abs(insert code here) - converts values to a positive ones.
    Or, perhaps
    **Value** less than 0 ? **Alternate equation in that duration** : normal **Value** code

  • [VOTE!] ____ageddon! Fill in the blank. I'll make the most upvoted comment! 2.9 years ago

    Uranus.
    i guess that is stoopid enough

    +5
  • Walker Tutorial or somthin idk 2.9 years ago

    @Sergio666 apologies for disturbance but i'm also interested in mechanical builds and probably may help too.

    +1
  • Symetrical Wing Design 2.9 years ago

    Approx. circular fuselage "angles" (or vertices, or how it is called) position, in fill units:
    0.017
    0.067
    0.1464
    0.25
    0.3705
    0.5

  • Does anyone know if this is possible, anybody at all. 2.9 years ago

    @jamesPLANESii
    Doo-Doot!
    *Translate as:*
    Lol.
    Ok.

  • Does anyone know if this is possible, anybody at all. 2.9 years ago

    Hmm, you can place tail wheel on another, second rotator and set it's input to -rate(Angle).
    Where :
    Angle - a variable output name that you can set on the first rotator (yes, the output is called current angle).
    That will lock the wheel in it's current position, also use activation group for that.


    If you need wheel to be locked in neutral position then use -(Angle).


    Don't forget to set equal range on the rotators, and probably speed parameter on the second one should be high enough.
    That's all i guess.

    +1
  • Walker Tutorial or somthin idk 2.9 years ago

    Oh i love the smell of Math in the morning.
    And welcome back i guess

    +1
  • That’s pretty cool 3.0 years ago

    @asteroidbook345 We All have Hulk, Crush moments, i guess.
    Wait, was it Nokia?

  • That’s pretty cool 3.0 years ago

    Was it a Nerf Gun?
    Or a Kitchen Gun?
    Or some Gigachad just punched it with a single finger?
    Or it was a pen?
    Mystery no doubt it is...

    +2
  • Damage Detection 3.0 years ago

    @IceCraftGaming Always has been...

    +4
  • Damage Detection 3.0 years ago

    Try placing flight computers in the desired structural elements.
    Use distance between cockpit and every flight computer as an activator, when any change to that value will give you an output.
    Here is the formula to find distance:
    sqrt(pow(Lat2-Lat1,2)+pow(Lon2-Lon1,2)+pow(Alt2-Alt1,2))
    Where:
    Lat1, Lon1, Alt1 - coordinates of cockpit
    And
    Lat2, Lon2, Alt2 - coordinates of flight computer


    Just put the that formula in the variables, don't forget setting variables output on flight computer pieces.
    It will work only with structural elements but i guess there is something to do with engine RPM and throttle for engine damage detection.

    +4
  • Me when the funny 3.0 years ago

    Hmm, somebody enjoys messing around that topic, somebody complaints...
    *inhales*

    You can't shoot a hole into the surface of Mars.

    The End

    lol perhaps

  • Can ur tell me 3.0 years ago

    As far as nobody seem to help yet, i'll try to bring what i do know.


    While making a 4-legged walker the code in legs joints needs to be made of trigonometric formulas with, for example sin(Time * Cycle Speed)* Your Input on front pair and cos(Time * Cycle Speed)* Your Input on rear.
    Or
    Codes may be equal for the opposite (in X way; LeftFront=RightRear and RightFront=LeftRear) legs.


    While making a 6-legged walker we can:
    1) Throw one the same code into 1 and 2 pairs and other on the 3rd one (1= sin(), 2=sin(), 3=cos() or the opposite 1=sin(), 2=cos(), 3=cos() );
    2) Use same code on 1 and 3 pairs leaving 2nd with different code;
    3) Make all pairs use one trig. function, may be messy and time-consuming, as we need to code every joint on legs to move in specific periods of function (lets say we making leg moving horizontally when sin() more than 0 and sin() less than 0.5 and then vertically on sin() more than 0.5 and sin() less than 1 )
    Also:
    Combined pairs of legs can be smaller in size and, if so, Cycle Speed in codes should be 1.25-2 times higher than on the pair that left alone


    While making a 5-or-3-legged walker: it's simmilar to how we build ones with 6 legs or 4 legs, just a single leg should have a greater Cycle Speed in the code than the rest, in most cases.


    8 legs or more, same principal to 4- and 6-legged walkers.


    Personally i use sin(smooth(sum(ceil(Your Input)),clamp01(Your Input>0) ) * Cycle Speed ) * Restriction as a chassis for the codes, it allows to make a lot less twitchy movement thanks to sum and Restriction (especially with smooth()) pieces.


    This game is not about mechanical builds, robots and walking machines so it is not so simple to make ones.
    Anyway i suggest to search for examples.

    Thats all for now. Have a good day.

    +2
  • HELP ME FIND A GOOD NAME 3.0 years ago

    @mahardika Staple=paper clip if i remember it right.
    Just changed characters position.
    ...
    Voila
    Stapel

    +1
  • HELP ME FIND A GOOD NAME 3.0 years ago

    Stapel A-2

    +1
  • Message timeout 3.0 years ago

    @iwannabeelected Oi, my bad.


    {(1 - floor( smooth(Conditions,1) )) ? "Message" : "" }


    This will do.

  • Message timeout 3.0 years ago

    {ceil( smooth(Conditions,1) ) ? "Message" :"" }


    Should work.

  • Eye Lads 3.0 years ago

    @SheriffHackdogMCPE You can't be sentenced if there is no mental institution.
    Perhaps...

    +1
  • Can you make cannon rounds with fuses? 3.0 years ago

    As far as you don't have PC, i can recommend checking this forum for the exact formula.
    Or if you're actually have it (Le Personal Computation device, oh gosh) you can check this out.
    The post has a link to a hand-made prog for auto-aim+prox. fuse, useful but a bit outdated (can confirm that it works well).
    That's it.
    Have a good day.

  • Random quote 3.0 years ago

    Engineer?
    Yeah, i'm engi-nearing my phokin limit!

    - TF2 Engineer

    +1
  • "Der Kammerjäger" 3.0 years ago

    Imagine.
    Big Floppa pic as a reticle.
    Just imagine.

    +1
  • More colors? 3.0 years ago

    Open build xml.
    Get all the way down.
    Copy-paste Material color lines, excluding (or deleting) those with hidden=true
    Save changes.
    *Interstellar intensifies*
    ...
    Profit.
    ...
    Wake up.

  • I'm not Dead 3.1 years ago

    Haha, i'm not aswell...
    The mighty C just choked on me, again...
    So i can proceed studying C#, C++ and other things, lol.

  • A Colossal Project, Wish Me Luck For This 3.1 years ago

    Hm...
    Dead men tell no tales, right?

    +1
  • The SS Archangel [TEASER] 3.1 years ago

    Ou, a Titan from battlefield 2142, i guess.
    Is nice.

  • All-Terrain Mobility 3.1 years ago

    All-Dimensional When?

    +1
  • Auto Turret with limits 3.1 years ago

    Good day/night.
    This build contains a link to a spreadsheet that asteroid is talking about.
    Most up to date this one is, i guess.
    upd:
    oi

  • Made a SP meme 3.1 years ago

    Clamp01(IDDQD)

    +3
  • 911 3.1 years ago

    Mario and Luigi enter the bar.
    Luigi calmly asks Mario:
    Do you know a magic number?
    Mario says: O what?
    Luigi: 9. 1. FO *BEEP* . 1.
    Meanwhile, every Ford Crown Victoria in the world: *Becomes an ICBM*
    *Laugh.mp3*

  • Thanks TRD AKA god of cats 3.1 years ago

    Me: there is no Screenshots.
    They aren't real.
    They can't hurt you

    Therapist: *Doubt*

  • how to create & import own image in SP [RESOLVED] 3.1 years ago

    @LeaveUsAlone Nothing.
    Its available only on PC and there is no other way.
    Unfortunately, thats all.

    +1
  • Help 3.1 years ago

    @Lake
    The Designer sends a message:
    "Go Fart Yourself!!!"
    a.k.a. i can't check most of their builds somehow.
    Still, i found one that works fine and... rotators on it have 10k damperMultiplier while total mass of the build is over 500k kg.

  • Mi-24P 3.1 years ago

    You can tag only up to three persons with a single comment, others will not get anything.
    *Inhales*
    Я Крокодил, крокожу и буду крокодить.
    Ahem, just a momentary madness...

    +2
  • should I? 3.1 years ago

    School bus perhaps?

    +1
  • Joystick Base Activation Group? (Solved) 3.1 years ago

    @iwannabeelected
    You already have it.
    Pitch*clamp01(Activate7) works fine, it just needs to be placed in variable setters (the button with "(x)" ).
    Open it
    Click add Variable
    Put the function in Expression section and give it a name in a Variable Name.
    Copy that name into part input.
    Profit.

  • Joystick Base Activation Group? (Solved) 3.1 years ago

    @iwannabeelected Ow
    I placed it as a variable in input.
    And it works just fine.
    Lol, placing functions as input dont work...

  • Joystick Base Activation Group? (Solved) 3.1 years ago

    something like *clamp01(AG) somewhere in the input function may help.

    +1
  • I just noticed something 3.1 years ago

    Perhaps, it's a handmade sonic boom?
    Like VTOL or jet engine with FT's

    +3