Search results

Mu online season 21 - grand opening
  1. mStation

    Other Starting A Server

    unfortunately i must agree.. you can't expect to have ideas and get help from others to get them made.. what you can however do is work your way around in doing it by yourself.. get the server started and while you encounter a problem ask on the forum for help (even though everything as...
  2. mStation

    How many old skool Cn'ers are still around?

    how many users joined in 2003? is there a way to have this stat and compare it to the total of registered users?
  3. mStation

    v2 of acem2 package

    this is the simpliest and best way tbh.. else don't do nothing and restart from fresh :D
  4. mStation

    Future of AceM2 Server...

    sam you just need to find out what you really want, since you are the last man in the team working on this.. so if you wish to keep on bug fixing then you can easily keep the dedi only since the costs are very small at the end of the day. else if you thing you can't because of your free time...
  5. mStation

    Future of AceM2 Server...

    very sorry to read this news.. as asked before a lot of times, what is the server costs? what are the server specs aswell? just asking since i have an empty vps server running all day in germany i wouldn't mind offering it since it is there for nothing but i am afraid it is not powerfull...
  6. mStation

    wzl editor

    Hello, i am looking for an application which can open wzl files.. just like in the past we had wil editors.. thank you
  7. mStation

    Any help?

    here download this and unzip in main folder overwriting all the files https://mega.co.nz/#!gsdQEBaT!D19gZ1BtxcykOSzVNpC_alIrBlYBRdGlluDxXkburb0
  8. mStation

    Any help?

    post screenshot of the folder mate..
  9. mStation

    How to pronounce Tao

    i am italian and i always read and said it taoh
  10. mStation

    Any help?

    it should download mir2.dat if you don't have it in the folder.. looks like a problem in the autopatcher something.. or missing connection to the internet ? boh
  11. mStation

    Tonights update...

    jamie's server files originate from his work.. as far as i know he has been coding it from scratch in c# most of mir sources are in delphi.. both are good languages tbh.. can't personally jugde which one is better..
  12. mStation

    Bug Reporters

    lol tbh i didn't understand if FUTURA posted just to say he didn't want to lol :D anyway, as i said.. i am busy with university and my wedding (on the 22nd of sept) but as soon i can i will help you with this.. i really wish we can get one set of server files to a good state so that we can...
  13. mStation

    Tonights update...

    jamie's server files are not forgotten.. i just didn't consider them because they are in a very early stage of development.. if you want they were already very complete because all the basic functions where in.. and one thing must be said, he sure is a damn quick programmer. tbh what can come...
  14. mStation

    Tonights update...

    +10000 we had plenty server files around and i don't even know them all but for me, i also feel, these are the only ones it's worth waiting to get them unbugged and stable.
  15. mStation

    Refining Bugged?

    don't know.. i never was a good refiner in all days.. i just know that i have refine once, three different weapons, and all three were successfull. i followed my recipt three times which is 8x p10+ bio + 2x ruby rings and refined hooked spear, magestaff and strongmagestaff (is that the name...
  16. mStation

    Whats the point ......

    as a matter of fact, people spend thier time in mines and boss hunting at the same time :D so many doubles ingame.. we got 120+ users online.. not sure how many of these are miners and at the same time players.. :/
  17. mStation

    Whats the point ......

    tbh i can't think of a way to test this effectively.. i believe the best solution remains to check the exact code and try to debug it to understand what it is suppose to do. surely, besides all what has been said, a 97% chance can't in NO WAY result in 40 fails of 100.. chance of having this...
  18. mStation

    Whats the point ......

    yep.. rand() always give the same number.. if you want it different you simply have to use srand based on something like a seed or time.. for example #include <stdio.h> #include <stdlib.h> #include <time.h> int main () { srand (time(NULL)); printf ("%d\n", rand() ); }
  19. mStation

    Whats the point ......

    tbh random numbers on computers have never really worked properly.. for example if you made a simple c++ program like this: #include <stdio.h> #include <stdlib.h> int main() { int i = rand(); printf("%d\n\n", i); system("pause"); } even if you start the .exe 200 times you will...
  20. mStation

    Whats the point ......

    lol let's make some math shall we :D what as been said above is unfortunately all correct.. linear probablity would say that 97% chance means get a clean 97 results over 100.. this would be linear which means will have the same effect even if 100 is 1 or 10000 the problem here is that random...