コメント

このコメントは、【トピック】カスタムメニューについてへのコメントです。

コメントの内容

      mini shirosaboten(投稿日:2010/11/20 23:11/20/10)
失敗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 

コメントの内容(一番最初の投稿)

      mini shirosaboten(投稿日:2010/11/20 23:11/20/10)
失敗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