This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..
Question
fxb0t
Καλησπερα,
Χρειαζομαι μια βοηθεια.. Προσπαθω να φτιαξω μια voiced command που θα μπορει να χρησιμποιησει καποιος ωστε να αλλαζει το ονομα του.
Πηρα τον κωδικα απο το admin change_name αλλα για καποιο λογο δεν μπορω να δωσω το ονομα στην μεταβλητη..
Στο html χρησιμοποιω var.
if ((command.startsWith("changeName"))) { if (target != null) { try { String val = target.substring(17); L2Object targetx = activeChar.getTarget(); L2PcInstance player = null; if (targetx instanceof L2PcInstance) { player = (L2PcInstance) targetx; } else { return false; } if (CharNameTable.getInstance().getIdByName(val) > 0) { activeChar.sendMessage("Name: " + val + " already exists"); return false; } player.setName(val); player.store(); activeChar.sendMessage("Changed name to " + val); player.broadcastUserInfo(); CommunityServerThread.getInstance().sendPacket(new WorldInfo(player, null, WorldInfo.TYPE_UPDATE_PLAYER_DATA)); if (player.isInParty()) { // Delete party window for other party members player.getParty().broadcastToPartyMembers(player, PartySmallWindowDeleteAll.STATIC_PACKET); for (L2PcInstance member : player.getParty().getMembers()) { // And re-add if (member != player) { member.sendPacket(new PartySmallWindowAll(member, player.getParty())); } } } if (player.getClan() != null) { player.getClan().broadcastClanStatus(); } RegionBBSManager.getInstance().changeCommunityBoard(); } catch (StringIndexOutOfBoundsException e) { // Case of empty character name activeChar.sendMessage("Usage: //setname new_name_for_target"); } } else { // showHTML(activeChar); String html = HtmCache.getInstance().getHtm("en", "data/html/panelhelp/ChangeName.htm"); if (html == null) { html = "<html><body><br><br><center><font color=LEVEL>404:</font> File Not Found</center></body></html>"; } activeChar.sendPacket(new NpcHtmlMessage(1, html)); return true; } return true; } //command changeNameΚαι το html ειναι:
Αν μπορουσε καποιος να βοηθησει θα ημουν υποχρεωμενος μιας κ δεν μπορω να καταλαβω γιατι δεν περνει η μεταβλητη τη τιμη...
Edited by fxb0t4 answers to this question
Recommended Posts