~金とカスタムメニュー~(質問掲示板)
投稿: 雷雲
投稿:2011/08/23 11:34:23(最新:2011/08/23 17:20:23)
自分、お金をカスタムメニューに表示させていつでも所持金を見れるようにしたいと思ったのですが・・・・
どこをどう変えるかさっぱりわかりません(泣)
誰か最低限で変えるところをおしえてください~
一応、カスタムメニューの例を貼り付けておきました。
自分のお金の名前は「ギル」で、短縮したのが「G」
宜しくお願いします~
setCustomParamMenuEnable(true)
setCustomParamMenuName("マイステータス")
setVariable("testParamValue", 1)
setVariable("testaParamValue", 28)
def onShowCustomParameter()
setCustomParamName(0, "test")
setCustomParamValue(0, getVariable("testParamValue"))
setCustomParamName(1, "testa")
setCustomParamValue(1, getVariable("testaParamValue"))
setCustomParamName(2, "delete")
setCustomParamValue(2, 30)
deleteCustomParam(2)
drawCustomParam()
imageHandle = showImagePosition(300, 32, 74)
speak("カスタムパラメーター長 ",
getCustomParamLength())
speak("getCustomParamMenuEnable = ",
getCustomParamMenuEnable(),
"\ngetCustomParamMenuName = ",
getCustomParamMenuName())
end
ツイート
どこをどう変えるかさっぱりわかりません(泣)
誰か最低限で変えるところをおしえてください~
一応、カスタムメニューの例を貼り付けておきました。
自分のお金の名前は「ギル」で、短縮したのが「G」
宜しくお願いします~
setCustomParamMenuEnable(true)
setCustomParamMenuName("マイステータス")
setVariable("testParamValue", 1)
setVariable("testaParamValue", 28)
def onShowCustomParameter()
setCustomParamName(0, "test")
setCustomParamValue(0, getVariable("testParamValue"))
setCustomParamName(1, "testa")
setCustomParamValue(1, getVariable("testaParamValue"))
setCustomParamName(2, "delete")
setCustomParamValue(2, 30)
deleteCustomParam(2)
drawCustomParam()
imageHandle = showImagePosition(300, 32, 74)
speak("カスタムパラメーター長 ",
getCustomParamLength())
speak("getCustomParamMenuEnable = ",
getCustomParamMenuEnable(),
"\ngetCustomParamMenuName = ",
getCustomParamMenuName())
end
コメントする
コメントするには、ログインする必要があります。
onShowCustomParameter()は定義するだけで、
後々自分からスクリプトで呼び出す事は無いという不思議な処理。
しかも、この中では画像表示どころか、何をやっても大丈夫みたい…?
つまり、setCustomParamなんとかを使わずに、
自分で用意した変数やら画像やらを駆使して、setTextとかspeakで自由に表現しちゃってOKて事なんですよ。
あるいはシューティングゲームを始めても可(爆)
個人的に思うのは、所持金がいくらかだけなので