コメント
このコメントは、【トピック】カスタムメニューについてへのコメントです。コメントの内容
コメントの内容(一番最初の投稿)
shirosaboten(投稿日:2010/11/20 23:11/20/10)
こんな感じです。変数名は自由に決めてください
[ 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 ]
[ 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 ]