Jump to content

MonokiniSix

Members
  • Posts

    63
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

MonokiniSix last won the day on December 4 2022

MonokiniSix had the most liked content!

2 Followers

About MonokiniSix

Profile Information

  • Gender
    Male
  • Country
    Russia

Recent Profile Visitors

3,015 profile views

MonokiniSix's Achievements

Enthusiast

Enthusiast (6/16)

  • Dedicated Rare
  • First Post Rare
  • Collaborator Rare
  • Week One Done Rare
  • One Month Later Rare

Recent Badges

25

Reputation

  1. oops) delete "+2" in CharacterCreateMenuWnd.uc and compile function HandleBtnCreateCharacter() { local string Name; local int Race; local int Job; local int Sex; local int HairType; local int HairColor; local int FaceType; local int classID; Name=m_hEbName.GetString(); Race=m_hCbRace.GetSelectedNum(); Job=m_hCbJob.GetSelectedNum(); Sex=m_hCbSex.GetSelectedNum(); HairType=m_hCbHairType.GetSelectedNum(); HairColor=m_hCbHairColor.GetSelectedNum(); FaceType=m_hCbFaceType.GetSelectedNum(); classID=CharacterCreateGetClassType(Race, Job, Sex); if(IsValidData()) RequestCreateCharacter(Name, Race, classID, Sex, HairType+2, HairColor, FaceType); }
  2. use logongrp.dat from patch
  3. about lobby - your staticmesh folder incomplete - don't havve some elements (for example floor - characters falls djwn)(download fulll hf client) yeah it possible - like somik via "/command" in macros it possible to add custom targetnext (pvp/pve targets) mb in new update
  4. 1 - ? 2 - ? 3 - delete L2UI_CH3/CT1 from Textures
  5. WindowsInfo.ini p.s. little update https://drive.google.com/file/d/100asz7cEx7mf0HjL9GNzV2N8lq8ypjMq/view?usp=drive_link
  6. u can comment // RefOptionWndScript = RefOptionWnd( GetScript( "RefOptionWnd" ) ); // RefWndScript = RefineryWnd(GetScript("RefineryWnd")); in ChatWnd.uc, now u can use reloadui but if u relog character and use ///reloadui it's crit again
  7. not complete! just for test https://drive.google.com/file/d/1zo4JbFLd0-Zn6eDdXw5YZifu0R3Bl1ZK/view?usp=share_link
  8. ?? in interface u can show messages in chatwnd (custom AddSystemMessageString() function in this interface) or use ShowOnScreenMessage() function or use default Log() function (need enable IsL2MemLog in l2.ini) if u work with pawns u can set a pawn ChatMsg string value (looks like chat baloon ingame)
  9. function HandleTargetUpdate(optional bool spawnTarget) { local Rect rectWnd; local string strTmp; local int TargetID; local int playerID; local int PetID; local int ClanType; local int ClanNameValue; //타겟 속성 정보 local bool bIsServerObject; local bool bIsHPShowableNPC; //공성진지 local bool bIsVehicle; local string Name; local string NameRank; local color TargetNameColor; //ServerObject local int ServerObjectNameID; local Actor.EL2ObjectType ServerObjectType; //Vehicle local Vehicle VehicleActor; local string DriverName; //HP,MP local bool bShowHPBar; local bool bShowMPBar; //혈맹 정보 local bool bShowPledgeInfo; local bool bShowPledgeTex; local bool bShowPledgeAllianceTex; local string PledgeName; local string PledgeAllianceName; local texture PledgeCrestTexture; local texture PledgeAllianceCrestTexture; local color PledgeNameColor; local color PledgeAllianceNameColor; //NPC특성 local bool bShowNpcInfo; local Array<int> arrNpcInfo; //새로운Target인가? // local bool IsTargetChanged; local bool WantHideName; local int nMasterID; local UserInfo info; // local UserInfo PlayerInfo; local int ClassID; local Color WhiteColor; // 하얀색을 설정. WhiteColor.R = 0; WhiteColor.G = 0; WhiteColor.B = 0; myPet = false; // added to more effective display HP pet/sum status // GetPlayerInfo(PlayerInfo); // ClassID = Info.nSubClass; //타겟ID 얻어오기 TargetID = class'UIDATA_TARGET'.static.GetTargetID(); if (TargetID < 1) { if (contextOwner && wnd_contextMenu.isShowWindow()) { wnd_contextMenu.HideWindow(); } if (m_TargetID != targetID) { m_TargetID = targetID; } Me.HideWindow(); return; } if (m_TargetID != TargetID) { if (contextOwner && wnd_contextMenu.isShowWindow()) { wnd_contextMenu.HideWindow(); } } else { bIsServerObject = class'UIDATA_TARGET'.static.IsServerObject(); // to update door hp if (bIsServerObject) { ServerObjectType = class'UIDATA_STATICOBJECT'.static.GetServerObjectType(m_TargetID); if (ServerObjectType == EL2_DOOR) { if( class'UIDATA_STATICOBJECT'.static.GetStaticObjectShowHP( m_TargetID ) ) { UpdateHPBar(class'UIDATA_STATICOBJECT'.static.GetServerObjectHP(m_TargetID), class'UIDATA_STATICOBJECT'.static.GetServerObjectMaxHP(m_TargetID)); } } } return; } try to replace this block in TargetStatusWnd, temp fix
  10. 2-3, i don't think it's interface problem 1 try change in interface.xdat InventoryWnd->texTalismanAllow texture path from MonicaEssence2.InventoryWnd.Talisman_Arrow to MonicaEssence.InventoryWnd.Talisman_Arrow
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock