Jump to content

Zeke

Active Member
  • Posts

    81
  • Joined

  • Last visited

  • Days Won

    6
  • Feedback

    0%

Everything posted by Zeke

  1. He demonstrates a high level of professionalism in his work, dedicating ample time to thoroughly understand your needs and the specifics of your server. His approach is tailored to ensure the optimal outcome.
  2. Everything related to real time packets trade have that thing(ping/pong) as the metin source too.
  3. Wrong username on dicord ^^. btw node.js is a runtime. here you can run servers(expressjs) or other things. to compile/build your website for production are other packages (vue/react/svelte etc) that are using webpack anyways if you really want a website build using node technologies then add me ^^ Ryuzeke#3984
  4. Its good idea to help someone like that. on my project tho that i want everything under control i would like a logic bug (logic because you can't have an item with out an image) to crash. so i would throw an errror there ^^ its just different point of view. your idea is good tho for the other ones than me
  5. Better let a bug crash your client than fixing it with that "fixing" lines. can item been with blank image? logic says no. let it crash to find where you missing files ^^
  6. Yeah there will be a skin system per server for custom designs thats just for a starting version. for the start i dont point at the view but on the code. skins will be better with time
  7. Hello community long time no see. Some weeks ago i started a project for metin2wiki and i started made it as platform(Im not selling/giving code) that someone will can login/register pay a price per month(not yet) upload all the needed files(item.proto.txt etc etc) and our platform make the wiki for you(we have the hosting and it will be like: www.wiki.com/servername but you can take it as iframe on your site or make your domain point on this). i dont want to be in details for now the reason i made this post is that in some weeks from now i will need some online servers to test my wiki(of course completly free). i dont need access to your database or something like this just .txt files and some dumps from sql files(like refine_proto.sql) here is 1 picture(2 to show the multilanguage). 1 picture 1000 words This is not a shitty php site. for that one i used JS/NODE/VUE/VEUX/QUASAR. you dont have seen a faster wiki site in your life of course no need for a single reload of page ^^. if a server with 50+ online want to join you can add me on discord: Zeke#3984
  8. I could make this one with nodejs & electron if u Interesting send me a message ^^
  9. You are totally right but pdo its more paramatized from mysql (not mysqli cause mysqli is updated to) so i can me something like "more secure" the thing i want to say is that 80% metin2 public sites now are with old code(mysql) and you can find some backdoors
  10. M2 Download Center Download Here ( Internal ) Screen: Video: [Hidden Content] Why is this feature good? Cause every yang goes on this little window and players can see the chat log with out the yang spamming when the farm ^^ Download: Mega
  11. Go on client source PythonPlayer and search for this: void CPythonPlayer::SendClickItemPacket(DWORD dwIID) if you do s_dwNextTCPTime = 0 and comment the s_dwNextTCPTime=dwCurTime + 500; down there it will have no delay. example code: void CPythonPlayer::SendClickItemPacket(DWORD dwIID) { if (IsObserverMode()) return; static DWORD s_dwNextTCPTime = 0; DWORD dwCurTime=ELTimer_GetMSec(); if (dwCurTime >= s_dwNextTCPTime) { // s_dwNextTCPTime=dwCurTime + 500; const char * c_szOwnerName; if (!CPythonItem::Instance().GetOwnership(dwIID, &c_szOwnerName)) return; if (strlen(c_szOwnerName) > 0) if (0 != strcmp(c_szOwnerName, GetName())) { CItemData * pItemData; if (!CItemManager::Instance().GetItemDataPointer(CPythonItem::Instance().GetVirtualNumberOfGroundItem(dwIID), &pItemData)) { Tracenf("CPythonPlayer::SendClickItemPacket(dwIID=%d) : Non-exist item.", dwIID); return; } if (!IsPartyMemberByName(c_szOwnerName) || pItemData->IsAntiFlag(CItemData::ITEM_ANTIFLAG_DROP | CItemData::ITEM_ANTIFLAG_GIVE)) { PyCallClassMemberFunc(m_ppyGameWindow, "OnCannotPickItem", Py_BuildValue("()")); return; } } CPythonNetworkStream& rkNetStream=CPythonNetworkStream::Instance(); rkNetStream.SendItemPickUpPacket(dwIID); } }
  12. Thats a way xD but the better way its to search where this log functions you dont want called on your source and comment this or make it with defines if you want someday to open them again
  13. You dont need to show the flag when player is vip? instancebaseeffect.cpp replace this: else if (pkInstMain->IsVIP()) { } with: if (pkInstMain->IsVIP()) return;
  14. Mt2 serverfiles was leaked i think on 2007. i think new versions/updates are fanmade (not surely about all that )
  15. Yeah i copy paste it from the other forum that i post it cause i was bored to write it again. yes. if is possible some mod delete this spam
  16. I post this on one more forum (can't tell name here) and in the other forum i have a different name but im the same person
  17. Copy paste what? i take the login form from boostrap and made the php script by my self.
  18. M2 Download Center Download Here ( Internal ) Hello community. i had some free time so and i did this. is not something special but someone might want to use it. Download: Mega You put your database information on include/dbconfig. You put your client download link on index.php variable: $DownloadLink IF something not work good just report it here and i will fix it.
  19. Man criticize sometimes is good think. it will make you better everytime someone criticize you like this "your coding is bad" this would be something that i would take it as a test to make my programming skills better.
  20. Best clean files + source you could take is Ira's . i have bought from this guy. its expensive but this files/source is truly awesome.
  21. Hello guys i have a problem. on my server i have a boss that he need 40-50 players to be killed and this boss have 120 items on drop. the problem is that items are dropped but all items are dropped for 1 or 2 players from all this items. what i mean? As you can see on the icon all items are in name House... i want all players to get drop from all this items... My mob_drop_item: If someone know the solution plese tell me ty
×
×
  • 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.