Warcraft III resources & community, 2003–2006 · archived

IdStringToIdInteger

not rated
Submitted by PepparConversion0 downloads
Complementary to DebugIdInteger2IdString (located in scripts/cheats.j), this function converts an object id-string (like peon "hpea" and Archmage "Hamg") to an integer which can be used in several functions.

Requires: AsciiCharToInteger

Source

function IdStringToIdInteger takes string value returns integer
    return AsciiCharToInteger(SubString(value, 0, 1)) * 0x1000000 + AsciiCharToInteger(SubString(value, 1, 2)) * 0x10000 + AsciiCharToInteger(SubString(value, 2, 3)) * 0x100 + AsciiCharToInteger(SubString(value, 3, 4))
endfunction

Comments

0

No comments.