
ton3
Members-
Posts
168 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by ton3
-
https://cloud.mail.ru/public/2HxZ/5EqMTUejf
-
can you pm me? I need your developer services but I can't pm you and also check your skype pls
-
Hello Rootware, do you know how to change it on interlude client? I tried to change it but it doesn't work.
-
yellow
-
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?
-
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?
-
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.
-
does anyone know how to change VIP chat color? its currently using blue, same as announcements and its messing everything.
-
I can't find it, thank you for your help tho!
-
are you using the interlude version? Because mine is not showing chatChanel tab.
-
am I using the wrong xdat editor version? I don't see chatChanel, I can see only windows, shortcuts and etc
-
I want to change the color from blue to yellow, is say2 located in interface.u?
-
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
-
Adena on skelth server 0.7e = 1kk paypal only, pm me
-
tyrant 69 naked, 20 euros dark avenger 68 naked, 20 euros paypal only, pm me
-
price wc?
-
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.
-
Can anyone share vanganth web account creator or any working panel for web?
-
Help Oficial Ru Server Classic System Eng
ton3 replied to Voireusi's topic in Request Hacks & Cheats [English]
teleport htmls are from server side, i don't think you can translate them to english but i might be wrong. -
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?
-
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