zep715 / rbylua

Lua scripts for shiny hunting in RBY games
21 stars 13 forks source link

Fix Spc/Spe separation in output (and small other things) #1

Closed LegoFigure11 closed 7 years ago

LegoFigure11 commented 7 years ago
    print(string.format("atk: %d", math.floor(atkdef/16)))
    print(string.format("def: %d", atkdef%16))
    print(string.format("spe: %d", math.floor(spespc/16)))
    print(string.format("spe: %d", spespc%16))

The main reason for this pull is to fix this typo which means that "Spe" is displayed twice in the output. Other things include some capitalisations and improved consistency between scripts.