汚いコードですみませんが、2人でやるゲームなのでどうしても進む歩数を指で隠さないといけないのでちょっと・・・と思いまして。
title "地雷散歩" *hensuu ore = "プレイヤー1" orejirai = 15 aite = "プレイヤー2" aitejirai = 15 x = 1//俺 y = 1//相手 turn = 1 *タイトル pos 50,50 mes "あなたの名前を入れてください" input aite,100,20 pos 300,50 mes "あなたの名前を入れてください" input ore,100,20 pos 150,100 objsize 80,20 button "スタート!",*start stop *start cls pos 50,50 mes "" + aite + " 地雷まで残り" + aitejirai + "歩 pos 300,50 mes "" + ore + "地雷まで残り" + orejirai + " 歩" pos 100,100 mes "" + ore + "の進む歩数を入力してください" input x,100,20 mes "" + aite + "の進む歩数を入力してください" input y,100,20 button "GO!!",*jajiment if orejirai < 0 :goto*xmake if tekijirai < 0 :goto*ymake stop *jajiment turn = turn + 1 if x > y :goto*xhuyasi if y > x :goto*yhuyasi stop *xhuyasi orejirai = orejirai - y aitejirai = aitejirai + x goto*start stop *yhuyasi aitejirai = aitejirai - x orejirai = orejirai + y goto*start stop *xmake cls mes "" + ore + "は負けてしまった・・・" button "end",*owari stop *ymake cls mes "" + aite + "は負けてしまった・・・" button "end",*owari stop *owari end
ログイン制のサイトのように、進む歩数の部分を*みたいな記号で隠せませんか?だれか教えてください。