Jump to content

ThePooter

Inactive Member
  • Posts

    60
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by ThePooter

  1. mob proto please I can give to you .txt if you want. NO TXT SQL PLEASE
  2. Hi Metin2 dev Official New Pets Mob Proto Xml-Sql Please Give Me image
  3. Hi Metin2 Help me im sorry where error ? thank you
  4. I'm sorry I did not understand Can you give examples ?
  5. 2.) Search for this: "int iDisableHotBackup;" and put under this: // NOTXT_STARTUP_BEGIN int iNoTXT; if (CConfig::instance().GetValue("NO_TXT", &iNoTXT)) { if (iNoTXT) { sys_log(0, "CONFIG: NO_TXT"); g_noTXT = true; } } // NOTXT_STARTUP_END 3.) Save&Close. Now open "db/src/ClientManager.h" and replace: bool InitializeMobTable(); bool InitializeItemTable(); With: // NOTXT_STARTUP_BEGIN bool InitializeMobTableTXT(); bool InitializeItemTableTXT(); bool InitializeMobTableSQL(); bool InitializeItemTableSQL(); // NOTXT_STARTUP_END 4.) Save&Close. Then open "db/src/ClientManagerBoot.cpp" and put this the top of the file: // NOTXT_STARTUP_BEGIN extern int g_noTXT; // NOTXT_STARTUP_END 5.) Replace this: bool CClientManager::InitializeMobTable() With this: bool CClientManager::InitializeMobTableTXT() And repeat it with ItemProto(::InitializeItemTable) 6.) Search for this: "bool CClientManager::InitializeTables()" and replace this: if (!InitializeMobTable()) { sys_err("InitializeMobTable FAILED"); return false; } if (!MirrorMobTableIntoDB()) { sys_err("MirrorMobTableIntoDB FAILED"); return false; } if (!InitializeItemTable()) { sys_err("InitializeItemTable FAILED"); return false; } if (!MirrorItemTableIntoDB()) { sys_err("MirrorItemTableIntoDB FAILED"); return false; } With this: // NOTXT_STARTUP_BEGIN if (g_noTXT) // item and mob proto { if (!InitializeMobTableSQL()) { sys_err("InitializeMobTableSQL FAILED"); return false; } if (!InitializeItemTableSQL()) { sys_err("InitializeItemTableSQL FAILED"); return false; } } else { if (!InitializeMobTableTXT()) { sys_err("InitializeMobTableTXT FAILED"); return false; } if (!MirrorMobTableIntoDB()) { sys_err("MirrorMobTableIntoDB FAILED"); return false; } if (!InitializeItemTableTXT()) { sys_err("InitializeItemTableTXT FAILED"); return false; } if (!MirrorItemTableIntoDB()) { sys_err("MirrorItemTableIntoDB FAILED"); return false; } } // NOTXT_STARTUP_END 7.) And last put these functions into the file: 7+1.) New item_proto_table.sql: DROP TABLE IF EXISTS `item_proto`; CREATE TABLE `item_proto` ( `vnum` int(11) unsigned NOT NULL DEFAULT '0', `vnum_range` int(11) unsigned NOT NULL DEFAULT '0', `name` varbinary(200) NOT NULL DEFAULT 'Noname ', `locale_name` varbinary(24) NOT NULL DEFAULT 'Noname ', `type` tinyint(2) NOT NULL DEFAULT '0', `subtype` tinyint(2) NOT NULL DEFAULT '0', `weight` tinyint(3) DEFAULT '0', `size` tinyint(3) DEFAULT '0', `antiflag` int(11) DEFAULT '0', `flag` int(11) DEFAULT '0', `wearflag` int(11) DEFAULT '0', `immuneflag` set('PARA','CURSE','STUN','SLEEP','SLOW','POISON','TERROR') CHARACTER SET big5 NOT NULL DEFAULT '', `gold` int(11) DEFAULT '0', `shop_buy_price` int(10) unsigned NOT NULL DEFAULT '0', `refined_vnum` int(10) unsigned NOT NULL DEFAULT '0', `refine_set` smallint(11) unsigned NOT NULL DEFAULT '0', `refine_set2` smallint(5) unsigned NOT NULL DEFAULT '0', `magic_pct` tinyint(4) NOT NULL DEFAULT '0', `limittype0` tinyint(4) DEFAULT '0', `limitvalue0` int(11) DEFAULT '0', `limittype1` tinyint(4) DEFAULT '0', `limitvalue1` int(11) DEFAULT '0', `applytype0` tinyint(4) DEFAULT '0', `applyvalue0` int(11) DEFAULT '0', `applytype1` tinyint(4) DEFAULT '0', `applyvalue1` int(11) DEFAULT '0', `applytype2` tinyint(4) DEFAULT '0', `applyvalue2` int(11) DEFAULT '0', `value0` int(11) DEFAULT '0', `value1` int(11) DEFAULT '0', `value2` int(11) DEFAULT '0', `value3` int(11) DEFAULT '0', `value4` int(11) DEFAULT '0', `value5` int(11) DEFAULT '0', `socket0` tinyint(4) DEFAULT '-1', `socket1` tinyint(4) DEFAULT '-1', `socket2` tinyint(4) DEFAULT '-1', `socket3` tinyint(4) DEFAULT '-1', `socket4` tinyint(4) DEFAULT '-1', `socket5` tinyint(4) DEFAULT '-1', `specular` tinyint(4) NOT NULL DEFAULT '0', `socket_pct` tinyint(4) NOT NULL DEFAULT '0', `addon_type` smallint(6) NOT NULL DEFAULT '0', PRIMARY KEY (`vnum`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_bin; But you can modify your item_proto with "Design table" option in navicat. conf.txt: NO_TXT = 1 0: TXT 1: SQL Special thanks to: - iMer, Zonni for the snippets ^^ Changelog: - "0" If you find any errors or problems just post a message into this thread. I tested on win. I hope you like it. With regards, P3NG3R. Hi P3NG3R Ready ClientManagerBoot.cpp Give me ?
  6. where to insert them ? db/src/ClientManagerBoot.cpp Hi Error Help me [spoiler]compile Config.cpp compile NetBase.cpp compile Peer.cpp compile PeerBase.cpp compile Main.cpp compile Lock.cpp compile DBManager.cpp compile Cache.cpp compile LoginData.cpp compile ClientManager.cpp compile ClientManagerPlayer.cpp compile ClientManagerLogin.cpp compile ClientManagerBoot.cpp In file included from ClientManager.cpp:6: ../../common/VnumHelper.h:59:32: warning: no newline at end of file Cache.cpp:365:7: warning: no newline at end of file compile ClientManagerParty.cpp compile ClientManagerGuild.cpp compile GuildManager.cpp compile HB.cpp compile PrivManager.cpp compile MoneyLog.cpp compile ItemAwardManager.cpp compile ClientManagerEventFlag.cpp compile Marriage.cpp compile Monarch.cpp compile BlockCountry.cpp compile ItemIDRangeManager.cpp In file included from ClientManagerBoot.cpp:8: ProtoReader.h:36:7: warning: no newline at end of file ItemAwardManager.cpp:129:2: warning: no newline at end of file compile ClientManagerHorseName.cpp ClientManagerPlayer.cpp: In member function 'char* CClientManager::GetCommand(ch ar*)': ClientManagerPlayer.cpp:433: warning: address of local variable 'command' return ed compile version.cpp compile AuctionManager.cpp compile ProtoReader.cpp compile CsvReader.cpp AuctionManager.cpp:719:7: warning: no newline at end of file In file included from ProtoReader.cpp:4: ProtoReader.h:36:7: warning: no newline at end of file ClientManagerBoot.cpp:19: error: expected unqualified-id before 'if' CsvReader.cpp: In member function 'const char* cCsvAlias::operator[](size_t) con st': CsvReader.cpp:72: warning: left-hand operand of comma has no effect CsvReader.cpp:72: warning: right-hand operand of comma has no effect CsvReader.cpp: In member function 'size_t cCsvAlias::operator[](const char*) con st': CsvReader.cpp:90: warning: left-hand operand of comma has no effect CsvReader.cpp:90: warning: right-hand operand of comma has no effect gmake: *** [.obj/ClientManagerBoot.o] Error 1 gmake: *** Waiting for unfinished jobs.... ProtoReader.cpp: In function 'std::string* StringSplit(std::string, std::string) ': ProtoReader.cpp:33: warning: comparison between signed and unsigned integer expr essions ProtoReader.cpp: In function 'int get_Item_Type_Value(std::string)': ProtoReader.cpp:87: warning: comparison between signed and unsigned integer expr essions ProtoReader.cpp: In function 'int get_Item_SubType_Value(int, std::string)': ProtoReader.cpp:204: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp:207: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'int get_Item_AntiFlag_Value(std::string)': ProtoReader.cpp:250: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'int get_Item_Flag_Value(std::string)': ProtoReader.cpp:279: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'int get_Item_WearFlag_Value(std::string)': ProtoReader.cpp:307: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'int get_Item_Immune_Value(std::string)': ProtoReader.cpp:333: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'int get_Item_LimitType_Value(std::string)': ProtoReader.cpp:361: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'int get_Item_ApplyType_Value(std::string)': ProtoReader.cpp:400: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'int get_Mob_Rank_Value(std::string)': ProtoReader.cpp:426: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'int get_Mob_Type_Value(std::string)': ProtoReader.cpp:448: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'int get_Mob_BattleType_Value(std::string)': ProtoReader.cpp:469: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'int get_Mob_Size_Value(std::string)': ProtoReader.cpp:490: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'int get_Mob_AIFlag_Value(std::string)': ProtoReader.cpp:512: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'int get_Mob_RaceFlag_Value(std::string)': ProtoReader.cpp:537: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'int get_Mob_ImmuneFlag_Value(std::string)': ProtoReader.cpp:561: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp: In function 'bool Set_Proto_Item_Table(TItemTable*, cCsvTable&, std::map<int, const char*, std::less<int>, std::allocator<std::pair<const int, const char*> > >&)': ProtoReader.cpp:696: warning: comparison between signed and unsigned integer exp ressions ProtoReader.cpp:757: warning: comparison between signed and unsigned integer exp ressions[/spoiler]
  7. Hi metin2 dev ../../common/VnumHelper.h:59:32: warning: no newline at end of file constants.cpp:421: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:422: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:423: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:424: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:425: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:426: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:427: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:428: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:429: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:430: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:431: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:432: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:433: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:434: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:435: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:436: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:437: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:438: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:439: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:440: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:441: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:442: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:443: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:444: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:445: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:446: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:447: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:448: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:449: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:450: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:451: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:452: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:453: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:454: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:455: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:456: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:457: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:458: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:459: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:460: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:461: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:462: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:463: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:464: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:465: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:466: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:467: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:468: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:469: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:470: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:471: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:472: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:473: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:474: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:475: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:476: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:477: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:478: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:479: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:480: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:481: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:482: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:483: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:484: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:485: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:486: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:487: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:488: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:489: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:490: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:491: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:492: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:493: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:494: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:495: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:496: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:497: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:498: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:499: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:500: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:501: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:502: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:503: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:504: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:505: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:506: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:507: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:508: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:509: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:510: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:511: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:512: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:513: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:514: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:515: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:516: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:517: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:518: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:519: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:520: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:521: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:522: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:523: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:524: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:525: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:526: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:527: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:528: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:529: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:530: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:531: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:532: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:533: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:534: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:535: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:536: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:537: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:538: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:539: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:540: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:541: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:542: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:543: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:544: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:545: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:546: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:547: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:548: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:549: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:550: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:551: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:552: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:553: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:554: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:555: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:556: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:557: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:558: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:559: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:560: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:561: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:562: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:563: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:564: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:565: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:566: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:567: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:568: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:569: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:570: warning: this decimal constant is unsigned only in ISO C90 PetSystem.cpp: In member function 'virtual bool CPetActor::_UpdateFollowAI()': PetSystem.cpp:246: warning: unused variable 'bDoMoveAlone' PetSystem.cpp: In member function 'CPetActor* CPetSystem::Summon(DWORD, CItem*, const char*, bool, DWORD)': PetSystem.cpp:552: warning: unused variable 'petVID' compile dungeon.cpp constants.cpp:317: error: too many initializers for 'const DWORD [121]' constants.cpp:571: error: too many initializers for 'const DWORD [121]' constants.cpp:826: error: too many initializers for 'const DWORD [121]' cube.cpp: In function 'bool Cube_make(CHARACTER*)': cube.cpp:544: warning: comparison between signed and unsigned integer expressions cube.cpp: In function 'void Cube_MakeCubeInformationText()': cube.cpp:716: warning: unused variable 'npcVNUM' cube.cpp: In function 'bool Cube_InformationInitialize()': cube.cpp:783: warning: comparison between signed and unsigned integer expressions gmake: *** [OBJDIR/constants.o] Error 1 gmake: *** Waiting for unfinished jobs.... char_state.cpp: In member function 'virtual void CHARACTER::StateMove()': char_state.cpp:901: warning: unused variable 'rider' In file included from config.cpp:22: check_server.h: In static member function 'static bool CheckServer::CheckIp(const char*)': check_server.h:24: warning: comparison between signed and unsigned integer expressions config.cpp: In function 'void config_init(const std::string&)': config.cpp:435: warning: NULL used in arithmetic config.cpp:459: warning: NULL used in arithmetic config.cpp:483: warning: NULL used in arithmetic config.cpp:505: warning: unused variable 'line' In file included from desc_manager.cpp:15: ClientPackageCryptInfo.h:117:41: warning: no newline at end of file desc_client.cpp: In member function 'void CLIENT_DESC::UpdateChannelStatus(DWORD, bool)': desc_client.cpp:299: warning: comparison between signed and unsigned integer expressions cmd_gm.cpp: In function 'void do_set_stat(CHARACTER*, const char*, int, int)': cmd_gm.cpp:3935: warning: NULL used in arithmetic cmd_gm.cpp: In function 'void do_use_item(CHARACTER*, const char*, int, int)': cmd_gm.cpp:4357: warning: 'cell' may be used uninitialized in this function cmd_gm.cpp: In function 'void do_set_stat(CHARACTER*, const char*, int, int)': cmd_gm.cpp:3977: warning: 'n' may be used uninitialized in this function cmd_gm.cpp: In function 'void do_mob_ld(CHARACTER*, const char*, int, int)': cmd_gm.cpp:855: warning: 'x' may be used uninitialized in this function cmd_gm.cpp:855: warning: 'y' may be used uninitialized in this function Help me
  8. constants.cpp:569: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:570: warning: this decimal constant is unsigned only in ISO C90 PetSystem.cpp: In member function 'virtual bool CPetActor::_UpdateFollowAI()': PetSystem.cpp:246: warning: unused variable 'bDoMoveAlone' PetSystem.cpp: In member function 'CPetActor* CPetSystem::Summon(DWORD, CItem*, const char*, bool, DWORD)': PetSystem.cpp:552: warning: unused variable 'petVID' compile dungeon.cpp constants.cpp:317: error: too many initializers for 'const DWORD [121]' constants.cpp:571: error: too many initializers for 'const DWORD [121]' constants.cpp:826: error: too many initializers for 'const DWORD [121]' cube.cpp: In function 'bool Cube_make(CHARACTER*)': cube.cpp:544: warning: comparison between signed and unsigned integer expressions cube.cpp: In function 'void Cube_MakeCubeInformationText()': cube.cpp:716: warning: unused variable 'npcVNUM' cube.cpp: In function 'bool Cube_InformationInitialize()': cube.cpp:783: warning: comparison between signed and unsigned integer expressions gmake: *** [OBJDIR/constants.o] Error 1 gmake: *** Waiting for unfinished jobs.... char_state.cpp: In member function 'virtual void CHARACTER::StateMove()': char_state.cpp:901: warning: unused variable 'rider' Help me Denis
  9. Hi metin2 dev ../../common/VnumHelper.h:59:32: warning: no newline at end of file constants.cpp:421: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:422: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:423: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:424: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:425: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:426: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:427: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:428: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:429: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:430: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:431: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:432: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:433: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:434: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:435: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:436: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:437: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:438: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:439: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:440: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:441: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:442: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:443: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:444: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:445: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:446: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:447: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:448: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:449: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:450: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:451: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:452: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:453: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:454: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:455: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:456: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:457: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:458: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:459: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:460: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:461: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:462: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:463: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:464: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:465: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:466: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:467: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:468: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:469: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:470: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:471: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:472: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:473: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:474: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:475: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:476: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:477: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:478: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:479: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:480: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:481: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:482: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:483: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:484: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:485: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:486: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:487: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:488: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:489: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:490: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:491: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:492: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:493: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:494: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:495: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:496: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:497: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:498: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:499: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:500: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:501: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:502: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:503: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:504: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:505: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:506: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:507: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:508: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:509: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:510: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:511: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:512: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:513: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:514: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:515: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:516: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:517: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:518: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:519: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:520: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:521: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:522: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:523: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:524: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:525: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:526: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:527: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:528: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:529: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:530: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:531: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:532: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:533: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:534: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:535: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:536: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:537: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:538: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:539: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:540: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:541: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:542: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:543: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:544: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:545: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:546: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:547: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:548: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:549: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:550: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:551: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:552: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:553: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:554: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:555: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:556: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:557: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:558: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:559: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:560: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:561: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:562: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:563: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:564: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:565: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:566: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:567: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:568: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:569: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:570: warning: this decimal constant is unsigned only in ISO C90 PetSystem.cpp: In member function 'virtual bool CPetActor::_UpdateFollowAI()': PetSystem.cpp:246: warning: unused variable 'bDoMoveAlone' PetSystem.cpp: In member function 'CPetActor* CPetSystem::Summon(DWORD, CItem*, const char*, bool, DWORD)': PetSystem.cpp:552: warning: unused variable 'petVID' compile dungeon.cpp constants.cpp:317: error: too many initializers for 'const DWORD [121]' constants.cpp:571: error: too many initializers for 'const DWORD [121]' constants.cpp:826: error: too many initializers for 'const DWORD [121]' cube.cpp: In function 'bool Cube_make(CHARACTER*)': cube.cpp:544: warning: comparison between signed and unsigned integer expressions cube.cpp: In function 'void Cube_MakeCubeInformationText()': cube.cpp:716: warning: unused variable 'npcVNUM' cube.cpp: In function 'bool Cube_InformationInitialize()': cube.cpp:783: warning: comparison between signed and unsigned integer expressions gmake: *** [OBJDIR/constants.o] Error 1 gmake: *** Waiting for unfinished jobs.... char_state.cpp: In member function 'virtual void CHARACTER::StateMove()': char_state.cpp:901: warning: unused variable 'rider' In file included from config.cpp:22: check_server.h: In static member function 'static bool CheckServer::CheckIp(const char*)': check_server.h:24: warning: comparison between signed and unsigned integer expressions config.cpp: In function 'void config_init(const std::string&)': config.cpp:435: warning: NULL used in arithmetic config.cpp:459: warning: NULL used in arithmetic config.cpp:483: warning: NULL used in arithmetic config.cpp:505: warning: unused variable 'line' In file included from desc_manager.cpp:15: ClientPackageCryptInfo.h:117:41: warning: no newline at end of file desc_client.cpp: In member function 'void CLIENT_DESC::UpdateChannelStatus(DWORD, bool)': desc_client.cpp:299: warning: comparison between signed and unsigned integer expressions cmd_gm.cpp: In function 'void do_set_stat(CHARACTER*, const char*, int, int)': cmd_gm.cpp:3935: warning: NULL used in arithmetic cmd_gm.cpp: In function 'void do_use_item(CHARACTER*, const char*, int, int)': cmd_gm.cpp:4357: warning: 'cell' may be used uninitialized in this function cmd_gm.cpp: In function 'void do_set_stat(CHARACTER*, const char*, int, int)': cmd_gm.cpp:3977: warning: 'n' may be used uninitialized in this function cmd_gm.cpp: In function 'void do_mob_ld(CHARACTER*, const char*, int, int)': cmd_gm.cpp:855: warning: 'x' may be used uninitialized in this function cmd_gm.cpp:855: warning: 'y' may be used uninitialized in this function Help me
  10. Your Virtual Machine network is not properly configured. Or at least this is what it seems to be. Hi Exynox ../../common/VnumHelper.h:59:32: warning: no newline at end of file constants.cpp:421: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:422: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:423: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:424: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:425: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:426: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:427: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:428: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:429: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:430: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:431: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:432: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:433: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:434: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:435: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:436: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:437: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:438: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:439: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:440: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:441: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:442: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:443: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:444: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:445: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:446: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:447: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:448: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:449: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:450: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:451: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:452: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:453: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:454: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:455: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:456: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:457: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:458: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:459: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:460: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:461: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:462: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:463: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:464: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:465: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:466: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:467: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:468: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:469: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:470: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:471: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:472: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:473: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:474: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:475: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:476: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:477: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:478: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:479: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:480: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:481: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:482: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:483: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:484: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:485: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:486: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:487: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:488: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:489: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:490: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:491: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:492: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:493: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:494: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:495: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:496: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:497: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:498: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:499: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:500: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:501: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:502: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:503: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:504: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:505: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:506: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:507: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:508: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:509: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:510: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:511: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:512: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:513: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:514: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:515: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:516: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:517: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:518: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:519: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:520: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:521: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:522: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:523: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:524: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:525: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:526: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:527: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:528: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:529: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:530: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:531: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:532: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:533: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:534: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:535: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:536: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:537: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:538: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:539: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:540: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:541: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:542: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:543: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:544: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:545: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:546: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:547: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:548: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:549: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:550: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:551: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:552: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:553: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:554: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:555: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:556: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:557: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:558: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:559: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:560: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:561: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:562: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:563: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:564: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:565: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:566: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:567: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:568: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:569: warning: this decimal constant is unsigned only in ISO C90 constants.cpp:570: warning: this decimal constant is unsigned only in ISO C90 PetSystem.cpp: In member function 'virtual bool CPetActor::_UpdateFollowAI()': PetSystem.cpp:246: warning: unused variable 'bDoMoveAlone' PetSystem.cpp: In member function 'CPetActor* CPetSystem::Summon(DWORD, CItem*, const char*, bool, DWORD)': PetSystem.cpp:552: warning: unused variable 'petVID' compile dungeon.cpp constants.cpp:317: error: too many initializers for 'const DWORD [121]' constants.cpp:571: error: too many initializers for 'const DWORD [121]' constants.cpp:826: error: too many initializers for 'const DWORD [121]' cube.cpp: In function 'bool Cube_make(CHARACTER*)': cube.cpp:544: warning: comparison between signed and unsigned integer expressions cube.cpp: In function 'void Cube_MakeCubeInformationText()': cube.cpp:716: warning: unused variable 'npcVNUM' cube.cpp: In function 'bool Cube_InformationInitialize()': cube.cpp:783: warning: comparison between signed and unsigned integer expressions gmake: *** [OBJDIR/constants.o] Error 1 gmake: *** Waiting for unfinished jobs.... char_state.cpp: In member function 'virtual void CHARACTER::StateMove()': char_state.cpp:901: warning: unused variable 'rider' In file included from config.cpp:22: check_server.h: In static member function 'static bool CheckServer::CheckIp(const char*)': check_server.h:24: warning: comparison between signed and unsigned integer expressions config.cpp: In function 'void config_init(const std::string&)': config.cpp:435: warning: NULL used in arithmetic config.cpp:459: warning: NULL used in arithmetic config.cpp:483: warning: NULL used in arithmetic config.cpp:505: warning: unused variable 'line' In file included from desc_manager.cpp:15: ClientPackageCryptInfo.h:117:41: warning: no newline at end of file desc_client.cpp: In member function 'void CLIENT_DESC::UpdateChannelStatus(DWORD, bool)': desc_client.cpp:299: warning: comparison between signed and unsigned integer expressions cmd_gm.cpp: In function 'void do_set_stat(CHARACTER*, const char*, int, int)': cmd_gm.cpp:3935: warning: NULL used in arithmetic cmd_gm.cpp: In function 'void do_use_item(CHARACTER*, const char*, int, int)': cmd_gm.cpp:4357: warning: 'cell' may be used uninitialized in this function cmd_gm.cpp: In function 'void do_set_stat(CHARACTER*, const char*, int, int)': cmd_gm.cpp:3977: warning: 'n' may be used uninitialized in this function cmd_gm.cpp: In function 'void do_mob_ld(CHARACTER*, const char*, int, int)': cmd_gm.cpp:855: warning: 'x' may be used uninitialized in this function cmd_gm.cpp:855: warning: 'y' may be used uninitialized in this function Help me
  11. Server Files How to install ? thank you
  12. Hi Guys where we take these files ? amd64 [Hidden Content] /usr/src ? How do I install ? Thank You
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.