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

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • Okay I respect that but why is your other account banned?   I don't think this happened just because you delayed somebodys work even in 2012
    • Do You understand the fact, I won't scam anyone? Can You grasp such idea?  Second of all, if a random restaurant on Google Maps has 599 positive reviews and few negative ones with 4,8* score, do You ask Google to block it's profile and burn the place down? No? Then why the fuck You are crying about my random delays? If someone can't get a CUSTOM DESIGN on time, I refund. I'm not 16  y.o. anymore. I don't make living out of this L2 bullshit. Never did. Since 2012 I've made shit tons of projects. How many delays did I have? 12? 15? Out of hundrets of projects. Calm Your tits please. If I would actually take 4k euro and NOT deliver and NOT refund - admins can ban me. So don't compare me to Simple. And just so You know, Celestine sent me customers, so it's not like I've worked with him on his account all the time. That's another thing You won't understand. I won't waste anymore time on You and any other cunt who never was my customer but is bitching just because he has nothing better to do in his life. You don't like my work? Hove along, I don't give a shit. 
    • So he's like unsimple you would say? Cherry picking who's getting scammed.   Deliver 5 projects, don't deliver/delay the other 2 projects. Of course he won't scam you because he know what's gonna happen after since he's dealing with the admin himself.
    • I've worked with Ave a lot lately on designs and other projects. He has always delivered as quickly as possible sometimes within a week, maybe two. Personally, I’m patient, so I’ve never had an issue with the wait. I’m not trying to defend him blindly, but I genuinely don’t believe he would mess someone over for €60 €100. Sometimes he's inactive, likely due to real life responsibilities, but I don't judge everyone has their own situations. I understand that some people are impatient and want their orders completed quickly, but considering the quality of his work, I have no problem waiting. Of course, people react differently to delays, and that’s fair. But in my experience, I can't call him a scammer he's always delivered what I ordered.
  • Topics

×
×
  • Create New...