Hello, i've been using scriptcard for some time and i'm loving it, but today i'm trying to write this script but i can't make it work. It's actually pretty simple: it should roll a 1d100 for % and if is above a certain threshold it should jump to a specific point (above 70 to base loot, above 90 to better loot, above 95 to best loot, and above 100 to top loot) inside each loot point (base, better, best, top) there is another 1d100 to decide if it's going to be an armour or a weapon, if it's an armour it jumps to armour, and if is a weapon it jumps to weapon. but it doesn't jump anywhere, it just stops at the "Gil point" ignoring the -gt 70, -gt 90, -gt 95 and -gt 100. what am i missing? all my other script are written kinda the same and work great. ! script {{ --# emoteState | no --+|[ img ] http : //<a href="http://www.artofmtg.com/wp-content/uploads/2021/07/Treasure-Chest-Adventures-in-the-Forgotten-Realms-MtG-Art.jpg[/img]" rel="nofollow">www.artofmtg.com/wp-content/uploads/2021/07/Treasure-Chest-Adventures-in-the-Forgotten-Realms-MtG-Art.jpg[/img]</a> -- Lsettings | Loot --# sourceToken |@{ selected | token_id } --# title |@{ selected | token_name } --# leftsub | --# rightsub | --& Ogg |@{ selected | token_name } --& OggType |@{ selected | bar1 } --+|[ c ] [ rbutton ] Alai :: ALAI [/ rbutton ] [ rbutton ] Anoun :: ANOUN [/ rbutton ] [ rbutton ] Artemis :: ARTEMIS [/ rbutton ] [ rbutton ] Evol :: EVOL [/ rbutton ] [/ c ] -- X | --: ALAI | --= LckRoll |1 d100 + @{ Alai | totale_fortuna } --= ArmOrWep |1 d100 --= ArmFisOrMag |1 d100 --+ Loot Roll |[ $LckRoll ] --?[ $LckRoll . Total ] - gt 70 | BaseEquip --?[ $LckRoll . Total ] - gt 90 | BestEquip --?[ $LckRoll . Total ] - gt 95 | BetterEquip --?[ $LckRoll . Total ] - gt 100 | TopEquip --= GilRoll |1 d20 + 5 --+| Gil : [ $GilRoll ] --^ Final | —-: BaseEquip | --+| ProvaBase —-> EquipStat | —-?[ $ArmOrWep . Base ] - gt 50 | ArmBase —-+ WepBase |” nome arma ” [ $WepStat . Raw ] --^ Final | —-: BestEquip --+| ProvaBest —-> EquipStat | —-?[ $ArmOrWep . Base ] - gt 50 | ArmBest —-+ WepBase |” nome arma ” [ $WepStat . Raw ] --^ Final | —-: BetterEquip | --+| ProvaBetter —-> EquipStat | —-?[ $ArmOrWep . Base ] - gt 50 | ArmBetter —-+ WepBase |” nome arma ” [ $WepStat . Raw ] --^ Final | —-: TopEquip | --+| ProvaTop —-> EquipStat | —-?[ $ArmOrWep . Base ] - gt 50 | ArmTop —-+ WepBase |” nome arma ” [ $WepStat . Raw ] --^ Final | —-: ArmBase | —-?[ $ArmFisOrMag . Base ] - gt 50 | ArmMagBase —-+ ArmFis |” nome Armatura " [$ArmFisStat ] --^ Final | —-: ArmMagBase | —-+ ArmMag |” nome Armatura Magica " [$ArmFisStat ] --^ Final | —-: ArmBetter | --= ArmBetterStat | [ $ArmFisStat ] + 1 —-?[ $ArmFisOrMag . Base ] - gt 50 | ArmMagBetter —-+ ArmFis |” nome Armatura " [$ArmBetterStat ] --^ Final | —-: ArmMagBetter | —-+ ArmMag |” nome Armatura Magica " [$ArmBetterStat ] --^ Final | —-: ArmBest | --= ArmBestStat | [ $ArmFisStat ] + 2 —-?[ $ArmFisOrMag . Base ] - gt 50 | ArmMagBest —-+ ArmFis |” nome Armatura " [$ArmBestStat ] --^ Final | —-: ArmMagBest | —-+ ArmMag |” nome Armatura Magica " [$ArmBestStat ] --^ Final | —-: ArmTop | --= ArmTopStat | [ $ArmFisStat ] + 3 —-?[ $ArmFisOrMag . Base ] - gt 50 | ArmMagTop —-+ ArmFis |” nome Armatura " [$ArmTopStat ] --^ Final | —-: ArmMagTop | —-+ ArmMag |” nome Armatura Magica " [$ArmTopStat ] --: Final | --: EquipStat | --= WepStat |@{ Alai | noun1 } —-= ArmFisStat |( @{ Alai | def1 } + @{ Alai | def2 } + @{ Alai | def3 } + @{ Alai | def4 } + @{ Alai | def5 } ) / 5 { CEIL } --<| }} Thank you very much!