Jump to content

Recommended Posts

Posted

Καλησπερα σε ολους.Αυτο το code το εγραψα πριν 2 ωρες και ειπα να το κανω share εδω μαζι σας.

Το ξερω οτι δεν ειναι κατι δυσκολο και σκληρο για να το κανεις, αλα πιστευω οτι ειναι καλο.Πριν αρχισω να πω οτι εγινε test  και λειτουργει(Για να μην εχουμε ερωτησεις του τυπου:To testare kaneis?).Ας ξεκινησουμε με την εισαγωγη....

***Τι ειναι αυτο το συστημα;

Ειναι ενα καινουργιο ειδος παικτων οι οποιοι ονομαζονται Heroic.

 

***Πως γινονται οι παικτες heroic members;

Για να γινει ενας χαρακτηρας heroic member πρεπει να εχει τις 2 παρακατω προυποθεσεις:

1)Να εχει πανω απο 8000 pvp.(Μπορειτε να αλαξετε τα pvp.Πως;Θα το δουμε αρκετα παρακατω)

2)Να ειναι nobless(Φανταστειτε ενας χαρακτηρας να εχει 8000 pvp και να μην ειναι nobless)

 

***Εστω οτι ο παικτης ειναι heroic.Και τι με αυτο;Τι παραπανω εχει απο τους αλους παικτες;

Οι Heroic παικτες παραμενουν σαν τους κανονικους παικτες αλα με της εξης διαφορες:

-Εχουν ξεχωριστο χρωμα στο ονομα τους.(Τωρα Ειναι κιτρινο,μπορειτε να το αλαξετε.Στο τελος αυτα).

-Εχουν ξεχωριστο χρωμα στο τιτλο τους.(Το ιδιο με παραπανω, μπορει να το αλαξετε)

-Οταν μπαινουν στο παιχνιδι το ονομα τους γινετε announce.

-Μπορουν να γραψουν στο hero voice.

-Εχουν ενα ξεχωριστο command(.town) που τους παει στην main town(Giran).

-Εχουν hero aura.

 

***Γινετε να ενεργοποιησω και να απενεργοποιησω το συστημα αυτο;Ή πρεπει να ξανασβησω ολο τον code απο την αρχη και το αντιθετο;

Γινετε.Το εχω κανει σε config,δηλαδη διαλεγετε εσεις true η false.(Ναι η οχι δηλαδη.)

 

***Πως γινετε να το βαλω στον server μου;(το μεγαλυτερο κομματι)

Καταρχας πρεπει να ξερετε οτι ειναι με java  αρα θα χρειαστει να εχετε compile Pack.Ας αρχισουμε.

 

Part1===============Κανοντας το Config.

Ανοιγετε eclipse και πατε gameserver/config/l2jmods.

Βρισκετε το παρακατω line:

TvTEventDoorsCloseOpenOnStartEnd =

Κατω απο αυτη βαζουμε το παρακατω :

#Allow Heroic Characters.
AllowHeroic = True

Αποθηκευουμε.

Υστερα παμε net.sf.l2j.Config.java

Βρισκουμε το

public static int L2JMOD_WEDDING_DIVORCE_COSTS;

.

Κατω απο αυτο βαζουμε:

public static boolean ALLOW_HEROIC;

Μετα βρισκουμε¨

L2JMOD_WEDDING_DIVORCE_COSTS            = Integer.parseInt(L2JModSettings.getProperty("WeddingDivorceCosts", "20"));

Κατω απο αυτο βαζουμε

ALLOW_HEROIC = Boolean.parseBoolean(L2JModSettings.getProperty("AllowHeroic", "True"));

.

Τελος part1.

 

Part2==============Επεξεργασια κοδικα.

Παμε net.sf.l2j.gameserver.clientpackets.Enterworld.java

Δημιουργουμε μια γραμμη στο τελος οποιοδηποτε code(βρισκουμε δηλαδη ενα })

Κατω απο το } που βρισκουμε κανουμε μια νεα γραμμη και προσθετουμε τον εξης κοδικα:

   if (Config.ALLOW_HEROIC)
             {
       if (activeChar.isNoble() && activeChar.getPvpKills() >= 8000)
       {
       activeChar.setAccessLevel(10);
           }
       }
       if (Config.ALLOW_HEROIC)
            {
       if (activeChar.getAccessLevel() == 10 && activeChar.isNoble()) //Apla gia asfalia
       {
       activeChar.getAppearance().setNameColor(0xCC6600);
       activeChar.getAppearance().setTitleColor(0x993366);
        activeChar.setHero(true);
       Announcements.getInstance().announceToAll("Heroic Member: "+activeChar.getName()+" has been logged in.");	
            }
       }

Αποθηκευουμε κλεινουμε.

Τωρα παμε net.sf.l2j.gameserver.clientpackets.Say2.java

Βρισκουμε

if (activeChar.isHero()

Το σβηνουμε και το κανουμε

if (activeChar.isHero() || activeChar.getAccessLevel() == 10)

Αποθηκευση κλεινουμε.

Παμε net.sf.l2j.gameserver.handler.voicedcommandhandlers

Κανουμε ενα νεο αρχειο με ονομα Town.java

Μεσα σε αυτο βαζουμε τον παρακατω κοδικα:

package net.sf.l2j.gameserver.handler.voicedcommandhandlers;

import net.sf.l2j.gameserver.Olympiad;
import net.sf.l2j.gameserver.handler.IVoicedCommandHandler;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;

//Author CrackerTM

public class Town implements IVoicedCommandHandler
{

  private static final String[] VOICED_COMMANDS = { "town" };
 
public boolean useVoicedCommand(String command, L2PcInstance activeChar,String target)
{
 if (command.equalsIgnoreCase("town"))
 {
  
  if(activeChar.isInJail())
     {
         activeChar.sendMessage("You can't use this command in jail.");
         return false;
     }
     else if(activeChar.isInOlympiadMode() || Olympiad.getInstance().isRegistered(activeChar))
     {
         activeChar.sendMessage("You can't use this command in olympiad mode.");
         return false;
     }
             
     else if(activeChar.atEvent)
     {
         activeChar.sendMessage("You can't use this command in event mode.");
         return false;
     }
     else  if (activeChar.isInDuel())
     {
         activeChar.sendMessage("You can't use this command in duel mode.");
         return false;
     }
     else if (activeChar.isDead())
     {
        activeChar.sendMessage("You can't use this command in dead mode.");  
     return false;
     }        
     else if (activeChar.getKarma() > 0 || activeChar.getPvpFlag() > 0)
     {
        activeChar.sendMessage("You can't use this command in combat mode.");
     return false;
     }
     else if (activeChar.isInCombat())
     {
   	  activeChar.sendMessage("You can't use this command in combat mode");
   	  return false;
     }
     else if (activeChar.getAccessLevel() < 10)
     {
   	 activeChar.sendMessage("Only heroic members can use this command");
   	 return false;
     }
     else if (activeChar.inObserverMode())
     {
        activeChar.sendMessage("You can't use this command in oberver mode.");
        return false;
     }            
     else if (activeChar.isFestivalParticipant())
     {
         activeChar.sendMessage("You can't use this command in festical mode.");
         return false;
     }         
  
  activeChar.teleToLocation(83802, 148622, -3394, true); 
  activeChar.sendMessage("You are teleporting to Giran Castle Town Now,Heroic Member.");
 }
 return true;
}
public String[] getVoicedCommandList()
{
 return VOICED_COMMANDS;
}
}

Αποθηκευουμε,κλεινουμε.

Παμε στο net.sf.l2j.gameserver.Gameserver.java

Βρισκουμε

import net.sf.l2j.gameserver.util.DynamicExtension;

Κατω απο αυτο γραφουμε

import net.sf.l2j.gameserver.handler.voicedcommandhandlers.Town;

Μετα βρισκουμε

if(Config.L2JMOD_ALLOW_WEDDING)

Δυο σειρες πανω απο αυτο γραφουμε

_voicedCommandHandler.registerVoicedCommandHandler(new Town());

Αποθηκεουμε,Κλεινουμε.Αν θελετε κλειστε και το eclipse,Ναι ναι τελειωσαμε :D.

 

***Extra Βοηθεια πως αλαζουμε τα χρωματα,κλπ.

Για το χρωμα των ονοματων

Στο enterworld.java στη σειρα

activeChar.getAppearance().setNameColor(0xCC6600);

Αλαζουμε το CC6600 Με το κοδικα του name που θελουμε.

Για το χρωμα των τιτλων.

Στο enterworld.java στη σειρα

activeChar.getAppearance().setTitleColor(0x993366);

Αλλαζουμε το 993366 με το κοδικα που θελουμε.

Πως οταν πατανε .town να μην πανε στην giran αλλα οπου θελω εγω.

Στο Town.java που δημιουργησατε βρειτε τη σειρα

activeChar.teleToLocation(83802, 148622, -3394, true);

Αντικαταστειτε να νουμερα με το loc της επιλογης σας.

----------------------------------------------------------------------------------------------------------

Αυτο ηταν σας ευχομε καλη τυχη,οπως ειδατε το εγραψα οσο αναλυτικοτερα μπορουσα.Ξεχασα να πω οτι ειναι για Interlude L2J.

 

 

 

 

 

Posted

ta access level ti douleia exoun kai dn ktlveno to logo pou xrhsimopoieis kati tetoio kai to susthma einai sxetika aplo dn exei kati to idietero kai mporei na pragmatopoih8ei arketa pio apla.

Posted

ετοιμο

Δεν ξερω πολλα απο java,αλλα δεν βλεπω να το εβαλες

επισης,γιατι αυτο

ta access level ti douleia exoun kai dn ktlveno to logo pou xrhsimopoieis kati tetoio kai to susthma einai sxetika aplo dn exei kati to idietero kai mporei na pragmatopoih8ei arketa pio apla.

;
Posted

ta access level ti douleia exoun kai dn ktlveno to logo pou xrhsimopoieis kati tetoio kai to susthma einai sxetika aplo dn exei kati to idietero kai mporei na pragmatopoih8ei arketa pio apla.

an o charaktiras exei ta pvp klp...tote to access level tou na paei 10. kai an to access tou level ine 10...tote na parei tis eksis idiotites
Posted

-Εχουν hero aura.

 

activeChar.setHero(true);

 

 

 

....

 

Υπαρχει διαφορα απο το hero aura στο sethero

sethero θα εχει ολα τα hero skills

δεν αξιζει αν το καλασκεφτεις xd

Posted

kai dld gia na kaneis olo auto prp na kaneis use tin methodo twn acces level eleino.

to idio pragma ine ( tha mporouse kai xoris ta access den ipa to antitheto,ala siga...etc me ir8e ekeini tin ora :D)
Posted

Vasika blepw ton kwdika grammenos eleina proxiri douleia fenete oti 3ereis liga pragmata alla mpravo pou prospa8eis to code mporei na ginei kanontas apla mia methodo sto l2pcinstance .

Posted

Vasika blepw ton kwdika grammenos eleina proxiri douleia fenete oti 3ereis liga pragmata alla mpravo pou prospa8eis to code mporei na ginei kanontas apla mia methodo sto l2pcinstance .

kita na sou pw tin alithia asxoloume me l2j molis 1 vdomada. tha mporousa na kanw auto pou les ala den kserw 1 pragma...to opoio to xw kanei kai se topic:http://www.maxcheaters.com/forum/index.php?topic=189377.0

Tcpa i prospathia metraei :)

Guest
This topic is now closed to further replies.



  • Posts

    • Hello everyone, I would like some help adapting this file for a custom community board l2jFrozen:   package com.l2jfrozen.gameserver.communitybbs; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Map; import java.util.StringTokenizer; import javolution.util.FastMap; import com.l2jfrozen.Config; import com.l2jfrozen.gameserver.cache.HtmCache; import com.l2jfrozen.gameserver.communitybbs.Manager.BaseBBSManager; import com.l2jfrozen.gameserver.communitybbs.Manager.ClanBBSManager; import com.l2jfrozen.gameserver.communitybbs.Manager.PostBBSManager; import com.l2jfrozen.gameserver.communitybbs.Manager.RegionBBSManager; import com.l2jfrozen.gameserver.communitybbs.Manager.TeleBBSManager; import com.l2jfrozen.gameserver.communitybbs.Manager.TopicBBSManager; import com.l2jfrozen.gameserver.communitybbs.Manager.shopBBSManager; import com.l2jfrozen.gameserver.handler.IBBSHandler; import com.l2jfrozen.gameserver.model.L2Clan; import com.l2jfrozen.gameserver.model.L2World; import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance; import com.l2jfrozen.gameserver.model.multisell.L2Multisell; import com.l2jfrozen.gameserver.network.L2GameClient; import com.l2jfrozen.gameserver.network.SystemMessageId; import com.l2jfrozen.gameserver.network.serverpackets.ShowBoard; import com.l2jfrozen.gameserver.network.serverpackets.SystemMessage; public class CommunityBoard { private static CommunityBoard _instance; private final Map<String, IBBSHandler> _handlers; protected final SimpleDateFormat fmt = new SimpleDateFormat("H:mm."); public CommunityBoard() { _handlers = new FastMap<>(); // null; } public boolean checkPlayerConditions(L2PcInstance activeChar, String command) { if (activeChar.isInOlympiadMode()) { activeChar.sendMessage("CommunityBoard use is prohibited at the Olympiad"); return false; } if (activeChar.isFlying() || activeChar.isMounted()) { activeChar.sendMessage("CommunityBoard use is prohibited at while flying or mounted!"); return false; } if (activeChar.inObserverMode()) { activeChar.sendMessage("CommunityBoard use is prohibited in ObserveMode!"); return false; } if (activeChar.isAlikeDead() || activeChar.isDead()) { activeChar.sendMessage("CommunityBoard use is prohibited While Dead"); return false; } if (activeChar.isInCombat()) { activeChar.sendMessage("CommunityBoard use is prohibited in Combat!"); return false; } if (activeChar.isCastingNow()) { activeChar.sendMessage("CommunityBoard use is prohibited while Casting!"); return false; } if (activeChar.isAttackingNow()) { activeChar.sendMessage("CommunityBoard use is prohibited while Attacking!"); return false; } if (activeChar.isInDuel()) { activeChar.sendMessage("CommunityBoard use is prohibited while Playing Duel!"); return false; } if (activeChar.isFishing()) { activeChar.sendMessage("CommunityBoard use is prohibited while Fishing!"); return false; } if (activeChar.isInStoreMode()) { activeChar.sendMessage("CommunityBoard use is prohibited in StoreMode!"); return false; } if (activeChar.isInJail() || activeChar.isCursedWeaponEquipped() || activeChar.isFlying() || activeChar.isInBoat() || activeChar.isProcessingTransaction() || activeChar.isStunned()) { activeChar.sendMessage("CommunityBoard use is prohibited right now!"); return false; } return true; } public static CommunityBoard getInstance() { if (_instance == null) { _instance = new CommunityBoard(); } return _instance; } /** * by Azagthtot * @param handler as IBBSHandler */ public void registerBBSHandler(final IBBSHandler handler) { for (final String s : handler.getBBSCommands()) { _handlers.put(s, handler); } } /** * by Azagthtot * @param client * @param command */ public void handleCommands(final L2GameClient client, final String command) { L2PcInstance activeChar = client.getActiveChar(); if (activeChar == null) return; if(!checkPlayerConditions(activeChar, command)) return; if (Config.COMMUNITY_TYPE.equals("full")) { String cmd = command.substring(4); String params = ""; final int iPos = cmd.indexOf(" "); if (iPos != -1) { params = cmd.substring(iPos + 1); cmd = cmd.substring(0, iPos); } final IBBSHandler bbsh = _handlers.get(cmd); if (bbsh != null) { bbsh.handleCommand(cmd, activeChar, params); } else { if (command.startsWith("_bbsclan")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbsmemo")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbsgetfav")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbstopics")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbsposts")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbstop")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbshome")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbsloc")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbstele")) { TeleBBSManager.getInstance().parsecmd(command, activeChar); } else if (command.startsWith("_bbsShop")) { shopBBSManager.getInstance().parsecmd(command, activeChar); } else if(command.startsWith("_bbsmultisell;")) { StringTokenizer st = new StringTokenizer(command, ";"); st.nextToken(); shopBBSManager.getInstance().parsecmd("_bbsShop;" + st.nextToken(), activeChar); L2Multisell.getInstance().SeparateAndSend(Integer.parseInt(st.nextToken()), activeChar, false, 0); } else { ShowBoard sb = new ShowBoard("<html><body><br><br><center>the command: " + command + " is not implemented yet</center><br><br></body></html>", "101"); activeChar.sendPacket(sb); sb = null; activeChar.sendPacket(new ShowBoard(null, "102")); activeChar.sendPacket(new ShowBoard(null, "103")); } } } else if (Config.COMMUNITY_TYPE.equals("old")) { RegionBBSManager.getInstance().parsecmd(command, activeChar); } else { activeChar.sendPacket(new SystemMessage(SystemMessageId.CB_OFFLINE)); } activeChar = null; } /** * @param client * @param url * @param arg1 * @param arg2 * @param arg3 * @param arg4 * @param arg5 */ public void handleWriteCommands(final L2GameClient client, final String url, final String arg1, final String arg2, final String arg3, final String arg4, final String arg5) { L2PcInstance activeChar = client.getActiveChar(); if (activeChar == null) return; if (Config.COMMUNITY_TYPE.equals("full")) { if (url.equals("Topic")) { TopicBBSManager.getInstance().parsewrite(arg1, arg2, arg3, arg4, arg5, activeChar); } else if (url.equals("Post")) { PostBBSManager.getInstance().parsewrite(arg1, arg2, arg3, arg4, arg5, activeChar); } else if (url.equals("Region")) { RegionBBSManager.getInstance().parsewrite(arg1, arg2, arg3, arg4, arg5, activeChar); } else if (url.equals("Notice")) { ClanBBSManager.getInstance().parsewrite(arg1, arg2, arg3, arg4, arg5, activeChar); } else { ShowBoard sb = new ShowBoard("<html><body><br><br><center>the command: " + url + " is not implemented yet</center><br><br></body></html>", "101"); activeChar.sendPacket(sb); sb = null; activeChar.sendPacket(new ShowBoard(null, "102")); activeChar.sendPacket(new ShowBoard(null, "103")); } } else if (Config.COMMUNITY_TYPE.equals("old")) { RegionBBSManager.getInstance().parsewrite(arg1, arg2, arg3, arg4, arg5, activeChar); } else { ShowBoard sb = new ShowBoard("<html><body><br><br><center>The Community board is currently disable</center><br><br></body></html>", "101"); activeChar.sendPacket(sb); sb = null; activeChar.sendPacket(new ShowBoard(null, "102")); activeChar.sendPacket(new ShowBoard(null, "103")); } activeChar = null; } }   And making it work in another l2jOrion project:   package l2jorion.game.community; import java.util.HashMap; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import l2jorion.Config; import l2jorion.game.community.manager.BaseBBSManager; import l2jorion.game.community.manager.ClanBBSManager; import l2jorion.game.community.manager.FavoriteBBSManager; import l2jorion.game.community.manager.FriendsBBSManager; import l2jorion.game.community.manager.MailBBSManager; import l2jorion.game.community.manager.PostBBSManager; import l2jorion.game.community.manager.RankBBSManager; import l2jorion.game.community.manager.RegionBBSManager; import l2jorion.game.community.manager.TopBBSManager; import l2jorion.game.community.manager.TopicBBSManager; import l2jorion.game.handler.ICommunityBoardHandler; import l2jorion.game.model.actor.instance.L2PcInstance; import l2jorion.game.network.L2GameClient; import l2jorion.game.network.SystemMessageId; import l2jorion.logger.Logger; import l2jorion.logger.LoggerFactory; public class CommunityBoardManager { protected static Logger LOG = LoggerFactory.getLogger(CommunityBoardManager.class); private Map<String, ICommunityBoardHandler> _handlers = new HashMap<>(); private final Map<Integer, String> _bypasses = new ConcurrentHashMap<>(); private static CommunityBoardManager _instance; public static CommunityBoardManager getInstance() { if (_instance == null) { _instance = new CommunityBoardManager(); } return _instance; } private CommunityBoardManager() { registerBBSHandler(new TopBBSManager()); registerBBSHandler(new FavoriteBBSManager()); registerBBSHandler(new RegionBBSManager()); registerBBSHandler(new ClanBBSManager()); registerBBSHandler(new TopicBBSManager()); registerBBSHandler(new MailBBSManager()); registerBBSHandler(new FriendsBBSManager()); registerBBSHandler(new TopicBBSManager()); registerBBSHandler(new PostBBSManager()); registerBBSHandler(new RankBBSManager()); LOG.info("CommunityBoardHandlers: Loaded " + _handlers.size() + " handlers"); } public void registerBBSHandler(ICommunityBoardHandler handler) { for (String bypass : handler.getBypassBbsCommands()) { if (_handlers.containsKey(bypass)) { continue; } _handlers.put(bypass, handler); } } public void onBypassCommand(L2GameClient client, String command) { final L2PcInstance player = client.getActiveChar(); if (player == null) { return; } if (Config.COMMUNITY_TYPE.equals("off")) { player.sendPacket(SystemMessageId.CB_OFFLINE); return; } /* * if (!AutoImageSenderManager.wereAllImagesSent(player)) { player.sendMessage("Community wasn't loaded yet, try again in few seconds."); player.sendPacket(new ExShowScreenMessage("Community wasn't loaded yet, try again in few seconds.", 2000, 2, false)); return; } */ String cmd = command.substring(4); String params = ""; final int iPos = cmd.indexOf(" "); if (iPos != -1) { params = cmd.substring(iPos + 1); cmd = cmd.substring(0, iPos); } ICommunityBoardHandler bypass = _handlers.get(cmd); if (bypass != null) { bypass.handleCommand(cmd, player, params); } else { if (command.startsWith("_bbshome")) { TopBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsgetfav") || command.startsWith("bbs_add_fav") || command.startsWith("_bbsdelfav_")) { FavoriteBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsloc")) { RegionBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsclan")) { ClanBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsmemo")) { TopicBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsmail") || command.equals("_maillist_0_1_0_")) { MailBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_friend") || command.startsWith("_block")) { FriendsBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbstopics")) { TopicBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsposts")) { PostBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsshowrank")) { RankBBSManager.getInstance().parseCmd(command, player); } else { BaseBBSManager.separateAndSend("<html><body><br><br><center>The command: " + command + " isn't implemented.</center></body></html>", player); } } } public void handleWriteCommands(L2GameClient client, String url, String arg1, String arg2, String arg3, String arg4, String arg5) { final L2PcInstance player = client.getActiveChar(); if (player == null) { return; } if (Config.COMMUNITY_TYPE.equals("off")) { player.sendPacket(SystemMessageId.CB_OFFLINE); return; } if (url.equals("Topic")) { TopicBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else if (url.equals("Post")) { PostBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else if (url.equals("_bbsloc")) { RegionBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else if (url.equals("_bbsclan")) { ClanBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else if (url.equals("Mail")) { MailBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else if (url.equals("Clan")) { ClanBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else if (url.equals("_friend")) { FriendsBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else { BaseBBSManager.separateAndSend("<html><body><br><br><center>The command: " + url + " isn't implemented.</center></body></html>", player); } } public ICommunityBoardHandler getCommunityHandler(String bypass) { if (_handlers.isEmpty()) { return null; } for (Map.Entry<String, ICommunityBoardHandler> entry : _handlers.entrySet()) { if (bypass.contains(entry.getKey())) { return entry.getValue(); } } return null; } public void addBypass(L2PcInstance player, String title, String bypass) { _bypasses.put(player.getObjectId(), title + "&" + bypass); } public String removeBypass(L2PcInstance player) { return _bypasses.remove(player.getObjectId()); } public Map<Integer, String> getAllBypass() { return _bypasses; } }  
    • Γεια σας ψαχνω ενα pride style interlude pack me patch αν ειναι ευκολο ευχαριστω πολυ
    • Greetings looking for interlude pride style pack  with patch if anyone can give me thank you 
  • Topics

×
×
  • Create New...