//----------------------------------------------------------------------------------------------------------- // fan rotate script //----------------------------------------------------------------------------------------------------------- main() { thread fanspin(); } //----------------------------------------------------------------------------------------------------------- fanspin() { fan = getentarray("fan", "targetname"); for(i = 0; i < fan.size; i++) { fan[i] thread fanrotate(randomint(4) + 2); } } //----------------------------------------------------------------------------------------------------------- fanrotate(speed) { if (!isdefined(self.script_noteworthy)) self.script_noteworthy = "y"; while(1) { if (self.script_noteworthy == "y") self rotateYaw(360,speed); else if (self.script_noteworthy == "x") self rotateRoll(360,speed); else if (self.script_noteworthy == "z") self rotatePitch(360,speed); wait(speed - 0.1); } } // Script von ZeRoY's Modding & Mapping Forum