Jump to content

popld

Members
  • Posts

    177
  • Credits

  • Joined

  • Last visited

    Never
  • Feedback

    0%

Posts posted by popld

  1. First of all, aCis isn't private, you are just too dumb to understand what Tryskell thinks and what he feels with everything that has been going on the last year. Anyone can get the files, and i mean it, ANYONE.

     

    And if aCis is crap, as you say, i am Bill Gates.

    aCis (another "crappy" interlude server) if that word inside the "" says you something :P

    I want to make my own server mod, and I need a "clean" pack to begin with.

    l2jfrozen has a lot of sh!t inside and aCis needs to contribute something to get the svn,

    I haven't understood what to contribute yet...

  2. Let me make a statement, if you want you buy it, if you don't want, you don't buy it, it's simple enough.

    And all this kind of crap : "Oh there is something like this but free, am I moron to buy this?" is not an excuse to discredit my items. There is a great difference in quality which should be noticed. It's like having to choose one interlude compiled pack, one of Matim or one of mine, Matim sells it around 100 euros and I sell it 10. Will you say in his post, "lol dude popld2 has also compiled interlude pack and he sells it for 10 euro, who will buy your pack?". Now you see better the difference?

  3. Youtube Link:

    [GR]: Auth einai h douleia tou malaka tou Ave pou tou zhthsa na mou ftiaxei authn thn armor, me tis akriveis prodiagrafes. To set auto apoteleitai apo heavy,light,robe gia ola ta class+kamael kai epishs exei kai mperta kai helmet, to helmet einai accessory. Ton zhthsa na kanei private auto to set kai na mhn to postarei pou8ena pou to ekane, opws vlepete sto youtube kai to poulaei kai se allous. Egw to agorasa 120 Eurw logw tou oti egw eimoun o prwtos kai pou tou edwsa thn idea. Oi upoloipoi pou 8eloun na thn agorasoun mou eipe o Ave oti 8a tous thn dwsei gia 200+ Eurw. Egw omws sas thn prosferw sta 80 Eurw, pisteuw mia logikh timh apo tis paraloges tou Ave.

    Mhn anusixite den eimai klefths kai ta loipa, apla to paizw of8almon enantiwn of8almou gia thn malakia pou ekane. Dinw client-side arxeia, einai gia gracia epilogue, alla einai eukolo na ta metatrepsete se oti cronicle 8elete kai epishs sas parexw protection gia na mhn sas ta klepsoun, mesw itemname-e.dat, armorgrp.dat arxeia. Se periptwsh pou den gnwrizete pws na ta egatasthsete/balete, 8a sas voithisw me Teamviewer.

     

    [EN]: x-Private work by Ave and me, with price of 80 Euros, instead of 150-200++ he offers you. It's a full set for every class+kamael with also a cloak and helmet. I requested him to make his project private and delete it after its done and he is now selling it to others for very much money i mentioned before. So now do I. I give client-side files and I can help you via Teamviewer for the setup, if you are amateur. I will also protect your final itemname-e.dat, armorgrp.dat from stealing your files.

     

    Link with another preview that has cloak+helmet: www.2shared.com/video/xuu0Kq2i/elendil.html

    Contact Me At:

    kikos41@hotmail.com (MSN)

    theofilos1993 (Skype)

    Payments: Paypal, Moneybookers, Bank Deposit.

  4. exw auto to kommati code.

     

    package custom.Gatekeeper;
    
    import com.l2jserver.gameserver.custom.FTS;
    import com.l2jserver.gameserver.instancemanager.TownManager;
    import com.l2jserver.gameserver.model.actor.L2Npc;
    import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
    import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
    import com.l2jserver.gameserver.model.quest.Quest;
    import com.l2jserver.gameserver.model.quest.QuestState;
    
    public class Gatekeeper extends Quest
    {
    
    private static final int id = 444;
    
    @Override
    public final String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
    {
    	int i = 1;
    	if (event.equalsIgnoreCase("1"))
    	{
    		NpcHtmlMessage htm = new NpcHtmlMessage(npc.getObjectId());
    		String filler = "<html><title>Gatekeeper</title><body><br>Select a town to teleport:<br>";
    		while(i<21)
    		{
    			if(FTS.isAvailable(i))

     

    public static boolean isAvailable(int town)
    {
    	int id = 0;
    --------->for(L2Character t : TownManager.getTown(town).getCharactersInside().values())
    	{
    		if (t instanceof L2PcInstance)		
    		{
    			id++;
    		}
    	}
    	return id < 20;
    }

     

    einai apo quest script p ekana sto datapack.

    kai to allo apo to class FTS.

    me leei gia nullpointer exception ekei pou exw belos.

    Kai eida oti epistrefei thn timh null to TownManager.getTown(town) anti gia polh.

    Alla apo mesa apo to class otan xrhsimopoiw to isAvailable(integer) den exw problhma.

    Mporeite na mou peite ti la8os kanw?

  5. [tt]com.l2jserver.gameserver.model.actor.instance.L2PcInstance cleanup

    SEVERE: deleteMe()

    java.lang.NullPointerException

    at com.l2jserver.gameserver.custom.FTS.isAvailable(FTS.java:93)

    at com.l2jserver.gameserver.custom.FTS.unRegister(FTS.java:87)

    at com.l2jserver.gameserver.model.zone.type.L2TownZone.onExit(L2TownZone.java:95)

    at com.l2jserver.gameserver.model.zone.L2ZoneType.removeCharacter(L2ZoneType.java:378)

    at com.l2jserver.gameserver.model.L2WorldRegion.removeFromZones(L2WorldRegion.java:111)

    at com.l2jserver.gameserver.model.actor.position.CharPosition.setWorldRegion(CharPosition.java:50)

    at com.l2jserver.gameserver.model.L2Object.decayMe(L2Object.java:445)

    at com.l2jserver.gameserver.model.actor.instance.L2PcInstance.cleanup(L2PcInstance.java:11683)

    at com.l2jserver.gameserver.model.actor.instance.L2PcInstance.deleteMe(L2PcInstance.java:11487)

    at com.l2jserver.gameserver.network.L2GameClient$CleanupTask.run(L2GameClient.java:805)

    at com.l2jserver.gameserver.ThreadPoolManager$RunnableWrapper.run(ThreadPoolManager.java:86)

    at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)

    at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)

    at java.util.concurrent.FutureTask.run(Unknown Source)

    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(Unknown Source)

    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(Unknown Source)

    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)

    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)

    at java.lang.Thread.run(Unknown Source)[/tt]

     

    kai epishs oti den mporei na ektelesei to enterworld.java kai kati gia same OID (Object ID nomizw)

     

    Mporeite na m peite ti ekana la8os???

    Blepw iparxei ena prob me to ObjectId, pws alliws mporw na parw to id enos char, pou einai monadiko?

    Eida sthn db oti iparxei to CharId alla leei gia na parw thn timh auth mesa sto eclipse me leei oti einai @Deprecated.

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock