Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by funkynicco

  1. funkynicco

    FlyFF Emulator in Java

    I think a better question to ask is what the purpose of the project really is. If it's educational then it doesn't matter what language it is made in as long as it matches the requirements set by the creator. Java or not, if the goal is to create an emulator in Java then that's a good goal. If...
  2. funkynicco

    Flyff Packet Analyzer

    Link updated in thread and here; You must be registered for see element. Enjoy.
  3. funkynicco

    ServerManager with RemoteManager

    Could also implement email notification using the You must be registered for see element. When a server crashes it sends the exception address to ServerManager. ServerManager catches that exception address in void Service_ClientCrash(ServerType type, uint address) That is in Main.cs on line 456...
  4. funkynicco

    ServerManager with RemoteManager

    In a zip file? I don't think so. Will have a look and reupload if they are corrupted. Besides, theres not a single binary in the zip, its simple text files and ico's. There are false positives in virus scanners. Edit: You must have a virus that infects it when you download it. I just tested on...
  5. funkynicco

    ServerManager with RemoteManager

    Hi, I've decided to release my ServerManager along with source that I made for the official servers during working with and hosting flyff. You must be registered for see element. Brief information of what it is and what it does In a nutshell, it controls and restarts servers in appropriate...
  6. funkynicco

    VS 2003 for Windows 7 OS

    Try the following code in a new project in vs2003 on windows 7/8: int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow ) { Sleep( 5000 ); MessageBox( NULL, "Test", "", 0 ); return 0; }On my last testings, after first run, the debugger...
  7. funkynicco

    [Video] The makings of a website

    This is not a tutorial. I video recorded when I was working on aurora's website as it actually gives motivation to look back too see progression. Aurora is not up anymore so this is not advertising. This website (version 2) never got in use, it was a complete recode of the first website for the...
  8. funkynicco

    [Java] Possible Emulator?

    Java is probably a good language to begin with, and no doubt it could be the base for a simple test flyff server. But you'll most likely run into fair bit amount of problems with flyff specially due to that java does not have 64 bit unsigned integers. There are quite a few values that the client...
  9. funkynicco

    Flyff Dev Chat(MSN Group)

    I might have joined that chat if I actually used msn :P It's skype all the way for me <3
  10. funkynicco

    Server Manager

    It's made in C#, using .NET 3.5. I will rewrite it in C++ if it becomes big enough, because I trust C# up to a limit but bigger systems are in my opinion more reliable in C++, due to the reason I can actually control when and how it allocates memory etc :wink:
  11. funkynicco

    CAr '>>' error

    The >> operator copies the memory from the ar to whatever is on the right side of the operator. You're trying to copy memory to nonvariables or constants. The correct way to use the >> operator is by copying memory to a variable: Although the << operator, can copy from just about anything...
  12. funkynicco

    Server Manager

    Glad you like it. I'm gona have it run on our server for a while to make sure that it's stable and reliable, and after that I might consider selling, and by that time it will probably have more features than it have now. I've also been a bit interested into remote administrating it from another...
  13. funkynicco

    Server Manager

    Well, originally I got so damn bored of keep having to turn on 7 programs each time, and it also annoys me a lot while they are taking up taskbar space, so I decided that I would make a program that hides all the other programs, and provides simple control over them in a GUI. But as the time...
  14. funkynicco

    [InDev]Flyff Lua NpcSystem

    We aren't using master or hero jobs at all, we jump from 2nd to 3rd jobs directly.
  15. funkynicco

    [InDev]Flyff Lua NpcSystem

    Well, since we aren't officially using the instant jobchange from NPC, and it's my lua script system for the npc dialogs. I might aswell release the instant jobchange script that I have been using for a while until just 3 days ago. It obviously not going to work but it's for inspiration for your...
Back
Top