Jump to content

Elfo

Legendary Member
  • Posts

    2,009
  • Credits

  • Joined

  • Last visited

  • Days Won

    51
  • Feedback

    0%

Posts posted by Elfo

  1. So let me get this straight? You opened a topic and paid for a sticky, without even have the slightest idea on what you want the server to be?

     

    Cuz the questions you are asking are:

    Low, mid or pvp

    Custom or no custom

    Quests or not

     

    So what did you actually did till now? Nothing?

     

    Also don't make the mistake to let people vote. First people that will vote in here won't even play the server. For example i can vote x35 just because i can mislead the poll.

    Write down your idea, make a good economy plan and make it happen. If you like it then there is a good chance other people will like it too.

  2. No my fear elfo, if you want see good codes pm me and we speak with images im not going to waste not even 1 minute of my life to sit and remake a code just to prove you.

    What you think i am bot?

    Go for it then, send some pictures. Cuz all your posts and insults and all your topics are stupid noob questions so something is wrong here.

  3. Clean topic for what? When you open a topic you open it up for criticism too.

    I am not swearing, I'm not being offensive, I just say my opinion. Deal with the fact that you stole the name of a server for publicity and people will criticize you for that.

     

    Also the NcSoft logo on your banner could potentially give you some copyright issues cuz you are basically claiming that this is an NcSoft approved server, which is not.

  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. Decompiling source just to take a feature is stupid, you'll loose much more time then to actually code it from the scratch.

    But giving people compiled server is not cool, those who do that cannot really feel secure without having the source so they can see all, i'd recommend you to make your features on top of existing open source project.

     

    An example can be plugins system simple SPI, a simple jar drop on libs folder would be enough, plugin will have access to the source with listeners u may do everything, also feels more clean, you can even obfuscate it, make some ip auth or whatever pointless restriction.

    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. 

  6. No matter how hard or fake classes ill use to lead you in wrong way still someone with experience can find it..

    and is not only the test lets say you sell some files you have to give the l2jserver.jar  so the other can easily decrypt it unfortunately.. but oh well

    seem a - java has compare to c and c++

    It's a little price to pay for the fact that it runs everywhere.

×
×
  • Create New...