1
Making a bullet move exactly where you want when you want is hard and unintuitive
2
I think it’s needed because
Making bullets, trails, sliding doors it’s all better through a move command
3
You could chose to have it replace the ground it was previously on when moving for instance:
Move X -1, Y +1 then
Replace “Tile 1”
end
end
Also you could have a “trail” command which would allow the bullet to have a tile one tile behind it for extra effect:
Move X +1, Y -1 then
Trail “Bullet speed particle”
end
end