| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace OpenCards.Core.Protocol
- {
- public static class Constants
- {
- public const int CONNECT_START = 0x32000;
- public const int SESSION_START = 0x33000;
- public const int LOGIC_COMMON_START = 0x35000;
- public const int LOGIC_PACKAGE_START = 0x35100;
- public const int LOGIC_FIGHT_START = 0x35200;
- public const int LOGIC_ROLE_START = 0x35300;
- public const int LOGIC_HERO_START = 0x35310;
- public const int LOGIC_ACTIVITY_START = 0x35400;
- public const int LOGIC_TASK_START = 0x35500;
- public const int LOGIC_TOWER_START = 0x35600;
- public const int LOGIC_FORMATION_START = 0x35700;
- public const int LOGIC_SHOP_START = 0x35800;
- public const int LOGIC_GUILD_START = 0x35900;
- public const int LOGIC_LLLUSTRATED_BOOK_START = 0x36000;
- public const int LOGIC_HISTORICAL_ARCHIVES_START = 0x36100;
- public const int LOGIC_EQUIP_START = 0x36200;
- public const int LOGIC_COPY_START = 0x36300;
- public const int LOGIC_ARTIFACT_START = 0x36400;
- public const int LOGIC_PAY_START = 0x36500;
- public const int LOGIC_SUMMON_START = 0x37000;
- public const int LOGIC_CRYSTAL_START = 0x37100;
- public const int LOGIC_GUILD_HUNTER_START = 0x37200;
- public const int LOGIC_MAIL_START = 0x37300;
- public const int LOGIC_BOUNTY_START = 0x37400;
- public const int LOGIC_LIFE_TREE_START = 0x37500;
- public const int LOGIC_ATLANTIS_ACTIVITY__START = 0x37600;
- public const int LOGIC_GUILD_SECRETCAVE_START = 0x37700;
- public const int LOGIC_RED_DOT_START = 0x37800;
- public const int LOGIC_MAZE_START = 0x37900;
- public const int LOGIC_FRIEND_START = 0x38000;
- public const int LOGIC_TIMEREWARD_START = 0x38100;
- public const int LOGIC_WORLD_MAP_START = 0x38200;
- public const int LOGIC_CHAT_START = 0x38300;
- public const int LOGIC_HOT_START = 0x38400;
- public const int LOGIC_LOGIN_POPUP = 0x38500;
- public const int LOGIC_EXCHANGE_INFO = 0x38600;
- public const int LOGIC_DUNGEON_INFO = 0x38700;
- public const int LOGIC_HALLOWS_INFO = 0x38800;
- public const int LOGIC_ARENA_START = 0x39000;
- public const int LOGIC_MARKET_START = 0x40000;
- public const int LOGIC_ADS_START = 0x40100;
- public const int LOGIC_TIME_LIMITED_ACTIVITY_START = 0x40200;
- //xp
- public const int LOGIC_HONOUR_RANK = 0x50000;
- public const int LOGIC_ROLE_LEVEL = 0x50100;
- public const int LOGIC_CHECK_ROLE_INFO = 0x50200;
- public const int LOGIC_CDK = 0x50300;
- public const int LOGIC_ROLE_INFOMATION = 0x50400;
- public const int LOGIC_LOGIN_SIGN = 0x50500;
- public const int LOGIC_NEWER_GUIDE = 0x50600;
- public const int LOGIC_VOID_GUEST_START = 0x50700;
- public const int LOGIC_HERO_WAY_START = 0x50800;
- public const int LOGIC_STAGE_RANK_START = 0x50900;
- public const int LOGIC_FEEDBACK_START = 0x51000;
- public const int LOGIC_WISH_SUMMON_ACTIVITY_START = 0x52000;
- public const int LOGIC_LACK_OF_RESOURCE_STRAT = 0x53000;
- public const int LOGIC_NEW_GUILD_BOSS = 0x54000;
- public const int LOGIC_ACCUMULATIVE_LOGIN_DAYS = 0x55000;
- public const int LOGIC_NEWSERVER_ACTIVITY_START = 0x56000;
-
- }
- public class MODULESTATUS
- {
- public const int STATUS_CLOSE = 0;
- public const int STATUS_OPEN = 1;
- }
- }
|