Knuckle Cracker

Creeper World 3 => The Coder's Corner => Topic started by: 0guyboom on December 05, 2018, 08:48:02 AM

Title: [help]
Post by: 0guyboom on December 05, 2018, 08:48:02 AM
the only code running is this

:awake
   SetCreeperFlowRateRL(10)
   SetCreeperFlowRateUD(10)


:Destroyed
   SetCreeperFlowRateRL(0.8)
   SetCreeperFlowRateUD(0.8)

but them this happens
Title: Re: [help]
Post by: Builder17 on December 05, 2018, 11:05:30 AM
Maximum safe for CreeperFlowRate is 1.2, higher than that does that.

Code here would do closer to correct.  :)

:awake
   SetCreeperFlowRateRL(1.2)
   SetCreeperFlowRateUD(1.2)


:Destroyed
   SetCreeperFlowRateRL(0.03)
   SetCreeperFlowRateUD(0.03)
Title: Re: [help]
Post by: 0guyboom on December 05, 2018, 11:07:00 AM
cool i though it was 12 i misunderstood