Versiones comparadas

Clave

  • Se ha añadido esta línea.
  • Se ha eliminado esta línea.
  • El formato se ha cambiado.
Comentarios: Typo fix in type_flags

Back-to:World

...

FlagNameComments
10x0000 0001CREATURE_TYPEFLAGS_TAMEABLEMakes the mob tameable (must also be a beast and have family set)
20x0000 0002CREATURE_TYPEFLAGS_GHOSTCreature are also visible for not alive player. Allow gossip interaction if npcflag allow?
40x0000 0004CREATURE_TYPEFLAGS_BOSSChanges creature's visible level to "??" in the creature's portrait - Inmune Immune to Knockback.
80x0000 0008CREATURE_TYPEFLAGS_DO_NOT_PLAY_WOUND_PARRY_ANIMATIONDoes not play wound animation on parry.
160x0000 0010CREATURE_TYPEFLAGS_HIDE_FACTION_TOOLTIPHides tooltip faction.
320x0000 0020CREATURE_TYPEFLAGS_UNK6
640x0000 0040CREATURE_TYPEFLAGS_SPELL_ATTACKABLESpell attackable.
1280x0000 0080CREATURE_TYPEFLAGS_DEAD_INTERACTPlayer can interact with the creature if its dead (not player dead)
2560x0000 0100CREATURE_TYPEFLAGS_HERBLOOTMakes mob herbable
5120x0000 0200CREATURE_TYPEFLAGS_MININGLOOTMakes mob minable
10240x0000 0400CREATURE_TYPEFLAGS_DONT_LOG_DEATH Does not combatlog death.
20480x0000 0800CREATURE_TYPEFLAGS_MOUNTED_COMBATCreature can remain mounted when entering combat
40960x0000 1000CREATURE_TYPEFLAGS_AID_PLAYERSCan aid any player in combat if in range?
81920x0000 2000CREATURE_TYPEFLAGS_IS_PET_BAR_USEDIs using pet bar.
163840x0000 4000CREATURE_TYPEFLAGS_MASK_UID
327680x0000 8000CREATURE_TYPEFLAGS_ENGINEERLOOTMakes mob lootable by engineer
655360x0001 0000CREATURE_TYPE_FLAG_EXOTIC_PETTamable as an exotic pet. Normal tamable flag must also be set.
1310720x0002 0000CREATURE_TYPEFLAGS_USE_DEFAULT_COLLISION_BOX Collision related. (always using default collision box?)
2621440x0004 0000CREATURE_TYPEFLAGS_IS_SIEGE_WEAPONIs siege weapon.
5242880x0008 0000CREATURE_TYPEFLAGS_PROJECTILE_COLLISION

Projectiles can collide with this creature - interacts with TARGET_DEST_TRAJ

10485760x0010 0000CREATURE_TYPEFLAGS_HIDE_NAMEPLATEHides nameplate.
20971520x0020 0000CREATURE_TYPEFLAGS_DO_NOT_PLAY_MOUNTED_ANIMATIONSDoes not play mounted animations.
41943040x0040 0000CREATURE_TYPEFLAGS_IS_LINK_ALL
83886080x0080 0000CREATURE_TYPEFLAGS_INTERACT_ONLY_WITH_CREATOR

Can only interact with its creator.

1342177280x0800 0000CREATURE_TYPEFLAGS_FORCE_GOSSIPAllows the creature to display a single gossip option.

...

FlagType
1CREATURE_FLAG_EXTRA_INSTANCE_BIND0x00000001creature kill binds instance to killer and killer's group
2CREATURE_FLAG_EXTRA_CIVILIAN0x00000002creature does not aggro (ignore faction/reputation hostility)
4CREATURE_FLAG_EXTRA_NO_PARRY0x00000004creature does not parry
8CREATURE_FLAG_EXTRA_NO_PARRY_HASTEN0x00000008creature does not counter-attack at parry
16CREATURE_FLAG_EXTRA_NO_BLOCK0x00000010creature does not block
32CREATURE_FLAG_EXTRA_NO_CRUSH0x00000020creature does not do crush-attacks
64CREATURE_FLAG_EXTRA_NO_XP_AT_KILL0x00000040creature kill does not give XP
128CREATURE_FLAG_EXTRA_TRIGGER0x00000080creature is trigger-NPC (invisible to players only)
256CREATURE_FLAG_EXTRA_NO_TAUNT0x00000100creature is immune to taunt-auras and "attack me"-effects
512CREATURE_FLAG_EXTRA_NO_MOVE_FLAGS_UPDATE0x00000200creature won't update movement flags
1024CREATURE_FLAG_EXTRA_GHOST_VISIBILITY 0x00000400creature will be only visible for dead players
16384CREATURE_FLAG_EXTRA_WORLDEVENT0x00004000custom flag for world events (left room for merging)
32768CREATURE_FLAG_EXTRA_GUARD0x00008000creature is a guard (Will ignore feign death and vanish)
131072CREATURE_FLAG_EXTRA_NO_CRIT0x00020000creature does not do critical strikes
262144CREATURE_FLAG_EXTRA_NO_SKILLGAIN0x00040000creature won't increase weapon skills
524288CREATURE_FLAG_EXTRA_TAUNT_DIMINISH0x00080000creature taunt is subject to diminishing returns
1048576CREATURE_FLAG_EXTRA_ALL_DIMINISH0x00100000Creature is subject to all diminishing returns
2097152CREATURE_FLAG_EXTRA_NO_PLAYER_DAMAGE_REQ0x00200000

NPCs can help with killing this creature and player will still be credited if he tags the creature

268435456CREATURE_FLAG_EXTRA_DUNGEON_BOSS0x10000000

Creature is a dungeon boss. This flag is generically set by core during runtime. Setting this in database will give you startup error.

536870912CREATURE_FLAG_EXTRA_IGNORE_PATHFINDING0x20000000Creature will ignore pathfinding. This is like disabling Mmaps, only for one creature.
1073741824CREATURE_FLAG_EXTRA_IMMUNITY_KNOCKBACK0x40000000creature will immune all knockback effects

...