Jump to content

Recommended Posts

Posted
1 hour ago, djjapulis said:

and what's the point of this item?

That feel when you see yourself on top 10. Priceless! 

Posted
8 hours ago, 'Baggos' said:

mmm nice.. I really miss comments like this since 2010. You guys really help this guy to make it better with your comments. 

This section must be renamed to <Share and humiliate>.

 

Maybe the bullying you get/got from your real life, makes you to act like this on forums. (proven by psychology)

Anyway.. Maybe my words, just gave you reason to continue spam with quotes on this one. So, spend your time to quote this, may make you feel better, if you feel 
I attack your intelligence..

Goodnight!

 

Nobody humiliate nobody and nobody judge the person itself. People judge the product he posted. 

This is share section but it has some rules. You cannot simply post any fail code you write just because you wrote it. 

 

If all do the same this section will get full content by already shared codes but with even worst coding way. We need to stop be so "sensitive" because we feel

pitty over someone's code. You won't make him better developer by telling him "Great share! Keep it up" neither worst by telling him "Your code sucks, quit plz." 

Is completely up to him. Also you don't know anything about psychology. Please don't come up and argue with me on psychology cause i know the type of person you're and i know you would never open a psychologist's book to read. So allow me to say that best stuff came out of people who were either sad or emotional confused and no happy one. (Plus reading psychology quotes on google does not make you psychologist). 

 

Nobody spend time quoting and attacking. We see something that is objectively bad and we comment on it. The fact that we over-react is because uploader tend to upload lately pointless codes that make no sense even if we deny the coding part. There are people who did some nice coding there and received their proper feedback. 

 

I don't know why i bother talking to you since you gonna write again for the girls you f*ck everyday even tho you don't. Thats psychology. Welcome in Reverse Psychology which you apply on your self. Oh you don't know what R-Psychology? Google it.

Posted
3 minutes ago, Evie Frye said:

Also you don't know anything about psychology. Please don't come up and argue with me on psychology cause i know the type of person you're and i know you would never open a psychologist's book to read.Plus reading psychology quotes on google does not make you psychologist). 

Thats psychology. Welcome in Reverse Psychology which you apply on your self. Oh you don't know what R-Psychology?

Judging a person about what he read or what he is, without you know a shit about him, can easily show us your little brain.

Anyway, it's like to answer to a wall when I reply on posts like this.

 

For the rest part of your reply, nothing.. No words, I'm bored to explain something that your brain will never understand.. If you think answers like your reply above, is a way to clean this section, yes ok.. Keep it up!

 

Have a nice day Mr.Psychology.

Posted
9 minutes ago, 'Baggos' said:

Judging a person about what he read or what he is, without you know a shit about him, can easily show us your little brain.

Anyway, it's like to answer to a wall when I reply on posts like this.

 

For the rest part of your reply, nothing.. No words, I'm bored to explain something that your brain will never understand.. If you think answers like your reply above, is a way to clean this section, yes ok.. Keep it up!

 

Have a nice day Mr.Psychology.

 

Ironic for a person who write "Stop judge others." to judge others and telling me that i'm unable to understand. I'm glad homo erectus like you trying to communicate with me via ouga ouga language but in the end you're a poor little greek without knowledge behind a 100 euro monitor with a huge idea over himself. Baggos, the greek Nescafe all of sudden became psychologist who fuck girls everyday and he is legendary coder. Is there biggest joke than this? Your existence in this forum is even worst joke. I would really love to meet you in real life, just to confirm that you're a guy living with your parents, goin for coffee everyday in same cheap cafeteria and spending 90% of his day searching on facebook and google. 

Have a nice day Man who have 30 girls on your lap, have psychologist knowledge, did huge project, not sheep like us, huge brain. 

 

Posted
2 minutes ago, Evie Frye said:

 

Ironic for a person who write "Stop judge others." to judge others and telling me that i'm unable to understand. I'm glad homo erectus like you trying to communicate with me via ouga ouga language but in the end you're a poor little greek without knowledge behind a 100 euro monitor with a huge idea over himself. Baggos, the greek Nescafe all of sudden became psychologist who fuck girls everyday and he is legendary coder. Is there biggest joke than this? Your existence in this forum is even worst joke. I would really love to meet you in real life, just to confirm that you're a guy living with your parents, goin for coffee everyday in same cheap cafeteria and spending 90% of his day searching on facebook and google. 

Have a nice day Man who have 30 girls on your lap, have psychologist knowledge, did huge project, not sheep like us, huge brain. 

 

giphy.webp

Posted

great content plus these restrictions do not need as it rewards players when they have 1000 pvp, they will not win the item with these restrictions, dead, combat, CursedWeaponEquipped, Karma. This restriction has some sense "Olympiad Mode". that is enough.

 


package net.sf.l2j.gameserver.handler.itemhandlers;

import net.sf.l2j.gameserver.handler.IItemHandler;
import net.sf.l2j.gameserver.model.actor.Playable;
import net.sf.l2j.gameserver.model.actor.instance.Player;
import net.sf.l2j.gameserver.model.item.instance.ItemInstance;

public class Pvpitem implements IItemHandler
{
    @Override
    public void useItem(Playable playable, ItemInstance item, boolean forceUse)
    {
        if (!(playable instanceof Player))
            return;
        
        Player player = (Player) playable;
        
        if (player.getActiveTradeList() != null || player.getActiveEnchantItem() != null)
        {
            player.sendMessage("Cannot use while trading/enchanting");
            return;
        }
        
        final int pvps = player.getPvpKills() + 1000;
        player.setPvpKills(pvps);
        player.broadcastUserInfo();
        player.sendMessage("Your PVP count is now " + pvps);
        playable.destroyItem("Consume", item.getObjectId(), 1, null, false);
    }
}

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
Reply to this topic...

×   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

    • Hello, I'm working with custom Icons and noticed that you can use 64x64 icons and the client will handle them without problems in the Inventory and when you Drag them, they look HD so it's really cool, the problem starts when you move them to the shortcut bar, when they're placed there instead of rescaling the icon it just show the upper left corner (so it's 32x32 but showing only the part that fits in that space). I tried checking interface.u but can't find the line where the size for the icons in the shortcut bar are handled.   When in Inventory the item shows in a 32x32 size, if I use a 64x64 icon it re-scales so the icon looks great When dragging the item the image becomes 64x64 which looks pretty big, but it works good When placing the item in the shortcut bar only the top left of the icon is visible   Is there a way I can adjust the shortcut bar so that it re-scales the icon?
    • If you want to edit a large amount of entries in the L2 File-edit I recommend using excel, since both work with columns you can copy the entire file or just a few lines and paste it in excel and it will copy without problems, after you're done with editing you just select the cells and paste them in the .dat file making sure you're formatting correctly. I'm currently doing a massive edit on all gear and that's how i'm handling the .dat work
    • the logic is the "stacking" that is a filter if you use it then the item cannot co-exist (stack)
    • [Exclusive L2Gold Weekend Server] Available ONLY on Saturdays & Sundays – nowhere else, no other time ! Custom Armors (Dynasty, Apella) Custom Weapons (L2Gold Weapons) Custom Jewelry (L2Gold Jewelry) Custom Teleport System Custom AIO Buffer Custom Zones & NPCs Custom Raidboss … and much more waiting for you every weekend! This is not just another private server – it’s a limited-time battleground. When the weekend comes, everyone gathers in one place for the ultimate L2 experience. 👉 Online: Saturday–Sunday only 👉 Contact / Info: [https://www.facebook.com/profile.php?id=61578869175323]
    • ⏳ The price drops like sand slipping down in an hourglass.   📉 USA numbers are already at the lowest 💸 🌍 Next in line: Europe, Asia, and dozens of other countries.     All next week we’ll be actively working on lowering prices. The process has already started  soon costs will be much cheaper. 🔥 Get ready: the price drop will affect every country!   Website link — https://vibe-sms.net/ Our Telegram channel — https://t.me/vibe_sms
  • Topics

×
×
  • 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