Advertisement
kolton

Untitled

Dec 16th, 2011
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. // /////////////////////////////////////////////////////////////////////////
  2. // /////////////////////////////////////////////////////////////////////////
  3. // Mode Flag To Mode List by TDW
  4. // /////////////////////////////////////////////////////////////////////////
  5. Player Mode Flags:
  6. 0x00000001 = 0 = Player death = Player death
  7. 0x00000002 = 1 = Player standing outside town = Player standing outside town
  8. 0x00000004 = 2 = Player walking = Player walking
  9. 0x00000008 = 3 = Player running = Player running
  10. 0x00000010 = 4 = Player getting hit = Player getting hit
  11. 0x00000020 = 5 = Player standing in town = Player standing in town
  12. 0x00000040 = 6 = Player walking in town = Player walking in town
  13. 0x00000080 = 7 = Player attacking 1 = Player attacking 1
  14. 0x00000100 = 8 = Player attacking 2 = Player attacking 2
  15. 0x00000200 = 9 = Player blocking = Player blocking
  16. 0x00000400 = 10 = Player casting spell skill = Player casting spell skill
  17. 0x00000800 = 11 = Player throwing an item = Player throwing an item
  18. 0x00001000 = 12 = Player kicking = Player kicking
  19. 0x00002000 = 13 = Player using skill 1 = Player using skill 1
  20. 0x00004000 = 14 = Player using skill 2 = Player using skill 2
  21. 0x00008000 = 15 = Player using skill 3 = Player using skill 3
  22. 0x00010000 = 16 = Player using skill 4 = Player using skill 4
  23. 0x00020000 = 17 = Player dead = Player dead
  24. 0x00040000 = 18 = Player sequence = Player sequence
  25. 0x00080000 = 19 = Player being knocked back = Player being knocked back
  26. NPC Mode Flags:
  27. 0x00000001 = 0 = NPC death = NPC death
  28. 0x00000002 = 1 = NPC standing still = NPC standing still
  29. 0x00000004 = 2 = NPC walking = NPC walking
  30. 0x00000008 = 3 = NPC getting hit = NPC getting hit
  31. 0x00000010 = 4 = NPC attacking 1 = NPC attacking 1
  32. 0x00000020 = 5 = NPC attacking 2 = NPC attacking 2
  33. 0x00000040 = 6 = NPC blocking = NPC blocking
  34. 0x00000080 = 7 = NPC casting spell skill = NPC casting spell skill
  35. 0x00000100 = 8 = NPC using skill 1 = NPC using skill 1
  36. 0x00000200 = 9 = NPC using skill 2 = NPC using skill 2
  37. 0x00000400 = 10 = NPC using skill 3 = NPC using skill 3
  38. 0x00000800 = 11 = NPC using skill 4 = NPC using skill 4
  39. 0x00001000 = 12 = NPC dead = NPC dead
  40. 0x00002000 = 13 = NPC being knocked back = NPC being knocked back
  41. 0x00004000 = 14 = NPC sequence = NPC sequence
  42. 0x00008000 = 15 = NPC running = NPC running
  43. Object Mode Flags:
  44. 0x00000001 = 0 = Object idle = Object idle
  45. 0x00000002 = 1 = Object operating = Object operating
  46. 0x00000004 = 2 = Object opened = Object opened
  47. 0x00000008 = 3 = Object special 1 = Object special 1
  48. 0x00000010 = 4 = Object special 2 = Object special 2
  49. 0x00000020 = 5 = Object special 3 = Object special 3
  50. 0x00000040 = 6 = Object special 4 = Object special 4
  51. 0x00000080 = 7 = Object special 5 = Object special 5
  52. Item Mode Flags:
  53. 0x00000001 = 0 = Item inven stash cube store = Item inven stash cube store
  54. 0x00000002 = 1 = Item equipped self or merc = Item equipped self or merc
  55. 0x00000004 = 2 = Item in belt = Item in belt
  56. 0x00000008 = 3 = Item on ground = Item on ground
  57. 0x00000010 = 4 = Item on cursor = Item on cursor
  58. 0x00000020 = 5 = Item being dropped = Item being dropped
  59. 0x00000040 = 6 = Item socketed in item = Item socketed in item
  60. // /////////////////////////////////////////////////////////////////////////
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement