summaryrefslogtreecommitdiffstats
path: root/src/common/transaction.h
blob: 51c373ebd4f74a7a8e1663ba24e7e53f3e6d9c0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 *  The Mana Server
 *  Copyright (C) 2009-2010  The Mana World Development Team
 *
 *  This file is part of The Mana Server.
 *
 *  The Mana Server is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  any later version.
 *
 *  The Mana Server is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with The Mana Server.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef TRANSACTION_H
#define TRANSACTION_H

struct Transaction
{
    unsigned mAction;
    unsigned mCharacterId;
    std::string mMessage;
};

enum
{
    TRANS_CHAR_CREATE = 1,
    TRANS_CHAR_SELECTED,
    TRANS_CHAR_DELETED,
    TRANS_MSG_PUBLIC,
    TRANS_MSG_ANNOUNCE,
    TRANS_MSG_PRIVATE,
    TRANS_CHANNEL_JOIN,
    TRANS_CHANNEL_KICK,
    TRANS_CHANNEL_MODE,
    TRANS_CHANNEL_QUIT,
    TRANS_CHANNEL_LIST,
    TRANS_CHANNEL_USERLIST,
    TRANS_CHANNEL_TOPIC,
    TRANS_CMD_BAN,
    TRANS_CMD_DROP,
    TRANS_CMD_ITEM,
    TRANS_CMD_MONEY,
    TRANS_CMD_SETGROUP,
    TRANS_CMD_SPAWN,
    TRANS_CMD_WARP,
    TRANS_ITEM_PICKUP,
    TRANS_ITEM_USED,
    TRANS_ITEM_DROP,
    TRANS_ITEM_MOVE,
    TRANS_ATTACK_TARGET,
    TRANS_ACTION_CHANGE,
    TRANS_TRADE_REQUEST,
    TRANS_TRADE_END,
    TRANS_TRADE_MONEY,
    TRANS_TRADE_ITEM,
    TRANS_ATTR_INCREASE,
    TRANS_ATTR_DECREASE,
    TRANS_CMD_MUTE,
    TRANS_CMD_EXP,
    TRANS_CMD_INVISIBLE,
    TRANS_CMD_COMBAT,
    TRANS_CMD_ANNOUNCE,
    TRANS_CMD_LOCALANNOUNCE,
    TRANS_CMD_KILL,
    TRANS_CMD_FX,
    TRANS_CMD_LOG,
    TRANS_CMD_KILLMONSTERS,
    TRANS_CMD_GOTO,
    TRANS_CMD_GONEXT,
    TRANS_CMD_GOPREV,
    TRANS_CMD_IPBAN,
    TRANS_CMD_WIPE_ITEMS,
    TRANS_CMD_WIPE_LEVEL,
    TRANS_CMD_SHUTDOWN_THIS,
    TRANS_CMD_SHUTDOWN_ALL,
    TRANS_CMD_RESTART_THIS,
    TRANS_CMD_RESTART_ALL,
    TRANS_CMD_ATTRIBUTE,
    TRANS_CMD_KICK
};

#endif