X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2FClientSocket.h;h=a9d9b4ba3508e5eb7c84348e68b4e582fed92622;hb=989cb8324ec8fe9caba511d89051552638dbc776;hp=bafc003390b79238793c52b088dc7b30a5fd2bca;hpb=37a4c120f59e3a65d401d23e9469958e4181fcf4;p=NeonServV5.git diff --git a/src/ClientSocket.h b/src/ClientSocket.h index bafc003..a9d9b4b 100644 --- a/src/ClientSocket.h +++ b/src/ClientSocket.h @@ -1,5 +1,5 @@ /* ClientSocket.h - NeonServ v5.3 - * Copyright (C) 2011 Philipp Kreil (pk910) + * Copyright (C) 2011-2012 Philipp Kreil (pk910) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -30,6 +30,10 @@ #define SOCKET_FLAG_QUITTED 0x100 #define SOCKET_FLAG_FAST_JUMP 0x200 +#define SOCKET_HAVE_BOTCLASSVALUE1 0x10000000 +#define SOCKET_HAVE_BOTCLASSVALUE2 0x20000000 +#define SOCKET_HAVE_BOTCLASSVALUE3 0x40000000 + #define BUF_SIZ 512 struct UserNode; @@ -65,6 +69,10 @@ struct ClientSocket { int botid : 16; int clientid : 16; + void *botclassvalue1; + void *botclassvalue2; + void *botclassvalue3; + struct ClientSocket *next; };