Jump to content

Tessa

Members
  • Posts

    1,474
  • Credits

  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Everything posted by Tessa

  1. Wait till the devs wake up, I'm not pretending to be a dev at all... :lol:
  2. It's style actually, because the code is still clear and it doesn't cause any performance issues... I've never written "return smth == smthelse;" in my practice, so, I wouldn't start now. :lol:
  3. I've never used this style tbh... :lol:
  4. Relax he's kidding... :lol:
  5. Why wrong var? :lol: It should be properly initialized at EnterWorld... no?
  6. Still can't get it... what you mean? :lol:
  7. You mean if it's not initialized? :lol:
  8. No, this is the latest aCis free version :lol:
  9. public enum Faction { GOOD, EVIL; } public final class L2PcInstance extends L2Playable { // ... private Faction faction; // ... public Faction getFaction() { return this.faction; } public void setFaction(Faction faction) { this.faction = faction; } public boolean isGood() { return this.faction == Faction.GOOD; } public class EnterWorld extends L2GameClientPacket { // ... @Override protected void runImpl() { // ... if (activeChar.getRace() == Race.Human || activeChar.getRace() == Race.Elf || (activeChar.getRace() == Race.Dwarf && activeChar.getAppearance().getSex())) { activeChar.setFaction(Faction.GOOD); } else { activeChar.setFaction(Faction.EVIL); } :lol:
  10. Even AccessDenied wouldn't say such thing... ;D
  11. I suggest you to read some book about algorithms and data structures. You will see that there is no magic in HashMap, FastMap, etc, etc. :lol:
  12. Gosling would commit suicide if for some reason see this section... :lol:
  13. He's probably trying to say OOP, but his eyes bleed too much... :lol:
  14. Damn, I forgot about your fetishes :lol:
  15. You don't even need jQuery for such thing... :lol: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Simple HTML Box</title> <style> body { margin: 0; padding: 0; } </style> </head> <body> <div id="modal-dialog" style="position: absolute; width: 100%; height: 100%; background-color: #ccc;"> <div style="position: relative; margin: 100px auto 0; width: 500px; height: 500px; background-color: #fff;"> <button style="position: absolute; top: 10px; right: 10px;" onclick="document.getElementById('modal-dialog').style.display = 'none';">Close</button> </div> </div> </body> </html>
  16. Here it is... ;D
  17. Even AccessDenied can find the error.. ;D
  18. Compile time error... :lol:
  19. Indeed :/
  20. Don't forget to tell us what you've learned ^^
  21. Unfortunately AccessDenied still don't know what protected is :(
  22. Let me do it for you: System.exit(0); :lol:
  23. Don't ever try to open a server again, after this fail. :lol:
  24. Are you trolling again or what? :lol:
×
×
  • 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