Vote for Our Mud on TMC!











help > hooks > post steal item
---

Hook Name         : post_steal_item

Called From       : /bin/skills/_steal.c
                    /bin/skills/_rob.c
                    /bin/skills/_mug.c
                    /bin/skills/_sleight.c
                    /bin/songs/_entice.c
                    
Resolution Method : HOOK_OR

Sample Header     :

     int my_post_steal_item(string tag, object ob, object item, object stealer,
                           object victim)

Arguments :

tag     - "post_steal_item"
ob      - ???
item    - The item being stolen.
stealer - The living object stealing the item.
victim  - The living object holding the item.

Return Value : None

Description :

When one living thing attempts to steal an item from another living thing
(whether npc's or players), this hook is called.  The call is made after
the item is moved.

See also:

pre_steal_item, post_give_item, pre_give_item

---

Last modified : 2-23-03, Demonic