Jump to content

andrepain

Members
  • Posts

    28
  • Joined

  • Last visited

  • Feedback

    0%

About andrepain

Profile Information

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

andrepain's Achievements

Newbie

Newbie (1/16)

  • First Post Rare
  • Collaborator Rare
  • Conversation Starter Rare
  • Week One Done Rare
  • One Month Later Rare

Recent Badges

0

Reputation

  1. I found that is something with this, they change this effect.. doest anyone know any idea how to change this? or access to this so i can change for example? thanks
  2. Hello, well obviously i dont have access to the server side, and neither have those guys in the picture, i thought it was something client side since they manage to have that... Here is another example, Its essence server btw
  3. Hello, i dont know if this is the right place or not to ask something like this, but can someone point me in the right direction? how could i get something like this? For every player in the party there is some kind of effect or hightlight. Does anyone know from where to start? or even if is someone selling something like this thanks in advance
  4. Yes i want a pack just for fun and for me just to do some work
  5. I really want something Gracia Final, will keep a look. Anyway thanks everyone that tryied to help
  6. Wich acis you advise? if you have any ofc also is there any gracia final that you advice ?
  7. Like i said, i dont want to open any server xd i just for me to work there wont make it public etc
  8. Thanks for answering, My intention is not learning from 0 since i already have some bases. My aim for Pride packs is because i've always play in l2Pride and i want to get that challange to code for something like that.. and since there are so much l2 pride packs out there i wounder why all of them fail and thats the main reason i want to try it out I know its really hard to understand ahah but for the moment are the only type of pack that is giving me willing to practise on.
  9. L2 Pride Style files in order to open.. i know there is the shared version but i couldnt make it to work if anyone know and want to explain to me i would appreciate... By the way i am not opening one server like pride or any other this is just to work and practising java and since i've always love pride servers i want to give a go on that one PM me if someone have those files. Thanks in advance
  10. Does anyone know if l2 Adrenaline work on l2 Epic? lineage2epic.com
  11. Thank you so much, it worked now... Can be closed :DDD
  12. Well i keep with errors.. Anyway i cant find nothing with L2TvtEventNpc, all the results i get are with "T" where did u see the "t" ? even if i change everything to L2TvtEventNpc,L2TvTEventNpc,L2TvtEventNpcInstance i got the same error... my swap my xml to the file 50000 and keeps the same XML LOOK <npc id="70011" idTemplate="31280" name="Sir Bastian" title="Event Manager"> <set name="level" val="70"/> <set name="radius" val="8"/> <set name="height" val="23"/> <set name="rHand" val="0"/> <set name="lHand" val="0"/> <set name="type" val="L2TvTEventNpc"/> <set name="exp" val="0"/> <set name="sp" val="0"/> <set name="hp" val="2444.46819"/> <set name="mp" val="1345.8"/> <set name="hpRegen" val="7.5"/> <set name="mpRegen" val="2.7"/> <set name="pAtk" val="688.86373"/> <set name="pDef" val="295.91597"/> <set name="mAtk" val="470.40463"/> <set name="mDef" val="216.53847"/> <set name="crit" val="4"/> <set name="atkSpd" val="253"/> <set name="str" val="40"/> <set name="int" val="21"/> <set name="dex" val="30"/> <set name="wit" val="20"/> <set name="con" val="43"/> <set name="men" val="20"/> <set name="corpseTime" val="7"/> <set name="walkSpd" val="50"/> <set name="runSpd" val="120"/> <set name="dropHerbGroup" val="0"/> <set name="attackRange" val="40"/> <ai type="DEFAULT" ssCount="0" ssRate="0" spsCount="0" spsRate="0" aggro="0" canMove="true" seedable="false"/> <skills> <skill id="4045" level="1"/> <skill id="4416" level="14"/> </skills> </npc> ERROR LOOK TvTEventEngine[L2Spawn]: exception: net.sf.l2j.gameserver.model.actor.instance.L2TvTEventNpc TvTEventEngine[TvTEvent.startParticipation()]: exception: null TvTEventEngine[TvTManager.run()]: Error spawning event npc for participation. I'am lost again :s
  13. Thank you im so blind..... now i got this error TvTEventEngine[TvTEvent.startParticipation()]: exception: java.lang.NullPointerException TvTEventEngine[TvTManager.run()]: Error spawning event npc for participation. Do you have any idea? im going to search to see if i cant found where is the problem btw im using your mod of TvT on acis 370+
  14. Well the problem is the NPC, i cant spawn it in-game too nothing works on Type..
  15. Any idea no? its probably a noob question.... but i cant find the fix for it the code that is getting the error public static boolean startParticipation() { final int npcc = Config.TVT_EVENT_PARTICIPATION_TIME * 1000 * 60; try { final NpcTemplate template = NpcData.getInstance().getTemplate(Config.TVT_EVENT_PARTICIPATION_NPC_ID); System.out.println("Template: " + template); final L2Spawn spawn = new L2Spawn(template); spawn.setLoc(Config.TVT_EVENT_PARTICIPATION_NPC_COORDINATES[0], Config.TVT_EVENT_PARTICIPATION_NPC_COORDINATES[1], Config.TVT_EVENT_PARTICIPATION_NPC_COORDINATES[2], 0); System.out.println("Spawn: " + spawn); SpawnTable.getInstance().addNewSpawn(spawn, false); final Npc npc = spawn.doSpawn(true); System.out.println("npc: " + npc); npc.scheduleDespawn(npcc); npc.broadcastPacket(new MagicSkillUse(npc, npc, 1034, 1, 1, 1)); } catch (Exception e) { System.out.println("TvTEventEngine[TvTEvent.startParticipation()]: exception: " + e.getMessage()); return false; } setState(EventState.PARTICIPATING); return true; }
×
×
  • 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..