Recent content by Merg

  1. M

    [RELEASE] Chat Based Admin Tool-set

    Try removing everything else from OnInit except m_adminTool = new AdminTool(this); m_adminTool.Init(); The init method inside AdminTool already loads the admins from the Admins.txt file. Also, check the path variable (m_AdminListPath) inside AdminTool.c and make sure that it matches the path...
  2. M

    [RELEASE] Chat Based Admin Tool-set

    My bad, it's the OnInit method in your MissionServer implementation. So for example: class CustomMission : MissionServer { override void OnInit() { } }
  3. M

    [RELEASE] Chat Based Admin Tool-set

    Got this to work. I'll post the files soon. AdminTool.c Add this to the same directory where init.c is located, unless you want to change the path when importing AdminTool.c to init.c. Create a file called Admin.txt in the same directory as AdminTool.c and init.c. Add your IDs the same way as...
  4. M

    Server Owners Skype Group

    Skype: holmhug
  5. M

    Global variables

    So im trying to check a variable that is defined in the server.pbo and checked in the mission folder. server.pbo: myGlobalVar = true; Mission folder: If(myGlobalVar) then{}; But the rpt says that the variable is undefined. Does anyone know what im doing wrong?
  6. M

    How do I run 2 MySQL instances on 1 machine.

    Xampp is just a package that installa apache, mysql and a mysql browser. Xampp is really useful for example when creating a website.
  7. M

    Need to create a test server

    It wont corrupt the original server but you cant run 2 DBs on the same port. So you need to run the DB on another port too and then change the hiveext.ini settings. Just google like"how to change mysql server port". Hosting companies like dayz.st run up to 10 dayz servers per dedi box and...
  8. M

    Need to create a test server

    Well in that case you need to run them at different ports. You can change the port in the launch params. And i think you should be able to use the same db on both servers.
  9. M

    Need to create a test server

    So you want to run 2 servers, one thats main and one thats test?
  10. M

    Need to create a test server

    Not that much, but it gives you a database ready version of the a arma 2 oa server.
  11. M

    Need to create a test server

    Yup, you can even run a wasteland server on the same package i think.
  12. M

    Need to create a test server

    epoch works fine, just add the epoch launch params, replace server and mission files and import the epoch SQL to the database.
  13. M

    Need to create a test server

    Pwnoz0rs server pack is the way to go ;)
  14. M

    Automatic weapons jibe

    I think BEC can kick people that types russian chars. To remove the animation on weapon swithing can be impossible because i think its hard-coded in the engine.
  15. M

    Help with Database queries from a script

    Child:999 only works on reality i think. You can of course use the custom_loadout table and get the information from there, but again that would not work with pwnoz0rs server package. I have a working PHP script for paypal but paypals API is really hard to use.
Back
Top