Oh, I figured the Tankentai was altering the default. If it isn't then the following code ought to work (put it below all of your other scripts except for Main:
class Window_Base
#--------------------------------------------------------------------------
# * Draw SP
# actor : actor
# x : draw spot x-coordinate
# y : draw spot y-coordinate
#--------------------------------------------------------------------------
alias ma_iari_drawsp_lower_7jb3 draw_actor_sp
def draw_actor_sp(actor, x, y, *args)
y += 4
ma_iari_drawsp_lower_7jb3 (actor, x, y, *args)
end
end
Change this line:
y += 4
to however much extra you want it to go down to. 4 means it will move down 4 pixels.