Jump to content

otto14

Member
  • Posts

    3
  • Joined

  • Last visited

Posts posted by otto14

  1. Thank you so much sandbird, this is very very helpful to me. Now I can see where to go.

    The script are working fine, the arma2net and arma2netmysql are responding too. 

     

    Just a little nano newbie question, the file publicEH.sqf are in my mod file (@Dayz_epoch), so I change it to my mpmission and change the directory call in init.sqf. Thats it right?

    And another time, Thank you very much for your help.

  2. You put @Arma2NET and Arma2NETMySQLPlugin folders in the server's root folder right?

    And also the Databases.txt ? (In the Arma2NETMySQLPlugin folder and also in your C:\Users\xxxx\AppData\Local\Arma2NETMySQL folder in the server)

    In the server go to : \arma 2 operation arrowhead\@Arma2NET and run the Arma2NetExplorer.exe

    Then paste this inside: Arma2NETMySQLCommand ['dayz_epoch',"SELECT InstanceID FROM character_data LIMIT 1"]

    If you see a result (like: [[["11"]]]) then everything is fine...your .sqf is wrongly written, we'll get to that after.

    If you see an error there then go here: C:\Users\xxxx\AppData\Local\Arma2NET and check the latest log....what error does it say at the bottom ?

    Report back :)

     

    ps: you start the server with the parameters like the one i have in my .bat file right? (adding that extra ;@Arma2NET)

     

    Sorry the delay to reply.

    My folders look okay, the mod is running fine, the log show me the result. but in game it aways return <null>.

    You have to use some code together the init or in the arma2net to unblock the hive or something like that? Because it's strange, in the mission editor it works fine, but in my server root it dont work, even the log returning the result.

     

    There is my version of arma2net: "2.3.0.0" and arma2netmysqlplugin: "1.0 Beta 3".

     

    Just this command of example, work fine in mission editor, it's wrong run it in the server? I have to add something?

    _result = "Arma2Net.Unmanaged" callExtension "Arma2NETMySQLCommand ['dayz_epoch', 'SELECT InstanceID FROM character_data LIMIT 1']";
    _result = call compile _result;
    
    _coco = nil;
    while {isNil("_coco")} do {
    hintSilent format["%1",_result];
    sleep 0.5;
    };
  3. Hi, sorry my english. I'm trying build a server with arma2net, the result is returned fine in Dazy epoch 3d Editor live mission, but on epoch server the result is aways <null>. You have any idea why this are happening? 

     

    Example of command:

    "Arma2Net.Unmanaged" callExtension "Activate";
    "Arma2Net.Unmanaged" callExtension "Activate Arma2NETMySQL";
    "Arma2Net.Unmanaged" callExtension "Activate Arma2NETMySQLCommand";
    
    
    _result = "Arma2Net.Unmanaged" callExtension "Arma2NETMySQLCommand ['dayz_epoch', 'SELECT InstanceID FROM character_data LIMIT 1']";
    _result = call compile _result;
    
    
    _coco = nil;
    while {isNil("_coco")} do {
    hintSilent format["%1",_result];
    sleep 0.5;
    };
×
×
  • Create New...