コメント

このコメントは、【Wiki】スクリプト/配列を使わない経験値制Lvアップへのコメントです。

コメントの内容

Material 154390 2 mini  創 (投稿日:2013/04/06 16:04/06/13)
setVariable("LVアップまでの経験値", createArray())
setVariable("総合経験値", createArray())

getVariable("LVアップまでの経験値")[0] = 10
getVariable("総合経験値")[0] = 0

getVariable("LVアップまでの経験値")[1] = 18
getVariable("総合経験値")[1] = 0

getVariable("LVアップまでの経験値")[2] = 12
getVariable("総合経験値")[2] = 0

getVariable("LVアップまでの経験値")[3] = 15
getVariable("総合経験値")[3] = 0

def exp(a,b)
  speak(getVariable("ゲット経験値") , "経験値獲得した!")
  setVariable("総合経験値" , getVariable("総合経験値") + getVariable("ゲット経験値"))
  while getVariable("総合経験値") > getVariable("LVアップまでの経験値")
    speak("LVアップ!")
    levelUpPartyMember(a)
    speak("LV." , getLevelPartyMember(a) , "になった\n能力が上がった!")
        setVariable("総合経験値" ,
        getVariable("LVアップまでの経験値") - getVariable("LVアップまでの経験値"))
    setVariable("LVアップまでの経験値" ,
    getVariable("LVアップまでの経験値") + getVariable("LVアップまでの経験値")[b])
  end
end

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

Material 154390 2 mini  創 (投稿日:2013/04/06 16:04/06/13)
setVariable("LVアップまでの経験値", createArray())
setVariable("総合経験値", createArray())

getVariable("LVアップまでの経験値")[0] = 10
getVariable("総合経験値")[0] = 0

getVariable("LVアップまでの経験値")[1] = 18
getVariable("総合経験値")[1] = 0

getVariable("LVアップまでの経験値")[2] = 12
getVariable("総合経験値")[2] = 0

getVariable("LVアップまでの経験値")[3] = 15
getVariable("総合経験値")[3] = 0

def exp(a,b)
  speak(getVariable("ゲット経験値") , "経験値獲得した!")
  setVariable("総合経験値" , getVariable("総合経験値") + getVariable("ゲット経験値"))
  while getVariable("総合経験値") > getVariable("LVアップまでの経験値")
    speak("LVアップ!")
    levelUpPartyMember(a)
    speak("LV." , getLevelPartyMember(a) , "になった\n能力が上がった!")
        setVariable("総合経験値" ,
        getVariable("LVアップまでの経験値") - getVariable("LVアップまでの経験値"))
    setVariable("LVアップまでの経験値" ,
    getVariable("LVアップまでの経験値") + getVariable("LVアップまでの経験値")[b])
  end
end