~カスタムメニューni(質問掲示板)
投稿: 雷雲
投稿:2011/11/09 15:38:09(最新:2011/11/11 18:01:11)
カスタムメニューに、所持金(名前はギル セント)
ギルは所持金で、セントは変数の名前です。
で、カスタムメニューにギルは表示出来たのですが
セントはできませんでした。
名前は出ても、数字がでているハズのところにnullと書いていました
自分はこう開始スクリプトに書いていました。
setMoneyName("ギル"); setDenomination("G")
addMoney(300)
setVariable("センツ", 0)
setCustomParamMenuEnable(true)
setCustomParamMenuName("ギル センツ")
def onShowCustomParameter()
setCustomParamName(5, "ギル")
setCustomParamValue(5, getMoney()+" G")
setCustomParamName(6, "センツ")
setCustomParamValue(5, getVariable("センツ"))
end #onShowCustomParameter()終
何かおかしいところがあるのでしょうか・・・
ツイート
ギルは所持金で、セントは変数の名前です。
で、カスタムメニューにギルは表示出来たのですが
セントはできませんでした。
名前は出ても、数字がでているハズのところにnullと書いていました
自分はこう開始スクリプトに書いていました。
setMoneyName("ギル"); setDenomination("G")
addMoney(300)
setVariable("センツ", 0)
setCustomParamMenuEnable(true)
setCustomParamMenuName("ギル センツ")
def onShowCustomParameter()
setCustomParamName(5, "ギル")
setCustomParamValue(5, getMoney()+" G")
setCustomParamName(6, "センツ")
setCustomParamValue(5, getVariable("センツ"))
end #onShowCustomParameter()終
何かおかしいところがあるのでしょうか・・・
コメントする
コメントするには、ログインする必要があります。
コメント一覧
wikiのスクリプト/カスタムメニューに書いてあった奴をそのままコピペしてみたら、同じようにnullが出てたぜ(泣)
書いてあったやつ↓
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
ダレカタスケテ
書いてあったやつ↓
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
ダレカタスケテ
真っ黒にはなっていませんw