Jump to content

Hik

Member
  • Posts

    276
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by Hik

  1. shame on me, it was enough to add the () Thank you all...
  2. Thanks, actually it works (I tried until 2030). Evidently beyond a certain date it does not work. Do you have any ideas about the second bug?
  3. Last chance: Open: libthecore/StdAFx.h Find: #define __typeof typeof and replace with: #if __cplusplus <= 199711L //C++99 Compatibility code #define __typeof typeof #endif
  4. In common\stl.h you have: #define itertype(v) __typeof((v).begin())? If asnwer is yes, replace with: #ifndef itertype #define itertype(v) __typeof((v).begin()) #endif
  5. Hi guys, I have 2 strange problems. In the first two images you will notice that there are no bonuses in the upper left but they are set in the db. In the other two you will notice how the command "pc.get_skill_group" does not return any value.
  6. Hello Vanilla, when will the new version be available?
  7. Hik

    Orc King

    Truly beautiful, immediately downloaded!
  8. She must try to change the ip address, perhaps putting the .100 in the .txt \ serverinfo
  9. then... open "desc_client.cpp" and search: if (!bSentBoot) { bSentBoot = true; TPacketGDBoot p; p.dwItemIDRange[0] = 0; p.dwItemIDRange[1] = 0; memcpy(p.szIP, g_szPublicIP, 16); DBPacket(HEADER_GD_BOOT, 0, &p, sizeof(p)); } } TEMP_BUFFER buf; TPacketGDSetup p; memset(&p, 0, sizeof(p)); strlcpy(p.szPublicIP, g_szPublicIP, sizeof(p.szPublicIP)); and change like this: if (!bSentBoot) { bSentBoot = true; TPacketGDBoot p; p.dwItemIDRange[0] = 0; p.dwItemIDRange[1] = 0; memcpy(p.szIP, "HAMACHI IP(NO .100)", 16); DBPacket(HEADER_GD_BOOT, 0, &p, sizeof(p)); } } TEMP_BUFFER buf; TPacketGDSetup p; memset(&p, 0, sizeof(p)); strlcpy(p.szPublicIP, "HAMACHI IP(NO .100)", sizeof(p.szPublicIP)); ....recompile After a couple of minutes, channel 1 will crash, restart the whit this commnd: cd /root_game/channel1 && ./game I do not remember the procedure well, more than I can do :/
  10. I have no sysser bug error =/ No syserr client\server? Check syslog
  11. Do you have files called BankManager.cpp/.h? If yes, you must add them to the userinterface folder. Next, open the project with visual studio, right click on "userinterface" then "add" and then "existing element". This way you can add the .cpp / .h files.
  12. Here is a screen of mob_proto.txt open with openoffice. [Hidden Content]
  13. Excuse me, I did not realize I did not include the translated text. ps: Hi WeedHex, the bug occurs for more than one mob. I'll load the queries from the first mobs. Vnum Name Rank Type BattleType Level Size AiFlags MountCapacity RaceFlags ImmuneFlags Empire Folder OnClick St Dx Ht Iq MinDamage MaxDamage MaxHp RegenCycle RegenPercent MinGold MaxGold Exp Def AttackSpeed MoveSpeed AggressiveHpPct AggressiveSight AttackRange DropItemGroup ResurrectionVnum EnchantCurse EnchantSlow EnchantPoison EnchantStun EnchantCritical EnchantPenetrate EnchantBleeding ResistSword ResistTwoHanded ResistDagger ResistBell ResistFan ResistBow ResistFire ResistElect ResistMagic ResistWind ResistPoison ResistClaw ResistBleeding DamMultiply SummonVnum DrainSp MobColor PolymorphItem SkillLevel0 SkillVnum0 SkillLevel1 SkillVnum1 SkillLevel2 SkillVnum2 SkillLevel3 SkillVnum3 SkillLevel4 SkillVnum4 SpBerserk SpStoneskin SpGodspeed SpDeathblow SpRevive 101 ?? PAWN MONSTER MELEE 1 0 ANIMAL 0 stray_dog 0 3 6 5 2 20 24 126 6 7 21 28 15 4 100 100 0 2000 175 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 70104 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 102 ?? PAWN MONSTER MELEE 3 0 ANIMAL 0 wolf 0 4 9 7 2 23 28 162 6 7 22 29 39 6 100 100 25 2000 175 30028 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 70104 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  14. I also had this problem.You probably forgot to insert something or you did it in the wrong position.
  15. Hi guys, I have a little problem with drop yang. I set the values in "MinGold" and "MaxGold" but I continue to drop 1 yang. Can someone help me? EDIT 09/06/2018: //else if ((item = ITEM_MANAGER::instance().CreateItem (1, iGold / iSplitCount))) This is the part of the code that creates the yangs. It is inserted inside a for, allowing the fall of more yang. The problem is that the value of "iGold / iSplitCount" is greater than 1 and therefore also inserting ".CreateItem (1, 200)))" the result is identical.
  16. To avoid compatibility problems you should use complete packages: source client \ server, fileserver and client.
  17. Post here errors in the "syserr" and "syslog" files.
  18. Hello, first of all, we need more information. Do you use windows fileserver?
×
×
  • 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.