Jump to content
  • 0

Item Shop Ecc. Or Communty Shop & Buffer Ecc.


Question

Posted (edited)

ENG:

 

How can i create my personal Item " All in one Item " buffer & gmshop/seller  or my personal  Community  Shop & Buffer for interlude L2jfrozen i need info and ur help maxchaters  i dont want copy from another ppl.

 

Thanks & sry for my bad english !

 

RO: Salut 

Pot sa si platesc prin paypal pentru a fi invatat si ajutat numai sa aveti rabdare cu mine  ms  . 

 

Cum as putea crea si eu un ITEM care sa il aiba orice prieten care intra pe servar sa il aiba in inventar  "Pentru l2jfrozen si nu numai "  cu buffer si gmshop ecc. sau de preferat ar fi Community Board  tot cu buffer. gmshop, augment, info server  ecc... va rog frumos dati-mi si mie o mana de ajutor as doar sa le invat sa fac si nu sa copiez dupa alti.

 

*sunt disponibil sa  folosesc si skype sau alte prog pentru mai multe info. 

 

Multumesc

 

 

Exemplu:

 

Community Board : 

https://www.youtube.com/watch?v=UshGItD0VUM

40887741.jpg CommunityBoard_008.jpg

 

 

 

Item GmShop Buffer ecc. :

 

xXXHdCI.png Vik3Rzz.png  

 

 

 

Edited by En3rgik

7 answers to this question

Recommended Posts

  • 0
Posted

bump.

Use the bump button...why you dont search any ready shop or Cb and just make your html and your multisells like what you want..?or just buy one if you dont know how to make it..there in marketplace is one from Gam3Master and its a good price..

  • 0
Posted (edited)

i need info for adapted another community board & all in one item in l2j interlude 

 

i have found another community board  &  all in one item  but i dont know adapted in .java

 

 

 

 

 

 

 

 

 

 

 

 

*sry  for my bad english  

Edited by En3rgik
  • 0
Posted (edited)

No one will give you ready code.


// Source File Name:   CommunityBoard.java

package com.l2jfrozen.gameserver.communitybbs;

import com.l2jfrozen.Config;
import com.l2jfrozen.gameserver.communitybbs.Manager.BaseBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.BuffBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.ClanBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.FriendsBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.MailBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.PostBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.RegionBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.RepairBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.TeleBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.TopBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.TopicBBSManager;
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfrozen.gameserver.network.L2GameClient;
import com.l2jfrozen.gameserver.network.SystemMessageId;

public class CommunityBoard
{
    private static class SingletonHolder
    {

        protected static final CommunityBoard _instance = new CommunityBoard();


        private SingletonHolder()
        {
        }
    }


    protected CommunityBoard()
    {
    }

    public static CommunityBoard getInstance()
    {
        return SingletonHolder._instance;
    }

    public void handleCommands(L2GameClient client, String command)
    {
        L2PcInstance activeChar = client.getActiveChar();
        if(activeChar == null)
            return;
        if(!Config.ENABLE_COMMUNITY_BOARD)
        {
            activeChar.sendPacket(SystemMessageId.CB_OFFLINE);
            return;
        }
        if(command.startsWith("_bbshome"))
            TopBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbsloc"))
            RegionBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbsclan"))
            ClanBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbsmemo"))
            TopicBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_maillist_0_1_0_"))
            MailBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_friend") || command.startsWith("_block"))
            FriendsBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbstopics"))
            TopicBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbsposts"))
            PostBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbstop"))
            TopBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbstele"))
            TeleBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbsbuff"))
            BuffBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbsrepair"))
            RepairBBSManager.getInstance().parseCmd(command, activeChar);
        else
            BaseBBSManager.separateAndSend((new StringBuilder()).append("<html><body><br><br><center>The command: ").append(command).append(" isn't implemented.</center></body></html>").toString(), activeChar);
    }

    public void handleWriteCommands(L2GameClient client, String url, String arg1, String arg2, String arg3, String arg4, String arg5)
    {
        L2PcInstance activeChar = client.getActiveChar();
        if(activeChar == null)
            return;
        if(!Config.ENABLE_COMMUNITY_BOARD)
        {
            activeChar.sendPacket(SystemMessageId.CB_OFFLINE);
            return;
        }
        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
        if(url.equals("Mail"))
            MailBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, activeChar);
        else
            BaseBBSManager.separateAndSend((new StringBuilder()).append("<html><body><br><br><center>The command: ").append(url).append(" isn't implemented.</center></body></html>").toString(), activeChar);
    }
}

// Source File Name:   CommunityBoard.java

package com.l2jfrozen.gameserver.communitybbs;


// Referenced classes of package com.l2jfrozen.gameserver.communitybbs:
//            CommunityBoard

private static class CommunityBoard$SingletonHolder
{

    protected static final CommunityBoard _instance = new CommunityBoard();


    private CommunityBoard$SingletonHolder()
    {
    }
}

i have this code for Community Board but i dont know adapted  : https://mega.nz/#!QRwzXRYK

 

Key:

!9ymvkLtzucGflvi3uhD5FxW_SMupwV7UHSjUEDPS14g

Mirror: http://www.megafileupload.com/k5cg/Community_Board_by____________For_Interlude.rar

Edited by En3rgik
  • 0
Posted

 

// Source File Name:   CommunityBoard.java

package com.l2jfrozen.gameserver.communitybbs;

import com.l2jfrozen.Config;
import com.l2jfrozen.gameserver.communitybbs.Manager.BaseBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.BuffBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.ClanBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.FriendsBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.MailBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.PostBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.RegionBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.RepairBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.TeleBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.TopBBSManager;
import com.l2jfrozen.gameserver.communitybbs.Manager.TopicBBSManager;
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfrozen.gameserver.network.L2GameClient;
import com.l2jfrozen.gameserver.network.SystemMessageId;

public class CommunityBoard
{
    private static class SingletonHolder
    {

        protected static final CommunityBoard _instance = new CommunityBoard();


        private SingletonHolder()
        {
        }
    }


    protected CommunityBoard()
    {
    }

    public static CommunityBoard getInstance()
    {
        return SingletonHolder._instance;
    }

    public void handleCommands(L2GameClient client, String command)
    {
        L2PcInstance activeChar = client.getActiveChar();
        if(activeChar == null)
            return;
        if(!Config.ENABLE_COMMUNITY_BOARD)
        {
            activeChar.sendPacket(SystemMessageId.CB_OFFLINE);
            return;
        }
        if(command.startsWith("_bbshome"))
            TopBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbsloc"))
            RegionBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbsclan"))
            ClanBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbsmemo"))
            TopicBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_maillist_0_1_0_"))
            MailBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_friend") || command.startsWith("_block"))
            FriendsBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbstopics"))
            TopicBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbsposts"))
            PostBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbstop"))
            TopBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbstele"))
            TeleBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbsbuff"))
            BuffBBSManager.getInstance().parseCmd(command, activeChar);
        else
        if(command.startsWith("_bbsrepair"))
            RepairBBSManager.getInstance().parseCmd(command, activeChar);
        else
            BaseBBSManager.separateAndSend((new StringBuilder()).append("<html><body><br><br><center>The command: ").append(command).append(" isn't implemented.</center></body></html>").toString(), activeChar);
    }

    public void handleWriteCommands(L2GameClient client, String url, String arg1, String arg2, String arg3, String arg4, String arg5)
    {
        L2PcInstance activeChar = client.getActiveChar();
        if(activeChar == null)
            return;
        if(!Config.ENABLE_COMMUNITY_BOARD)
        {
            activeChar.sendPacket(SystemMessageId.CB_OFFLINE);
            return;
        }
        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
        if(url.equals("Mail"))
            MailBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, activeChar);
        else
            BaseBBSManager.separateAndSend((new StringBuilder()).append("<html><body><br><br><center>The command: ").append(url).append(" isn't implemented.</center></body></html>").toString(), activeChar);
    }
}

// Source File Name:   CommunityBoard.java

package com.l2jfrozen.gameserver.communitybbs;


// Referenced classes of package com.l2jfrozen.gameserver.communitybbs:
//            CommunityBoard

private static class CommunityBoard$SingletonHolder
{

    protected static final CommunityBoard _instance = new CommunityBoard();


    private CommunityBoard$SingletonHolder()
    {
    }
}
i have this code for Community Board but i dont know adapted  : https://mega.nz/#!QRwzXRYK

 

Key:

!9ymvkLtzucGflvi3uhD5FxW_SMupwV7UHSjUEDPS14g
Mirror: http://www.megafileupload.com/k5cg/Community_Board_by____________For_Interlude.rar
Start with imports delete the current imports and then cntrl alt and o or make it manual

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • Vouch for @Ave i can say im very statisfied with the order I've made he was fast and reliable i totally recommend him to anyone who wants a decent updater with high quality design.
    • What can I say other than that I’m satisfied with the order I made. The guy is reliable and very good at what he does. I recommend him 100%.
    • Lineage2 Freya High Five @ Reshade with fog and rain etc @ Gracia final epilogue atmosphere   this reshade will eat lots of GPU power 50% or more of an RTX 3060 so be carefull depending on what effects are activated and their settings will eat even more GPU recomended 60hz monitor settings and via nvidia panel in Lineage2 game profile vsync settings to on effects are set up till film deck and the rest are not used but still working again this can eat alot of GPU Don't overheat GPU this is for freya high five but might work on others too copy in the  System  folder the folder  reshade-shaders  and the files  d3d9.dll  ReShade.ini  ReShadePreset.ini  ReShade.log  CccDddCcc.ini insert opens the menu and delete is on and of some settings need  ctrl + left click  to be changed   making another profile will reset the not activated effects to their default values so just copy the profile  CccDddCcc  and rename if needed also something needs to be closed from settings in game menu, the blur at distance and advanced shaders but keeping the advanced water effects all reflections   for those that don't like the h5 look of the sky and the red fog and rain and ambien red at night on all maps well if we want the cool gracia final epilogue back then we need to do this rename the  Maps  folder to Mapsretail or whatever copy the  Maps  folder from gracia final epilogue to h5 also we need the  L2_Skies.utx  from gracia final epilogue  Textures  folder to be replaced and also we need to do the same to the files  timeenv0.int  timeenv1.int  timeenv2.int  timeenv3.int  found in  system  folder   another setting that will probably be needed but not really tested out is to open file  option.ini  from  system  folder and add cachesize like this   [FirstRun] FirstRun=2   [Engine.GameEngine] CacheSizeMegs=512   also maybe is good to change those to 4.000000   [ClippingRange] Terrain=4.000000 Actor=4.000000 StaticMesh=4.000000 StaticMeshLod=4.000000 Pawn=4.000000       sorry bad english   https://mega.nz/file/aRNXxDrQ#mbxrNERBtW0XEEezK6w8-86oZWuX1k6NgtR6RZWKRVM   the compression on the video is kinda bad but meh    
  • Topics

×
×
  • Create New...

Important Information

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..