Skip to content

Instantly share code, notes, and snippets.

@haggen
Created September 8, 2019 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haggen/19c122fb92acbe8ed42e9d4c7fe8cefa to your computer and use it in GitHub Desktop.
Save haggen/19c122fb92acbe8ed42e9d4c7fe8cefa to your computer and use it in GitHub Desktop.
Questie race/class bitmask
var warror = 0000000000001
var paladin = 0b00000000010
var hunter = 0b00000000100
var rogue = 0b00000001000
var priest = 0b00000010000
var shaman = 0b00001000000
var mage = 0b00010000000
var warlock = 0b00100000000
var druid = 0b10000000000
var human = 0000000000001
var orc = 0b00000000010
var dwarf = 0b00000000100
var nelf = 0b00000001000
var undead = 0b00000010000
var tauren = 0b00000100000
var gnome = 0b00001000000
var troll = 0b00010000000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment