Jump to content

MoNsT3ReN4RgY

Members
  • Posts

    60
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by MoNsT3ReN4RgY

  1. i didnt manage to make it work... is there anyone who could do it for me??
  2. hello maxcheaters..i need your help once more with .utx editor..i am trying to edit one .utx file (logo) for html , and i cant whatever i tried...is there anyone who could help me with this? thanks in advance.!
  3. Hello Zake. Is an event Which requires to be in a party and being a party leader in order to teleport.. and you have to pass 3 stages of mini boss fights before you kill the final boss.
  4. Hello all..i found this event from this site ( https://l2jhellas.com/index.php?topic=935.0 ) but i can't download it..if anyone have it please reply..i need the boss event with rooms and final boss
  5. Hello all members.! i am trying 4 days now to add this ( https://pastebin.com/p5xt8h7m (not my pastebin account)) buffer on my L2jAcis 401 but without succes..on Eclipse everything is ok without errors ..the Buffer appears normaly ingame with id 50008 (default id) the xmls working ..but when i press on buffs nothing happened.!
  6. Hello Maxcheaters...i have added this code (working for me) but doesn't show on player wich weapon is enchanted on shop..but when you buy it it gives you the weapon enchanted .. how can i make it show me on shop if it is enchanted. <item id="2"> <ingredient id="57" count="1000"/> <production id="9996" count="1" enchant="10"/> </item>
  7. ευχαριστώ πολύ για την συμβουλή σου ..θα την κρατήσω...θα μπορούσες ίσως να μου δείξεις μια μικρή αρχή για να πορευτώ ;;
  8. you can add this code i have send you and add the single buffs that all the players have.. might/shield ets.. and one other code to avoid Classes wich have all buffs to join this zone .
  9. γνωμη σου δηλαδη να το κανω οταν ο παιχτης βγαινει απο το παρτυ να πηγαινει μονο αυτος town ε? οσο για το να μπεις στο παρτυ ζονε πρεπει αν εχεις 5 ατομα παρτυ κι μονο ο Leader μπορει να κανει teleport .
  10. https://pastebin.com/CTjM0DS0 ωριστε το PartyZone.Java & L2Party.java κανω /leave με τον παιχτη αλλα μονο αυτος που κανει leave φευγει.. το υπολοιπο παρτυ μενει μεσα
  11. εκανα αυτο που μου ειπες αλλα δεν κανει /leave απο το παρτυ οταν ειναι εντως partyzone.. πρεπει να βγει εκτως για να κανει /leave κι μονο τοτε τον παει πισω.. νομιζω οτι πρεπει να αλλαξω το player.teleToLocation σε κατι getPartyMembers.teleToLocation αλλα οταν το δοκιμαζω μου το βγαζει ερρορ
  12. Καλημέρα εαν το παρτυ πεσει κατω απο 5 ατομα μεσα στο ζονε τοτε να παει back to town το παρτυ αλλιως οχι. Καταφερα να κανω τον εναν παικτη που βγαινει απο το παρτυ να παει πισω στο town αλλα το υπολοιπο παρτυ παραμενει μεσα ακομα κι αν ειναι 3-4 ατομα το εχω κανει ηδη αυτο στο onEnter method sto PartyZone.java επισης ο κωδικας που ανεφερα παραπανω ειναι ο κωδικας που καλει οταν σπαει το παρτυ.
  13. propably you messed up something last time you edit something..
  14. Παιδιά έχω κάνει αυτό το code για το PartyZone μου, αλλά δυστιχώς δεν μπορώ να το κάνω να κάνει teleport το υπόλοιπο party πίσω στο Town όταν θα είναι <5 μέσα στο Party Zone.. https://pastebin.com/yjXC9QXD
  15. maybe you want something like that.. and you will need also the zone code. https://pastebin.com/vpWg5t16
  16. even this one is not working.. public void removePartyMember(final L2PcInstance player) { removePartyMember(player, true); { if (player.isInsideZone(L2Character.ZONE_PARTYZONE) && (player.isInParty() && player.getPartyMembers() < 5 )) { player.sendMessage("You can't stay inside party zone without party!"); { getPartyMembers().forEach(s -> s.teleToLocation(MapRegionTable.TeleportWhereType.Town)); return; } } } }
  17. Hello Rootware...you mean something like that under the code i placed? /** * Remove Party From PartyZone * @param Party */ public void removeParty(final L2PcInstance Party) { removePartyMember(Party, true); { if (!Party.isInsideZone(L2Character.ZONE_PARTYZONE)) { if (Party.getPartyMembers() < 5) { Party.sendMessage("You can't stay inside party zone with less than 5 players party!"); { getPartyMembers.teleToLocation(MapRegionTable.TeleportWhereType.Town); return; } } } } }
  18. i manage to do it work for the player whos leaving the Party Inside party zone. but the rest party stays inside even if they are <5 ..here is the code i added on L2Party.java /** * Remove player from party * @param player */ public void removePartyMember(final L2PcInstance player) { removePartyMember(player, true); { if (!player.isInsideZone(L2Character.ZONE_PARTYZONE)) { if (player.getPartyMembers() < 5) { player.sendMessage("You can't stay inside party zone without party!"); { player.teleToLocation(MapRegionTable.TeleportWhereType.Town); return; } } } } }
  19. ok dude thanks for your time also i want to say that i am half russian
  20. Dude i am trying to make it work ..i dont know to code it so good as you do..for you might be 2-3 mins work but for me it's hour/hours
  21. i have added this code on L2Party.java..what i am trying to do is when a pparty is inside the zone and the members goes less than 5 teleport them back to town but it's not working. removePartyMember(player); if (!player.isInsideZone(L2Character.ZONE_PARTYZONE)) if (getMemberCount() <= 5) getPartyMembers().forEach(s -> s.teleToLocation(TeleportWhereType.Town));
  22. can you write on English please?? i copy paste the code inside my source and its not working properly.. could you tell me any possible issue?
×
×
  • Create New...