diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/packet.py | 2 | ||||
-rw-r--r-- | net/packet_out.py | 24 | ||||
-rw-r--r-- | net/protocol.py | 24 |
3 files changed, 1 insertions, 49 deletions
diff --git a/net/packet.py b/net/packet.py index 52bdf71..16b4f79 100644 --- a/net/packet.py +++ b/net/packet.py @@ -1,5 +1,5 @@ -# The PacketBuffer class has been adapted from source originally released by gnufrk +"""The PacketBuffer class has been adapted from source originally released by gnufrk""" import struct diff --git a/net/packet_out.py b/net/packet_out.py index 79f9917..1d6e2d2 100644 --- a/net/packet_out.py +++ b/net/packet_out.py @@ -1,27 +1,3 @@ -""" -Copyright 2011, Dipesh Amin <yaypunkrock@gmail.com> -Copyright 2011, Stefan Beller <stefanbeller@googlemail.com> - -This file is part of tradey, a trading bot in The Mana World -see www.themanaworld.org - -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 the Free -Software Foundation; either version 2 of the License, or (at your option) -any later version. - -This program 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 -this program. If not, see <http://www.gnu.org/licenses/>. - -Additionally to the GPL, you are *strongly* encouraged to share any modifications -you do on these sources. -""" - from packet import * from protocol import * diff --git a/net/protocol.py b/net/protocol.py index 8b97542..4a4b74f 100644 --- a/net/protocol.py +++ b/net/protocol.py @@ -1,27 +1,3 @@ -""" -Copyright 2011, Dipesh Amin <yaypunkrock@gmail.com> -Copyright 2011, Stefan Beller <stefanbeller@googlemail.com> - -This file is part of tradey, a trading bot in The Mana World -see www.themanaworld.org - -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 the Free -Software Foundation; either version 2 of the License, or (at your option) -any later version. - -This program 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 -this program. If not, see <http://www.gnu.org/licenses/>. - -Additionally to the GPL, you are *strongly* encouraged to share any modifications -you do on these sources. -""" - SMSG_LOGIN_DATA = 0x0069 SMSG_CHAR_LOGIN = 0x006b SMSG_CHAR_MAP_INFO = 0x0071 |