• 🏆 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!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Basics - Hashtable - 1

Status
Not open for further replies.
Level 2
Joined
Jul 12, 2018
Messages
17

Tasks

Code



Create a unit and save it into hashatble. ParentKey = 123456789 ; ChildKey = 0


Print the name of the saved unit using the loaded value from hashtable. (you can do it in same function)



JASS:
scope Part1n2 initializer main
    globals
        hashtable Hash = InitHashtable()
    endglobals
   
    private function main takes nothing returns nothing
        local real x = GetRectCenterX(bj_mapInitialPlayableArea)
        local real y = GetRectCenterY(bj_mapInitialPlayableArea)
       
        call SaveUnitHandle(Hash, 123456789, 0, CreateUnit(Player(0), 'hfoo', x, y, 0.00))
        call BJDebugMsg("There's a " + GetUnitName(LoadUnitHandle(Hash, 123456789, 0)) + " in this map!")
    endfunction
endscope

 

Attachments

  • [Crash Course] Basics - Hashtable - 1.w3m
    23.3 KB · Views: 70
Status
Not open for further replies.
Top