Jump to content

Viello

Member
  • Posts

    33
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Viello

  1. marty can you add HD shadow option for world editor, current one is not realistic
  2. I implemented that system and in my mob proto I changed my pet's attribute npc to monster, I can hit my pet and pet hits me back LMAO, and when I try to attack another monster, metin etc. it does not attack. If only I attack my pet it attacks me any opinion on that?
  3. I want to check the map index and give every player 25 demi-human bonus and 5000 hp for that specific map, when he/she goes another map that bonus should be cleaned from player's character how can I make that?
  4. is there a script for it or is there a tutorial to how to modify mdatr?
  5. this is an extra option yep but I want to remane specificly .txt files, for users I can recommend them to use this code with a little modify; Use a list comprehension instead of the for loop to check if the filename contains uppercase characters. Use os.path.splitext() method to get the file extension, and then concatenate it with the lowercase filename. Use the r prefix for the input() function to interpret backslashes as part of the path string. import os def rename_files(path): # Use os.scandir() instead of os.walk() for better performance for entry in os.scandir(path): if entry.is_file(): # Get the filename and extension separately filename, ext = os.path.splitext(entry.name) if any(c.isupper() for c in filename): # Rename file to lowercase and concatenate the extension new_name = filename.lower() + ext os.rename(entry.path, os.path.join(path, new_name)) # Use the r prefix for the input function to interpret backslashes as part of the path string path = input(r"Enter directory path: ") rename_files(path) print("All files have been renamed to lowercase.") maybe this could be the my solution for py user, thanks for contribution to my topic
  6. Sorry for virus total:[Hidden Content] After usage of program it links to my website.
  7. With this exe user will enter the adress of the file and all txt type file names will turn into lowercase ones. I created this program because when I make a new map I had files name like MapSetting.txt, AreaAmbianceData.txt and it will cause problem to one of my clients now I can make them lowercase and problem is solved. How to use:[Hidden Content] Mega Link: [Hidden Content] [Hidden Content]
  8. I kinda a newbie to c++, I created an exe which can get tga and dds photos into a new png one, both tga/dds and png copies will be in the same place. exe should be in the same folder with your tga and dds files. How to use it: Video: [Hidden Content] Mega link: [Hidden Content] [Hidden Content] Sorry for virus total:[Hidden Content]
  9. Client/Source/GameLib/ActorInstanceCollisionDetection.cpp BOOL CActorInstance::TestActorCollision(CActorInstance & rVictim) { if(rVictim.IsEnemy() || rVictim.IsPoly() || rVictim.IsNPC()) return FALSE; I was using like that.
  10. I had some teleport issues, sometimes client crashes, no syserr maybe this code is not perfect for my files, btw thanks for sharing with community.
  11. is it smart to use this code?
  12. Severity Code Description Project File Line Suppression State Error C1047 The object or library file '..\..\extern\lib\libjpeg-MT.lib' was created by a different version of the compiler than other objects like '..\..\extern\lib\discord_rpc_r.lib'; rebuild all objects and libraries with the same compiler UserInterface D:\files\Leg\ClientSource\Client\UserInterface\LINK 1 and Severity Code Description Project File Line Suppression State Error LNK1257 code generation failed UserInterface D:\files\Leg\ClientSource\Client\UserInterface\LINK 1 I got this error in vs2022
  13. is there a way to save mapfiles all with lowercase??
  14. does anybody got c++ and py files for it?
  15. the file: [Hidden Content] when I add them directly to the pack it does not make sense it glows so disgusting nothing like in gif? How do I add this?
  16. Is there a way to give specular to objects like buildings, sculptures?
  17. How about to add alpha texture thing for objects? With some metallic effect it would be better experience for players or is there a way to do that?
  18. Do I make some tab errors or something? I can see the menu at cmd and select option but creates 0 property Can someone upload right py file, pls
  19. Hello there does anybody got this map?
×
×
  • 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.