Origins Server?

Guys I am stuck and it's gotta be something really simple.
I have the server, basically all set except:
I have no clue what to do with the \sqlfile folder or the dayz_origins.sql file within it.

When I say I have no clue, I mean, I may as well be looking at a foreign language.
Can someone tell me how to run MySql correctly so that the server has something to read and write from?

I previously have a plain-p0wn0z0r dayz server that ran all this, but his easy-peasy server startup .bat simply took care of it all.

Do I need to import that .sql file into something?
If so, how?
Then what?

Thanks!
 
Hello i been running my server and i have vehicles but how do i reaspawn broken ones could you please explain what each one does?
BugFix
fGetClassCount
fGetSpawnFromChance
fGetVehCount
pCleanup
pCleanupOOB
pFixMaxNum
pMain
pMoveDead
pSpawn
rndspawn
 
Thank you, Spider and moosemilker for the additional assistance.
Server is up and running now.

I appreciate the help.
 
What kind of traffic can you expect to see incoming to your server after putting this up?
Does your server broadcast to DayZ Commander or something? I am getting a lot of traffic coming in to port 2302 and just want to know what is normal, and what is alarming.
 
Hi,

Thanks for your help on the origins topic.

I followed your steps. All is working !

But I have a compatibility issue with DatabaseMySql.dll... In fact I have 2 other servers (namalsk and civilian) and they are crashing due to issue with the new DatabaseMySql.dll coming from your install (https://github.com/joenilan/DayzOrigins). And using the original dll is making origins crashing too...

So do you know how I can manage that (without changing all my installation... please :p) ???

Thanks in advance.

Best regards,
fouc.
 
Hello Guys,
what do i need to do when i want to run Drews Origins AI 1.2 ?
I do need the reality pack right ? Do i also need to download the origins server files ? or can someone explain what i need to know? (sry for being stupid)
-Encore
 
Here are our restarters, for the ural spawn you will need to add your own DB login details etc.

BEC restarter:

Code:
::Made by eRazeri
::Updated by trichome[iOGC] 24/04/2013
::Update by Broadsword/Raze[iOGC] 18/05/2013
@echo off
:start
C:\Windows\System32\tasklist /FI "IMAGENAME eq Bec.exe" 2>NUL | C:\Windows\System32\find /I /N "Bec.exe">NUL
if "%ERRORLEVEL%"=="0" goto loop
:: Start Bec
echo Bec monitoring is not running, will be started now
cd /D "e:\programs\Bec"
start "" /wait "E:\programs\Bec\Bec.exe" -f Config_Origins.cfg
echo Bec started succesfully
:: Cleanup and respawn vehicles in the Origins DB hive
cd /D E:\
mysql --user=*********--password=************ --execute="call pCleanup()" dayz_origins
echo Ural spawn script started succesfully
goto started
:loop
cls
echo Bec Origins is already running, running monitoring loop
:started
C:\Windows\System32\timeout /t 120
C:\Windows\System32\tasklist /FI "IMAGENAME eq Bec.exe" 2>NUL | C:\Windows\System32\find /I /N "Bec.exe">NUL
if "%ERRORLEVEL%"=="0" goto loop
goto start

Origins Restarter:

Code:
::Made by eRazeri
::Updated by trichome[iOGC] 24/04/2013
::Update by Broadsword/Raze[iOGC] 18/05/2013
@echo off
:start
C:\Windows\System32\tasklist /FI "IMAGENAME eq arma2oaserver.exe" 2>NUL | C:\Windows\System32\find /I /N "arma2oaserver.exe">NUL
if "%ERRORLEVEL%"=="0" goto loop
:: Start Arma2 Origins Server
echo Server monitored is not running, will be started now
cd /D "f:\programs\arma2"
start "" /wait "F:\programs\arma2\Expansion\beta\arma2oaserver.exe" -port=2302 "-config=dayz_1.origins.tavi\config.cfg" "-cfg=dayz_1.origins.tavi\basic.cfg" "-profiles=dayz_1.origins.tavi" -name=Origins "-mod=@DayzOrigins;@dayz_1.origins.tavi" -noPause -noSound -nosplash -cpuCount=3 -exThreads=1 -maxMem=2048 -noCB
echo Server started succesfully
goto started
:loop
cls
echo  Origins Server is already running, running monitoring loop
:started
C:\Windows\System32\timeout /t 30
C:\Windows\System32\tasklist /FI "IMAGENAME eq arma2oaserver.exe" 2>NUL | C:\Windows\System32\find /I /N "arma2oaserver.exe">NUL
if "%ERRORLEVEL%"=="0" goto loop
goto start

Can someone please tell me how you can make BEC run 2 .cmds at the same time ?

My scheduler.xml right now is like this:

Code:
<?xml version="1.0"?>
<Scheduler>
   
    <!--Load Bans-->
    <job id="1">
        <time>000100</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>1</loop>
        <cmd>loadbans</cmd>
        <cmdtype>0</cmdtype>
    </job>
 
    <job id="2">
    <time>003000</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>1</loop>
        <cmd>say -1 Server AutoRestart every 4 Hours</cmd>
        <cmdtype>0</cmdtype>
    </job>
 
    <job id="3">
        <time>035000</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>1</loop>
        <cmd>say -1 --Server will AUTO RESTART in 10 min--</cmd>
        <cmdtype>0</cmdtype>
    </job>
 
    <job id="4">
        <time>035500</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>1</loop>
        <cmd>say -1 --Server will AUTO RESTART in 5 min--</cmd>
        <cmdtype>0</cmdtype>
    </job>
   
    <job id="5">
        <time>035900</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>1</loop>
        <cmd>say -1 --AUTO RESTART in 1 min--</cmd>
        <cmdtype>0</cmdtype>
    </job>
   
    <job id="6">
        <time>040000</time>
        <delay>000000</delay>
        <day>1,2,3,4,5,6,7</day>
        <loop>1</loop>
        <cmd>C:\Users\admin\Desktop\restart1761.bat</cmd> 
        <cmdtype>1</cmdtype>
    </job>
   
</Scheduler>

How can i add a second batch for the 2nd cmd ?


Thanks
 
true that T_T facepalm on my part :)

About the admintools....i've added my UID (9 digit number) in the .sqf files but when i roll the mouse i dont get any options....is there a special button or something to bring them up....or am i doing something wrong ?
I had a previous admin tool on a chernarus map working with F1 and F2 to activate....
 
No idea which admin tools you mean. Do you mean the admintools from bluephoenix? You need to wait 90 seconds until the menu pops up or decrease the sleep timer in Activate.sqf. Decreasing it too much could cause the menu to appear twice tho.
 
yeah those tools....i was afk a long time trying to check wtf is going on...so probably i've been more than 90sec afk.
Not to mention that now i am getting kicked for restriction #251

Code:
waitUntil {!isNil "R3F_LOG_PUBVAR_point_attache"}"
21.07.2013 03:08:11: Sandbird (xx.xx.xx.xx:xxxx) xxxxxxxxxxxxxxxxxx - #251 ""Motorcycle", 3],
["2S6M_Tunguska", 10],
["M113_Base", 12],
["M1A1", 5],
["M2A2_Base", 15],
["MLRS", 8],
["T34", 5],
["T55_Base""
 
Back
Top