Jump to content

Elfo

Legendary Member
  • Posts

    2,025
  • Joined

  • Last visited

  • Days Won

    60
  • Feedback

    0%

Everything posted by Elfo

  1. I did and i still make fun of the fact that you stole the name. That's the definition of using someone's name for popularity reasons.
  2. Why didn't you name is L2Elite or L2Pride? No domains available for other stolen names? :D
  3. The answer is in your question.
  4. This should do the trick: #include <string.h> // for strlen() // reverse the given null-terminated string in place void inplace_reverse(char * str) { if (str) { char * end = str + strlen(str) - 1; // swap the values in the two given variables // XXX: fails when a and b refer to same memory location # define XOR_SWAP(a,b) do\ {\ a ^= b;\ b ^= a;\ a ^= b;\ } while (0) // walk inwards from both ends of the string, // swapping until we get to the middle while (str < end) { XOR_SWAP(*str, *end); str++; end--; } # undef XOR_SWAP } }
  5. Vouch for drake. Probably the best event engine out there. Definitely the best coded one.
  6. It's sad that this game died, but oh well...
  7. I am adding vote reward credit and donate shop today. If any server wants to use it pm me. I will give 3 lifetime licenses for free to servers willing to use my ACP.
  8. It will be open source don't worry. I made a plugin system and it runs smoothly but i just don't see the point as i am not aiming to make money out of this.
  9. Here is a video to demostrate the donation and the voting system and the progress till now:
  10. It's a little price to pay for the fact that it runs everywhere.
  11. The only way to protect your software is to run it as a service (SaaS). However i highly doubt we will ever see that in l2j so, just make your code really hard to read. That won't help from an experienced guy taking your code, but the crappy leechers will straggle.
  12. Please a server owner with Topzone, pm me. I need finish the Topzone votereward and i need an API key to do that. Thanks. The person who helps me will get an L2ACP lifetime license for free upon release.
×
×
  • 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..