- Joined
- Feb 15, 2022
- Messages
- 17
- Reaction score
- 5
- First Language
- English
- Primarily Uses
- RMVXA


I tried to put this script: http://rmrk.net/index.php/topic,47693.0.html
Mother 3 Sprite Display but this happened
This is the XP Style Battle:

It's around this part:
#--------------------------------------------------------------------------
# ● [追加]:座標の設定
#--------------------------------------------------------------------------
def set_xy
# ステータス位置の調整:画面からはみ出ないようにする
pw = $game_party.members_screen_x.last + LNX11::STATUS_OFFSET[:x]
pw += gauge_area_width / 2
right_end = Graphics.width - LNX11::STATUS_SIDE_PADDING
min_offset = pw > right_end ? pw - right_end : 0
# ステータスのオフセットを適用
self.x = LNX11::STATUS_OFFSET[:x] - min_offset
self.y = LNX11::STATUS_OFFSET[:y] + Graphics.height - self.height
# ステータス幅の自動調整:位置を調整した分だけ幅を縮める
@min_offset = LNX11::STATUS_AUTOADJUST ? min_offset : 0
end