Hey guys, i'm looking for a script to make a volcano like creeper. It possible could someone show me some code that would:
5 - 10 Second Random burst of creeper delay.
Progressively stronger creeper.
I was wondering if this was possible. Thanks
This should work:
#Author: Lost in Nowhere
$StartCreeper:20.0
$MinDelayS:5.0
$MaxDelayS:10.0
$Increase:0.05
once
<-StartCreeper ->c_amt
endonce
CurrentCoords <-c_amt SetCreeper
<-Increase <-c_amt add ->c_amt
<-MinDelayS 30 mul <-MaxDelayS 30 mul @RandFloatBetween Delay
@RandFloatBetween #f1 f2 -- f3
->rfb_max ->rfb_min
<-rfb_max <-rfb_min sub RandFloat mul <-rfb_min add
Thankyou man