View Single Post
Old 09-06-2012, 11:08 PM   PM User | #1
Lengalicious
New Coder

 
Join Date: Sep 2012
Posts: 13
Thanks: 7
Thanked 0 Times in 0 Posts
Lengalicious is an unknown quantity at this point
Need help figuring out serverstring to execute .pl file.

I have a .bat file that allows me to initiate a server with a serverstring, within the server string is -w vehicles.pl, im guessing it runs that particular pearl script on startup, however i'm trying to convert the .bat command into a serverstring I can use in PHP so I can run the server from my website with the same serverstring, I can get most of it apart from the perl script. Heres the .bat contents

Code:
@echo off
taskkill /IM mysql.exe /F &
taskkill /IM mysqld.exe /F &
taskkill /IM arma2oaserver.exe /F &
@start server_setup\xampp\mysql\bin\mysqld.exe --defaults-file=server_setup\xampp\mysql\bin\my.ini
cls
echo "Please wait...Loading"
ping -n 10 127.0.0.1>nul
server_setup\perl\bin\perl -w vehicles.pl --cleanup --world chernarus 1 dayz root 123456
"Expansion\beta\arma2oaserver.exe" -port=2302 "-config=Saintly\config_lingor.cfg" "-cfg=Saintly\basic.cfg" "-profiles=Saintly" -name=Saintly "-mod=@DayZ_lingor;@dayz_lingor_island;@Saintly_Lingor;" -cpuCount=4 -maxMem=1578 -exThreads=7
cd server_setup\xampp & mysql_stop.bat
the bit where its running the vehicles.pl and --cleanup, I want those two things to be converted to a php compatible serverexestring with directory seperation ".DS."

On a side not i wasn't sure whether to post this in the perl or php forum, sorry.

Last edited by Lengalicious; 09-06-2012 at 11:37 PM..
Lengalicious is offline   Reply With Quote