Jump to content

Ulthar

Premium
  • Posts

    228
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Ulthar

  1. thanks for sharing! Its not working for me... everything builded without any error. syserr clean Any help please?
  2. Hello! I found it, how can you do it from source. Im sorry, if somewhere is already posted, but i didnt found it. // game/src/localeservice.cpp // search: int check_name_alphabet(const char * str) // make like this: int check_name_alphabet(const char * str) { const char* tmp; if (!str || !*str) return 0; if (strlen(str) < 2) return 0; for (tmp = str; *tmp; ++tmp) { // ¾ËÆĺª°ú ¼öÀÚ¸¸ Çã¿ë if (isdigit(*tmp) || isalpha(*tmp)) continue; #ifdef USE_SPECIAL_CHARACTERS switch (*tmp) { case ' ': case '.': case '-': case '_': case '@': case '!': case '^': case '#': case '$': case '%': case '&': case '*': case '(': case ')': continue; } #endif return 0; } return check_name_independent(str); } // server/common/service.h // add this at end of file (ATTENTION! if you have #endif in the last line, add it BEFORE!) #define USE_SPECIAL_CHARACTERS Have a nice day ^^
  3. Hello all How can i do that, when i create a character, i am able to use special characters like "_" and "." and " " (space). ex1: _test_ ex2: _ test _ What should i modify? Have a nice day.
  4. SOLVED! Dont use EVER eternexus. Cant compress corretly some stuffs. Use this: If you need help, how to install, i can help you.
  5. i only edited this part, which is removed the #else. and its working for me im not a coder, but its working. so im happy with that. Thanks for the whole post!
  6. Hello. I have a very huge bug, with plechi's mushroom dungeon. When i add the mushroom stuffs to property, my house models and every objects are invisible. [Hidden Content] (link how is it looks like) When i overwrite the property with my clear property, everything is good. Btw, if i add the bugged propertys, the whole dungeon is working 100% some lines from my syserr: 0419 14:51:18463 :: CArea::LoadObject Property(3689520799) Load ERROR 0419 14:51:18463 :: CArea::LoadObject Property(3748653682) Load ERROR 0419 14:51:18463 :: CArea::LoadObject Property(3748653682) Load ERROR 0419 14:51:18463 :: CArea::LoadObject Property(3748653682) Load ERROR 0419 14:51:18463 :: CArea::LoadObject Property(4138381346) Load ERROR my syserr is 740 lines xd I have no idea why is it full of bugs. Any idea?
  7. EVERYONE Who have the same problem like me: in the this function: void CActorInstance::__ProcessDataAttackSuccess(const NRaceData::TAttackData & c_rAttackData, CActorInstance & rVictim, const D3DXVECTOR3 & c_rv3Position, UINT uiSkill, BOOL isSendPacket) Delete the #else part! like this:
  8. thanks for aswer! I added it, but nohing happened checked everyhing, but didnt find any strange looking part, so i dont know what is the problem :S Any idea?:/ [Hidden Content]
  9. for me its not working. Build was success, and no errors ofc. but my shaman attack is the same. can you help me @Ikarus_?
  10. Hello. I have an error in target info system My problem is: the max hp of every mob, doesnt show up, only write "0" [Hidden Content] Where should i search for the error?:s The race, experience is bugged too.... Ulthar.
  11. Hello! I have problem with zenu's instant pickup release. When i call more than 4 ork boss, they dropping items and yangs ofc, but when i press a single "0" and only 1-3 items or yangs close to me, i get kicked. Doesnt matter how many yang or item close to me, i getting kicked always syserr empty.. :s
  12. It telling me so much error while i compile it... [Hidden Content]
  13. hello! I want to know what is the problem with my targeinfo system, cuz everying was builded fine, and syserr clear. My problem is: When i click on the (?) button, i see this: lick for pic. So the item drops is nowhere. I tried a lot of mobs, metins, i rechecked the root folder's .py stuffs, but i didnt found anything. So where should i search for the problem ? Thanks for help, Ulthar. SOLVED!!!!!!!!! If you expreienced the same problem, input_main.cpp search for this: case HEADER_CG_XTRAP_ACK: { TPacketXTrapCSVerify* p = reinterpret_cast<TPacketXTrapCSVerify*>((void*)c_pData); CXTrapManager::instance().Verify_CSStep3(d->GetCharacter(), p->bPacketData); } break; Add after this: //targetinfo #ifdef __SEND_TARGET_INFO__ case HEADER_CG_TARGET_INFO_LOAD: { TargetInfoLoad(ch, c_pData); } break; #endif //endoftargetinfo Should looks like this: [Hidden Content]
  14. Hello. With "sh start.sh" command the server is running fine. I edited every IP and PORT in my own client, and on MySQL too. (auth, ch1 core1-2, ch99). In "/var/db" mysql changed, and i can connect to it. Running it from a VPS. I have a website, and its running too. Telling me, ch1 is running, DB is running. But, i cant connect to the server.(telling me: failed to connect to server.) Any help would be nice! Ulthar. (Sorry for posting it before to wrong forum.)
  15. i cannot see the pictures. Anyway ,thanks for this comment. I sent you friend request.
  16. thanks for answers, i will try it soon, and i will tell you if its worked or not.
  17. Dear Community! maybe i posted it to a wrong topic. If its, sorry. So i have the source for client, and for the server. BUT i dont have the .vdi file. When i rent a host for my metin2 server, i just upload my files to their VPS. So my actually question is: how can i create an own .vdi file? i want to run my server(while im developing it) from my pc. Equal im not losing money for just 2-3 hours a day of developing while i paying for the hosting. Is it possible or not? Sorry for my horrible english. Forgive me. Any help would be nice. Thanks! Ulthar.
×
×
  • 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.