Jump to content

rullezz

Members
  • Posts

    396
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by rullezz

  1. Hello again! :) i re-share my oooold topic bcuz links and images are dead :P (http://www.maxcheaters.com/topic/83160-share-special-click-first-time-in-l2-il-new) Here you can see what i make: http://prnt.sc/c1zb82 DOWNLOAD: http://www.4shared.com/postDownload/Z09m6MxP/NEW_Special_click_by_RuLLezZ.html I want to share with you my work maded 6 years ago :P It working with Interlude client! Here some SS(Red): http://www.4shared.com/photo/PcErYmAh/Shot00017.html http://www.4shared.com/photo/Oh3ndxPR/Shot00018.html _______________________________________________________________________________ Here some SS(Green&Blue): http://www.4shared.com/photo/OVYn9riA/Shot00019.html _______________________________________________________________________________ Here some SS(Black&Blue): http://www.4shared.com/photo/kGdIr_mV/Shot00024.html http://www.4shared.com/photo/WbvWPJa1/Shot00025.html _______________________________________________________________________________ Just put LineageEffectsTextures.utx in Systextures folder. Download Red click: http://www.4shared.com/file/BNVp0W5h/Red_click.html Download Green&Blue click: http://www.4shared.com/file/RCTmB8Nb/Blue__Green_click.html Download Black&Blue click: http://www.4shared.com/file/OxULZ1Tx/BlackBlue_click.html CreditS: Me.
  2. we speaking about this in another topic where guys start to spam ...anyway. any one know how to make this check? i want to put it in my tvt event.
  3. Euxaristo file...auto skeftomoun ...thelei hwid
  4. After i add this lines: http://prnt.sc/c0gk1o
  5. i try to add at my Event dualbox check, i put at "addParticipant " this: String ip = playerInstance.getClient().getConnection().getInetAddress().getHostAddress(); { if (playerInstance.getClient().getConnection().getInetAddress().getHostAddress().equalsIgnoreCase(ip)) { playerInstance.sendMessage("You have already joined the event with another character."); return false; } } and now i cant join at my event with one window, not even with dual box :P maybe some one know whats wrong with this code?
  6. i try different ways about check for "you can't join party at tvt" in l2PcInstance and at L2Party but nothing. maybe you can tell me the right place where to put ckeck? and the code i will wrote by my self. :)
  7. one my friend give it to me bcuz of my problems with money... :( Anyway...that what i use is all ready shared at our russian forums :P so...
  8. not blocking leave party...when teleporting to event everybody who have party - leave it. And ..yeap about "differen" at this forum...after you seen all this crappy -beep- servers with frozen packs and another -beep-, some one maybe thinking what i am another one lazy ass :P but i don't, i take aCis without any custom mode/shit/blablabla and try to adapt/make/fix/blablabla by my self and of cource with your help <3 i agree with you ;) after experements with code i will post what i did. Thnx you guys!
  9. as i told you some weeks ago...i learning and try to make something different...not again an boring farm or craft server. let me do some experiments with code about join and leave party and then i post my results. :D if you want you can give me the right way where to put check :P
  10. Thnx you i did it, it's work now. And what about "leave party" when teleporting to event and "can't join" party with non participated players? :D
  11. Hello, i using this TvT Event on aCis re 362. http://pastebin.com/GWcRXUXj When i press SHIFT button i can target another players which are not participated at event....and players which don't participated at event can target with SHIFT button players wich are participated at event. How i can fix it? :)
  12. i love you guys <3 it's work now!!!
  13. public boolean doDie(L2Character killer) { // killing is only possible one time synchronized (this) { if (isDead()) return false; // now reset currentHp to zero setCurrentHp(0); setIsDead(true); } // Set target to null and cancel Attack or Cast setTarget(null); // Stop movement stopMove(null); // Stop Regeneration task, and removes all current effects getStatus().stopHpMpRegeneration(); if (!getActingPlayer().isInFunEvent()) stopAllEffectsExceptThoseThatLastThroughDeath(); calculateRewards(killer); // Send the Server->Client packet StatusUpdate with current HP and MP to all other L2PcInstance to inform broadcastStatusUpdate(); // Notify L2Character AI if (hasAI()) getAI().notifyEvent(CtrlEvent.EVT_DEAD, null); final WorldRegion region = getRegion(); if (region != null) region.onDeath(this); return true; }
  14. hmm i try differnet things but still don't work :( here my tvt: http://pastebin.com/GWcRXUXj maybe you can find the right way...
  15. no, my tvt using this L2PcInstance: + public boolean isInFunEvent() + { + return (atEvent ||(TvTEvent.isStarted() && TvTEvent.isPlayerParticipant(getName())) && !isGM()); + }
  16. hmm it still don't working with this method if (!getActingPlayer().isInFunEvent()) stopAllEffectsExceptThoseThatLastThroughDeath();
  17. like this i think...bcuz stopAllEffects() as you wrote is in another method not at doDie :) public boolean doDie(L2Character killer) { // killing is only possible one time synchronized (this) { if (isDead()) return false; // now reset currentHp to zero setCurrentHp(0); setIsDead(true); } // Set target to null and cancel Attack or Cast setTarget(null); // Stop movement stopMove(null); // Stop Regeneration task, and removes all current effects getStatus().stopHpMpRegeneration(); if (!getActingPlayer().isInFunEvent()) stopAllEffectsExceptThoseThatLastThroughDeath();
  18. Hello i want to put in my tvt event noblesse effect, when player die to don't remove buffs. Maybe someone know this simple code? :) p.s. sry for my bad english
  19. now error at activChar <---- cannot be resolved to a variable
  20. /** * Is called when a player is killed * @param killerCharacter * @param killedPlayerInstance */ public static void onKill(L2Character killerCharacter, L2PcInstance killedPlayerInstance) { if (killerCharacter == null || killedPlayerInstance == null || (!(killerCharacter instanceof L2PcInstance) && !(killerCharacter instanceof L2PetInstance) && !(killerCharacter instanceof L2SummonInstance)) || !isStarted()) return; L2PcInstance killerPlayerInstance = null; if (killerCharacter instanceof L2PetInstance || killerCharacter instanceof L2SummonInstance) { killerPlayerInstance = ((L2Summon)killerCharacter).getOwner(); if (killerPlayerInstance == null) return; } else killerPlayerInstance = (L2PcInstance)killerCharacter; String playerName = killerPlayerInstance.getName(); byte killerTeamId = getParticipantTeamId(playerName); playerName = killedPlayerInstance.getName(); byte killedTeamId = getParticipantTeamId(playerName); if (killerTeamId != -1 && killedTeamId != -1 && killerTeamId != killedTeamId) _teams[killerTeamId].increasePoints(); killerPlayerInstance.addItem("TvT", 57, 100, this, false); if (killedTeamId != -1) new TvTEventTeleporter(killedPlayerInstance, _teams[killedTeamId].getCoordinates(), false, false); } Error (Cannot use this in static context)
  21. Gia sas. Exw perasei auto edw to TvT Event pano sto aCis rev. 362 http://www.l2jbrasil.com/index.php?/topic/116510-tvt-event-acis-358-100-completo/ Thelo na kano otan enas skotonei ton allon sto event na tou dinete kai ena reward px adena gia to kill.
  22. Hello i use this tvt Event on acis 362rev. http://www.l2jbrasil...8-100-completo/ How i can make when player kill another player to give him reward? (Only when event run)
×
×
  • Create New...