Jump to content

Viello

Member
  • Posts

    33
  • Joined

  • Last visited

  • Feedback

    0%

About Viello

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Viello's Achievements

Collaborator

Collaborator (7/16)

  • Collaborator
  • Dedicated
  • Conversation Starter
  • One Year In
  • Reacting Well

Recent Badges

48

Reputation

  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?
×
×
  • 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.