2連続スレたてすみません・・・どうしてもわからなかったことがあるんですが
前回のスレの回答(http://hsp.tv/play/pforum.php?mode=all&num=46299)
でPWボックスは作れたのですが、どっちが大きいか?を判定する時に「サポートされない機能(ry)」
と言われるんですが、理由はたぶんわかっています
きっと、PW化した「*」が数字を隠しちゃってるのかな・・・と思いました。
そこで、PW化した変数を読み込めないでしょうか?
汚いですがソースも。
title "地雷散歩"
*hensuu
ore = "プレイヤー1"
orejirai = 15
aite = "プレイヤー2"
aitejirai = 15
x = ""//俺
y = ""//相手
*タイトル
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
hInput = objinfo(stat, 2)
sendmsg hInput, $CC, '*'
mes "" + aite + "の進む歩数を入力してください"
input y,100,20
hInput = objinfo(stat, 2)
sendmsg hInput, $CC, '*'
button "GO!!",*jajiment
if orejirai < 0 :goto*xmake
if tekijirai < 0 :goto*ymake
stop
*jajiment
mes "プレイヤー1歩数 " + x
mes "プレイヤー2歩数 " + y
wait 50
goto*tunagi
stop
*tunagi
if x > y :goto*xhuyasi
if y > x :goto*yhuyasi
stop
*xhuyasi
orejirai = orejirai - y
aitejirai = aitejirai + x
wait 50
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