l2jkain Posted June 25, 2018 Posted June 25, 2018 Hello, I would like a help with a bug in my tvt event. The title of the participants does not update the kills in the titles. Code Add : UserInfo.java writeS((_activeChar.getPolyType() != PolyType.DEFAULT) ? "Morphed" : _activeChar.getTitle()); for writeS((_activeChar.getPolyType() != PolyType.DEFAULT) ? "Morphed" : _activeChar.isInEvent() ? "Kills: " + _activeChar.getEventScore() : _activeChar.getTitle()); CharInfo.java if (gmSeeInvis) writeS("Invisible"); else writeS(_activeChar.getTitle()); for if (gmSeeInvis) writeS("Invisible"); else writeS(_activeChar.isInEvent() ? "Kills: " + _activeChar.getEventScore() : _activeChar.getTitle()); Did I do something wrong? Quote
0 melron Posted June 26, 2018 Posted June 26, 2018 it is not a bug. You are missing broadcastUserInfo() when you increase the event kills. .... .... activeChar.increaseTvTKills(); +activeChar.broadcastUserInfo(); .... .... 1 Quote
0 tazerman2 Posted June 26, 2018 Posted June 26, 2018 yes no need put title in userinfo and charinfo just add it in start event use fake title and in public void onKillUpdatePvPKarma(Playable target) you can use here the show title kills but first need put in event core on start use title you can find code from l2jfrozen Quote
0 l2jkain Posted June 26, 2018 Author Posted June 26, 2018 1 hour ago, tazerman2 said: sim não precisa colocar título em userinfo e charinfo basta adicioná-lo no evento start usar título falso e em public void onKillUpdatePvPKarma (alvo jogável) você pode usar aqui o título do show mata mas primeiro precisa colocar no núcleo do evento no start use title você pode encontrar código de l2jfrozen Quote
0 l2jkain Posted June 26, 2018 Author Posted June 26, 2018 23 minutes ago, melron said: Não é um inseto. Você está faltando broadcastUserInfo () quando você aumenta o evento mata. even adding here does not work / Count the private kill killer.increaseEventScore(); killer.sendPacket(new PlaySound(0, "ItemSound.quest_itemget")); +killer.broadcastUserInfo(); Quote
0 Rootware Posted June 26, 2018 Posted June 26, 2018 In L2J exists temporary visual style class. He names PcAppearance. You can use him for dynamic changing vesual style of player w/o changing main properties. How it work you can see in last L2J sources. And not need to create bicycle anew. Just change in CharInfo and UserInfo getting all visual styles from player.getTitle() to player.getAppearance().getTitle(). Nothing more. Quote
0 Nightw0lf Posted June 28, 2018 Posted June 28, 2018 to write correctly an event that changes your colors or title/username you MUST save them into database, user id with original username/title/colors (specially if you have color system) so you can handle the character disconnection with less memory garbage you use this part of database in 3 cases (Event Start, Event End, Char Disconnection) Quote
0 xxdem Posted June 28, 2018 Posted June 28, 2018 8 hours ago, Nightw0lf said: to write correctly an event that changes your colors or title/username you MUST save them into database, user id with original username/title/colors (specially if you have color system) so you can handle the character disconnection with less memory garbage you use this part of database in 3 cases (Event Start, Event End, Char Disconnection) :DDDDDDDD Quote
0 Tryskell Posted June 28, 2018 Posted June 28, 2018 8 hours ago, Nightw0lf said: to write correctly an event that changes your colors or title/username you MUST save them into database, user id with original username/title/colors (specially if you have color system) so you can handle the character disconnection with less memory garbage you use this part of database in 3 cases (Event Start, Event End, Char Disconnection) Terrible idea, you are stucked with a colored name/title with no means to edit it otherwise. Simply edit the content stored in memory, it's enough. For an event, don't store anything, even the initial location can be processed based on area spawn locs (which should be handled by your event engine). Regarding the question, Melron answered. You have to send back the changes to clients, using packets. Simply see how settitle / setname are handled. Quote
Question
l2jkain
Hello, I would like a help with a bug in my tvt event. The title of the participants does not update the kills in the titles.
Code Add :
UserInfo.java
writeS((_activeChar.getPolyType() != PolyType.DEFAULT) ? "Morphed" : _activeChar.getTitle());
for
writeS((_activeChar.getPolyType() != PolyType.DEFAULT) ? "Morphed" : _activeChar.isInEvent() ? "Kills: " + _activeChar.getEventScore() : _activeChar.getTitle());
CharInfo.java
if (gmSeeInvis)
writeS("Invisible");
else
writeS(_activeChar.getTitle());
for
if (gmSeeInvis)
writeS("Invisible");
else
writeS(_activeChar.isInEvent() ? "Kills: " + _activeChar.getEventScore() : _activeChar.getTitle());
Did I do something wrong?
9 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.