Jump to content

ton3

Members
  • Posts

    168
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by ton3

  1. https://cloud.mail.ru/public/2HxZ/5EqMTUejf
  2. can you pm me? I need your developer services but I can't pm you and also check your skype pls
  3. Hello Rootware, do you know how to change it on interlude client? I tried to change it but it doesn't work.
  4. I've found this on ChatWnd.HandleChatMessage function HandleChatmessage( String param ) { local int nTmp; local EChatType type; local ESystemMsgType systemType; local string text; local Color color; ParseInt(param, "Type", nTmp); type = EChatType(nTmp); ParseString(param, "Msg", text); ParseInt(param, "ColorR", nTmp); Color.R = nTmp; ParseInt(param, "ColorG", nTmp); Color.G = nTmp; ParseInt(param, "ColorB", nTmp); Color.B = nTmp; color.A = 255; if( type == CHAT_SYSTEM ) { ParseInt(param, "SysType", nTmp); systemType = ESystemMsgType(nTmp); } else { systemType = SYSTEM_NONE; } if( CheckFilter( type, CHAT_WINDOW_NORMAL, systemType ) ) NormalChat.AddString( text, color ); if( CheckFilter( type, CHAT_WINDOW_PARTY, systemType ) ) PartyChat.AddString( text, color ); if( CheckFilter( type, CHAT_WINDOW_CLAN, systemType ) ) ClanChat.AddString( text, color ); if( CheckFilter( type, CHAT_WINDOW_TRADE, systemType ) ) TradeChat.AddString( text, color ); if( CheckFilter( type, CHAT_WINDOW_ALLY, systemType) ) AllyChat.AddString( text, color ); if( CheckFilter( type, CHAT_WINDOW_SYSTEM, systemType ) ) SystemMsg.AddString( text, color ); //Union Commander Message if ( type == CHAT_COMMANDER_CHAT && m_NoUnionCommanderMessage == 0 ) { ShowUnionCommanderMessgage( text ); } if ( type == CHAT_CRITICAL_ANNOUNCE) { Color.G = 115; } } I tried adding if ( type == CHAT_CRITICAL_ANNOUNCE) but its not working. Can anyone help pls?
  5. I have found this on source code try { if(pUser->pSD->vipLevel && wTxt[0] == L'^') { if(pUser->stopSayTick == 0) { VIPInfo vipInfo = g_VIPSystem.GetInfo(pUser->pSD->vipLevel); if(vipInfo.specialChat && pUser->pED->vipChatTimestamp < GetTickCount()) { pUser->pED->vipChatTimestamp = GetTickCount() + vipInfo.chatDelay; WCHAR wMsg[4096] = { 0 }; if(swprintf(wMsg, 4090, L"%s: %s", pUser->pSD->wszName, &wTxt[1]) > 0) { char buff[8190]; int len = Assemble(buff, 8190, "cddSS", 0x4A, 0, 18, L"VIP", wMsg); L2Server::BroadcastToAllUser(len, buff); } unguard; return false; }else { unguard; return false; } }else { pSocket->SendSystemMessage(147); //chatting is prohibited unguard; return false; } } is the color coming from here or is it client side?
  6. Hi everyone, does anyone know how to change VIP chat color on vangath l2off interlude extender? its currently using blue color, same as //critannounce color and I would like to change it to yellow.
  7. does anyone know how to change VIP chat color? its currently using blue, same as announcements and its messing everything.
  8. I can't find it, thank you for your help tho!
  9. are you using the interlude version? Because mine is not showing chatChanel tab.
  10. am I using the wrong xdat editor version? I don't see chatChanel, I can see only windows, shortcuts and etc
  11. I want to change the color from blue to yellow, is say2 located in interface.u?
  12. Hello everyone, I've spent a lot of time searching in this forum and trying it myself using UT Package Tool, but I can't seem to find which file or line is responsible to display this announce color ingame. Can anyone help? I forgot to mention, I'm using interlude client
  13. Adena on skelth server 0.7e = 1kk paypal only, pm me
  14. tyrant 69 naked, 20 euros dark avenger 68 naked, 20 euros paypal only, pm me
  15. price wc?
  16. -SOLD
  17. Elven Elder 53 all skills learned, karmian robe set + C grade Jewels Destroyer 54 all skills learned, full plate set including gloves and boots + great sword with othel lvl 6 adena 4,5kk pm me here, paypal only.
  18. Can anyone share vanganth web account creator or any working panel for web?
  19. teleport htmls are from server side, i don't think you can translate them to english but i might be wrong.
  20. can anyone re-upload Some L2oFF account managers, Vang panel and Paradise ?
  21. if( reply == 2 ) { if( talker.occupation != talker.subjob0_class && talker.level > 74 ) { if( noblessItemId == 0 || myself::OwnItemCount( talker, noblessItemId ) >= noblessItemCount ) { myself::GiveItem1( talker, @nobless_tiara, 1 ); myself::SoundEffect( talker, "ItemSound.quest_finish" ); myself::ShowPage( talker, "quest_tool_005.htm" ); myself::SetOneTimeQuestFlag( talker, 247, 1 ); myself::AddUseSkillDesire( talker, @s_quest_elixir_of_mimir, @ST_ATTACK, @AMT_STAND, @MAX_TIMER_ID ); myself::SetNobless( talker ); if( noblessItemId > 0 ) { myself::DeleteItem1( talker, noblessItemId, noblessItemCount ); } } else { myself::ShowPage( talker, "quest_tool_003.htm" ); } } else { myself::ShowPage( talker, "quest_tool_004.htm" ); } } like this?
  22. I add talker.occupation != talker.subjob0_class > 1 ? i tried like you said and i got an error on l2server
  23. thanks for answering eressea, i will test and let you know.
  24. how to add a check to see if talker has subclass active? because atm talker can just take nobless status without quest. (quest_tool npc from vanganth files) if( talker.nobless_type == @NOBLESS_NONE && myself::GetOneTimeQuestFlag( talker, 247 ) < 1 && talker.level > 74 ) thanks. Edit 1: found check for subclass quest f( talker.nobless_type == 0 && ( myself::GetOneTimeQuestFlag(talker,247) < 1 && myself::GetOneTimeQuestFlag (talker,235) =0 && talker.level > 74 ) ) now im wondering if its possible to be able to make talker to be on subclass active get the reward. Edit 2: I tried adding talker.subjob_id != 0 but now i can't take nobless, even if im on subclass levle 80
×
×
  • Create New...