hello fellas i wanted to ask if its possible to get the "player.set_motion" to make myself faster with a fly cuz me and a friend are working on a fly which he improved a lot (made it alot faster) by adding the player.set_motion
S
Schneelein
@Schneelein
Posts
-
player.set_motion possible? -
scripting help for noobs xdso, ive tried to make a script to change the onground timer value to a different one than the inair value but ive got the problem that the value doesnt change with this code here:
var Timer_Value = value.createInteger("Speed", 1, 1, 10);
if(mc.thePlayer.onGround) {
mc.timer.timerSpeed = Timer_Value;
} else {
if(!mc.thePlayer.onGround) {
mc.timer.timerSpeed = 1;
so im asking what is wrong or broken that it doesnt work