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.
DISCORD :
utchiha_market
telegram :
https://t.me/utchiha_market
SELLIX STORE :
https://utchihamkt.mysellix.io/
Join our server for more products :
https://discord.gg/hood-services
https://campsite.bio/utchihaamkt
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.