カスタムメニューについて(質問掲示板)
投稿: kinuka1101
投稿:2010/11/20 20:03:20(最新:2010/11/20 23:58:20)
カスタムメニューの内容に所持金を表示したいんですが、わかりません。
なので、カスタムメニューの内容を編集する方法を教えてください!
ツイート
なので、カスタムメニューの内容を編集する方法を教えてください!
コメントする
コメントするには、ログインする必要があります。
コメント一覧
shirosaboten(投稿日:2010/11/20 23:58,
履歴)
失敗しすぎました。コメント削除機能がほしいです
shirosaboten(投稿日:2010/11/20 23:57,
履歴)
失敗wもう一度
setVariable("お金", 1000) setVariable("呼び名", "勇者") setVariable("理想の女性", "姫") setCustomParamMenuEnable(true) setCustomParamMenuName("メニュー名") def onShowCustomParameter() setCustomParamName(0, "所持金") #項目名 setCustomParamValue(0, getVariable("お金")+"ゴールド") #項目の値 setCustomParamName(1, getVariable("呼び名") +"Lv") setCustomParamValue(1, getLevel()) setCustomParamName(2, "理想の女性") setCustomParamValue(2, getVariable("理想の女性")) setCustomParamName(3, "1億ゴールドまで あと") setCustomParamValue(3, 100000 - getVariable("お金") + "ゴールド") drawCustomParam() end
shirosaboten(投稿日:2010/11/20 23:55,
履歴)
こんな感じです。変数名は自由に決めてください
[ setVariable("お金", 1000) setVariable("呼び名", "勇者") setVariable("理想の女性", "姫") setCustomParamMenuEnable(true) setCustomParamMenuName("メニュー名") def onShowCustomParameter() setCustomParamName(0, "所持金") #項目名 setCustomParamValue(0, getVariable("お金")+"ゴールド") #項目の値 setCustomParamName(1, getVariable("呼び名") +"Lv") setCustomParamValue(1, getLevel()) setCustomParamName(2, "理想の女性") setCustomParamValue(2, getVariable("理想の女性")) setCustomParamName(3, "1億ゴールドまで あと") setCustomParamValue(3, 100000 - getVariable("お金") + "ゴールド") drawCustomParam() end ]
[ setVariable("お金", 1000) setVariable("呼び名", "勇者") setVariable("理想の女性", "姫") setCustomParamMenuEnable(true) setCustomParamMenuName("メニュー名") def onShowCustomParameter() setCustomParamName(0, "所持金") #項目名 setCustomParamValue(0, getVariable("お金")+"ゴールド") #項目の値 setCustomParamName(1, getVariable("呼び名") +"Lv") setCustomParamValue(1, getLevel()) setCustomParamName(2, "理想の女性") setCustomParamValue(2, getVariable("理想の女性")) setCustomParamName(3, "1億ゴールドまで あと") setCustomParamValue(3, 100000 - getVariable("お金") + "ゴールド") drawCustomParam() end ]