• 0

    posted a message on [Bug] Copy Pasting in Data Editor

    -Combined structures cannot be copy-pasted

    -Error in copy-pasting a command card that is not displayed in a combined structure; this results in an erroneous command card with a missing chunk of data (would make rapid unit deployment MUCH easier)

    -Occasional fatal error when copy-pasting data fields

    Posted in: Galaxy Editor Bugs and Feedback
  • 0

    posted a message on Hashtables, where are you my precious?

    A hash table uses a hashing function to store key/value pairs where the key is unique. They are rather useful in programming since you can rapidly store things by an attribute instead of index.

    Example where keys are names and values are ID numbers

    hash h

    h{"John"} = 2836716

    h{"Bob"} = 2918222

    print( "The ID of Bob is:" + h["Bob"] )

    Can be implemented in pretty much any language as long as you have a good hash function. This includes SC2.

    Posted in: Miscellaneous Development
  • To post a comment, please or register a new account.