blob: 802ad238adc3815f43961ba228587fb05857fbf6 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001// MorgenGrauen MUDlib
2//
3// living/put_and_get.h -- living put and get header
4//
5// $Id: put_and_get.h 6930 2008-08-09 09:20:16Z Zesstra $
6
7#ifndef __LIVING_PUT_AND_GET_H__
8#define __LIVING_PUT_AND_GET_H__
9
10// properties
11#define P_DROP_MSG "drop_message"
12#define P_PUT_MSG "put_message"
13#define P_PICK_MSG "pick_message"
14#define P_GIVE_MSG "give_message"
15#define P_SHOW_MSG "show_message"
16
17// If you don't want put_and_get send a message, set the property to
18#define NO_PNG_MSG -1
19
20// For user defined drop messages look for man P_DROP_MSG
21
22#endif // __LIVING_PUT_AND_GET_H__
23
24// prototypes
25#ifdef NEED_PROTOTYPES
26
27#ifndef __LIVING_PUT_AND_GET_H_PROTO__
28#define __LIVING_PUT_AND_GET_H_PROTO__
29
30object *find_obs(string str, int meth);
31
32void add_put_and_get_commands();
33
34#endif // __LIVING_PUT_AND_GET_H_PROTO__
35
36#endif // NEED_PROTOYPES
37