• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

[JASS] Help Reverting this trigger

Status
Not open for further replies.
Thanks to Acehart and Samael88 i learned the math behind base10>base62. But i'm having a bit of trouble reverting it.

JASS:
private function Encode takes integer i returns string
    local string tmp
    local integer t
    local integer modulus
    if i+1 < base then
        return SubString(charMap, i-1, i)
    endif
    loop
        exitwhen i == 0
        set modulus = i - (i / base) * base
        if (modulus < 0) then
            set modulus = modulus + base
        endif
        set t = modulus
        set tmp = SubString(charMap, t-1, t) + tmp
        set i = i / base
    endloop
    return tmp
endfunction

theres the conversion :rolleyes: .+rep to helpers.
 
Status
Not open for further replies.
Top