Jump to content

Cian

Member
  • Posts

    6
  • Joined

  • Last visited

  • Feedback

    0%

About Cian

Informations

  • Gender
    Male

Recent Profile Visitors

698 profile views

Cian's Achievements

Rookie

Rookie (2/16)

  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. Hello Guys, I want read a Vnum from Database... However it does not work. My Source code : What is wrong? Thanks for your help! Sorry for my bad English ..
  2. Download from Windows Server Source?
  3. Open: UserInterface/InstanceBaseEffect.cpp Search: UINT CInstanceBase::GetNameColorIndex() Go to: else if (IsNPC()) Add: int vnum = GetRace(); if (vnum == yourpetvnum) { return NAMECOLOR_PET; } Open: UserInterface/InstanceBase.h Search: NAMECOLOR_PC, Add: NAMECOLOR_PET, Open: UserInterface/PythonCharacterManagerModule.cpp Search: PyModule_AddIntConstant(poModule, "NAMECOLOR_PC", CInstanceBase::NAMECOLOR_NORMAL_PC); Add: PyModule_AddIntConstant(poModule, "NAMECOLOR_PET", CInstanceBase::NAMECOLOR_PET); Python: Open: root/introloading.py Search: chrmgr.NAMECOLOR_PC : colorInfo.CHR_NAME_RGB_PC, Add: chrmgr.NAMECOLOR_PET : colorInfo.CHR_NAME_RGB_PET, Open: root/colorinfo.py Add: CHR_NAME_RGB_PET = (0, 0, 255)##Blue I think this Works. Works: Best Regards Cian.
×
×
  • 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.